com.ibm.wsspi.wsrm

Interface WSRMSequenceProperties


  1. public interface WSRMSequenceProperties
The WSRMSequenceProperties instance contains the properties that will be applied to a new web services reliable messaging sequence between the requester and provider. By default a response sequence will not be established unless a offered sequence id (@see setUseOfferedSequenceId) is provided.

Field Summary

Modifier and Type Field and Description
  1. static
  2. int
SOAP_11
  1. static
  2. int
SOAP_12

Method Summary

Modifier and Type Method and Description
  1. void
setSoapVersion(int soapVersion)
Set the Soap version for RM protocol messages.
  1. void
setTargetEndpointUri(java.lang.String providerEndPoint)
Sets the target provider endpoint.
  1. void
setUseOfferedSequenceId()
This is used to indicate that a response flow is required between the provider and requester and the response flow will be established at create sequence time By calling this method it will indicate that a response flow is required.
  1. void
useAsyncTransport()
If the Acknowledgement messages are to be sent back asynchronously call this method.

Field Detail

SOAP_11

  1. static final int SOAP_11
See Also:

SOAP_12

  1. static final int SOAP_12
See Also:

Method Detail

setTargetEndpointUri

  1. void setTargetEndpointUri(java.lang.String providerEndPoint)
Sets the target provider endpoint. A null value will cause a NullPointerException when the WSRMSequenceProperties object is used.
Parameters:
providerEndPoint - The target service endpoint URI

setUseOfferedSequenceId

  1. void setUseOfferedSequenceId()
This is used to indicate that a response flow is required between the provider and requester and the response flow will be established at create sequence time By calling this method it will indicate that a response flow is required.

setSoapVersion

  1. void setSoapVersion(int soapVersion)
Set the Soap version for RM protocol messages. The default value for this property is WSRMSequenceProperties.SOAP_11
Parameters:
soapVersion -

useAsyncTransport

  1. void useAsyncTransport()
If the Acknowledgement messages are to be sent back asynchronously call this method.