Interface TransportCustomBindingProvider
The object can facilitate in generation of following information:
- transport attribute value (Transport URI) for <soap:binding> element of SOAP binding for all transports.
- location attribute value for <soap:address/> element of SOAP binding for all transports.
- All elements of <bea:binding/>.
- transport URI, i.e. transport attribute value in <bea:binding/> element.
- port address in <bea:address/> element
This is an option interface to implement. Non WSDL transports need not implement it. Also WSDL transports may skip implementing it. In that case OSB will generate defaults for every element described above. Refer to OSB documentation for specifics on the defaults.
Just have your TransportProvider
implementation class implement
this interface as well. No separate registration needed.
- Since:
- 3.0
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiongetEndPointAddress
(com.bea.wli.sb.transports.EndPointConfiguration endpoint, BindingTypeInfo.BindingTypeEnum bindingType, Ref serviceRef) Gets the end point address for the port configured for the given endpoint and binding type.getIdentifierURI
(com.bea.wli.sb.transports.EndPointConfiguration endpoint, BindingTypeInfo.BindingTypeEnum bindingType, Ref serviceRef) Gets the unique transport URI for this transport.
-
Method Details
-
getIdentifierURI
String getIdentifierURI(com.bea.wli.sb.transports.EndPointConfiguration endpoint, BindingTypeInfo.BindingTypeEnum bindingType, Ref serviceRef) Gets the unique transport URI for this transport. This method is called when generating effective wsdl per service using this transport.The namespace could differ depending on the data format binding, e.g. SOAP or XML.
If the method does return null or the transport provider does not implement this interface then the system will use default using the following logic.
- If transport provider does implement this interface
- If the method returns not null, use that
- Else (compute the default value)
- If the transport configuration has <default-uri> value set, use that as default.
- Else if XML over HTTP binding, default is null.
- Else if SOAP 1.1 or 1.2 over HTTP binding, default is "http://schemas.xmlsoap.org/soap/http".
- Else if SOAP 1.1 over JMS, default is "http://www.openuri.org/2002/04/soap/jms/".
- Else if SOAP 1.2 over JMS, default is "http://www.openuri.org/2002/04/soap12/jms/".
- Else default is "http://www.bea.com/transport/2007/05/" + <transport id>
- Else
- If the transport configuration has <default-uri> value set, use that as default.
- Else default is "http://www.bea.com/transport/2007/05/" + <transport id>
- Parameters:
endpoint
- the endpoint configuration for which the transport URI is required.bindingType
- metadata about the desired binding @return the unique transport URI. If null default value will be inserted.serviceRef
- service reference may be null. The system will pass in this value whenever avaialable. Sometimes (e.g. during offline design time) the service resource may not have been saved yet so this could be null. Be careful when using it.
- If transport provider does implement this interface
-
getEndPointAddress
List<String> getEndPointAddress(com.bea.wli.sb.transports.EndPointConfiguration endpoint, BindingTypeInfo.BindingTypeEnum bindingType, Ref serviceRef) Gets the end point address for the port configured for the given endpoint and binding type. This method is responsible to evaluate any expressions in the end point address of the service configured and return the final absolute end point address. This method is called when generating effecrive wsdl per service using this transport.For proxy service ONLY the first address of the list is used. OSB will generate one port address element under the service element using the first address of the list for the proxy service.
For business service the method can return more than one end point address. OSB will generate one port address element under service element per address returned by this method for business service.
If the method does return null or the transport provider does not implement this interface then the system will use defaults.
For proxy service the system just uses the first end point uri on the end point configuration. For business service the system uses all the end point uris on the end point configuration.- Parameters:
endpoint
- the endpoint configuration for which the URI is to be generated.bindingType
- metadata about the desired bindingserviceRef
- service reference may be null. The system will pass in this value whenever avaialable. Sometimes (e.g. during offline design time) the service resource may not have been saved yet so this could be null. Be careful when using it.- Returns:
- List of string contain the end point address. For proxy service only the first element is used and for business service list can be of size >= 1. If return is null or empty defaults will be applied.
-