| |
|
| javax.xml.ws.BindingProvider
BindingProvider | public interface BindingProvider (Code) | | The BindingProvider interface provides access to the
protocol binding and associated context objects for request and
response message processing.
since: JAX-WS 2.0 See Also: javax.xml.ws.Binding |
ENDPOINT_ADDRESS_PROPERTY | final public static String ENDPOINT_ADDRESS_PROPERTY(Code) | | Standard property: Target service endpoint address. The
URI scheme for the endpoint address specification MUST
correspond to the protocol/transport binding for the
binding in use.
Type: java.lang.String
|
PASSWORD_PROPERTY | final public static String PASSWORD_PROPERTY(Code) | | Standard property: Password for authentication.
Type: java.lang.String
|
SESSION_MAINTAIN_PROPERTY | final public static String SESSION_MAINTAIN_PROPERTY(Code) | | Standard property: This boolean property is used by a service
client to indicate whether or not it wants to participate in
a session with a service endpoint. If this property is set to
true , the service client indicates that it wants the session
to be maintained. If set to false , the session is not maintained.
The default value for this property is false .
Type: java.lang.Boolean
|
SOAPACTION_URI_PROPERTY | final public static String SOAPACTION_URI_PROPERTY(Code) | | Standard property for SOAPAction. Indicates the SOAPAction
URI if the javax.xml.ws.soap.http.soapaction.use
property is set to true . If WS-Addressing
is enabled, this value will also be used for the value of the
WS-Addressing Action header. If this property is not set,
the default SOAPAction and WS-Addressing Action will be sent.
Type: java.lang.String
|
SOAPACTION_USE_PROPERTY | final public static String SOAPACTION_USE_PROPERTY(Code) | | Standard property for SOAPAction. This boolean property
indicates whether or not the value of the
javax.xml.ws.soap.http.soapaction.uri property
is used for the value of the SOAPAction. The
default value of this property is false indicating
that the
javax.xml.ws.soap.http.soapaction.uri property
is not used for the value of the SOAPAction, however,
if WS-Addressing is enabled, the default value is
true .
Type: java.lang.Boolean
|
USERNAME_PROPERTY | final public static String USERNAME_PROPERTY(Code) | | Standard property: User name for authentication.
Type: java.lang.String
|
getBinding | Binding getBinding()(Code) | | Get the Binding for this binding provider.
The Binding for this binding provider. |
getEndpointReference | public EndpointReference getEndpointReference()(Code) | | Returns the EndpointReference associated with
this BindingProvider instance.
If the Binding for this bindingProvider is
either SOAP1.1/HTTP or SOAP1.2/HTTP, then a
W3CEndpointReference MUST be returned.
EndpointReference of the target endpoint associated with thisBindingProvider instance. throws: java.lang.UnsupportedOperationException - If this BindingProvider uses the XML/HTTP binding. See Also: W3CEndpointReference since: JAX-WS 2.1 |
getEndpointReference | public T getEndpointReference(Class<T> clazz)(Code) | | Returns the EndpointReference associated with
this BindingProvider instance. The instance
returned will be of type clazz .
Parameters: clazz - Specifies the type of EndpointReference that MUST be returned. EndpointReference of the target endpoint associated with thisBindingProvider instance. MUST be of typeclazz . throws: WebServiceException - If the Class clazz is not supported by this implementation. throws: java.lang.UnsupportedOperationException - If this BindingProvider uses the XML/HTTP binding. since: JAX-WS 2.1 |
getRequestContext | Map<String, Object> getRequestContext()(Code) | | Get the context that is used to initialize the message context
for request messages.
Modifications to the request context do not affect the message context of
either synchronous or asynchronous operations that have already been
started.
The context that is used in processing request messages. |
getResponseContext | Map<String, Object> getResponseContext()(Code) | | Get the context that resulted from processing a response message.
The returned context is for the most recently completed synchronous
operation. Subsequent synchronous operation invocations overwrite the
response context. Asynchronous operations return their response context
via the Response interface.
The context that resulted from processing the latestresponse messages. |
|
|
|