| java.lang.Object org.apache.axis2.client.Options
Options | public class Options implements Externalizable(Code) | | Holder for operation client options. This is used by the other classes in
this package to configure various aspects of how a client communicates with a
service. It exposes a number of predefined properties as part of the API
(with specific getXXX and setXXX methods), and also allows for arbitrary
named properties to be passed using a properties map with the property name
as the key value. Instances of this class can be chained together for
property inheritance, so that if a property is not set in one instance it
will check its parent for a setting.
|
Constructor Summary | |
public | Options() | public | Options(Options parent) In normal mode operation, this options will try to fulfil the request
from its values. |
DEFAULT_TIMEOUT_MILLISECONDS | final public static int DEFAULT_TIMEOUT_MILLISECONDS(Code) | | Default blocking timeout value.
|
Options | public Options()(Code) | | Default constructor
|
Options | public Options(Options parent)(Code) | | In normal mode operation, this options will try to fulfil the request
from its values. If that is not possible, this options will request those
information from its parent.
Parameters: parent - |
activate | public void activate(ConfigurationContext cc)(Code) | | This method checks to see if additional work needs to be
done in order to complete the object reconstitution.
Some parts of the object restored from the readExternal()
cannot be completed until we have a configurationContext
from the active engine. The configurationContext is used
to help this object to plug back into the engine's
configuration and deployment objects.
Parameters: cc - The configuration context object representing the active configuration |
addReferenceParameter | public void addReferenceParameter(OMElement referenceParameter)(Code) | | Add WS-Addressing ReferenceParameter child element. Multiple child
may be used.
TODO Add get method, implement handling.
Parameters: referenceParameter - |
addRelatesTo | public void addRelatesTo(RelatesTo relatesTo)(Code) | | Add WS-Addressing RelatesTo item.
Parameters: relatesTo - |
getAction | public String getAction()(Code) | | Get WS-Addressing Action / SOAP Action string.
action |
getLogCorrelationIDString | public String getLogCorrelationIDString()(Code) | | Get the ID associated with this object instance.
A string that can be output to a log file as an identifierfor this object instance. It is suitable for matching related logentries. |
getMessageId | public String getMessageId()(Code) | | Get WS-Addressing MessageId.
uri string |
getParent | public Options getParent()(Code) | | Get parent instance providing default property values.
parent (null if none) |
getProperties | public Map getProperties()(Code) | | Get a copy of the general option properties. Because of the way options
are stored this does not include properties with specific get/set
methods, only the general properties identified by a text string. The
returned map merges properties inherited from parent options, if any, to
give a complete set of property definitions as seen by users of this
options instance. The returned copy is not "live", so changes you make to
the copy are not reflected in the actual option settings. However, you
can make the modified values take effect with a call to
Options.setProperties(Map) ,
copy of general properties |
getProperty | public Object getProperty(String key)(Code) | | Get named property value.
Parameters: key - the value related to this key. null , if not found. |
getRelatesTo | public RelatesTo getRelatesTo(String type)(Code) | | Get WS-Addressing RelatesTo item with a specified type. If there are
multiple RelatesTo items defined with the same type, the one returned
by this method is arbitrary - if you need to handle this case, you can
instead use the
Options.getRelationships() to retrieve all the items
and check for multiple matches.
Parameters: type - relationship type (URI) item of specified type |
getRelatesTo | public RelatesTo getRelatesTo()(Code) | | Return a single instance of WS-Addressing RelatesTo that has a relationship
type of either "http://www.w3.org/2005/08/addressing/reply" or "wsa:Reply".
If no such instance of RelatesTo can be found then return null .
an instance of RelatesTo |
getRelationships | public RelatesTo[] getRelationships()(Code) | | Get all WS-Addressing RelatesTo items.
array of items |
getSoapVersionURI | public String getSoapVersionURI()(Code) | | Get SOAP version being used.
version |
getTimeOutInMilliSeconds | public long getTimeOutInMilliSeconds()(Code) | | Gets the wait time after which a client times out in a blocking scenario.
The default is Options#DEFAULT_TIMEOUT_MILLISECONDS
timeOutInMilliSeconds |
getTransportInProtocol | public String getTransportInProtocol()(Code) | | Get transport protocol used for incoming message.
name protocol name ("http", "tcp", etc.) |
isCallTransportCleanup | public boolean isCallTransportCleanup()(Code) | | |
isEquivalent | public boolean isEquivalent(Options obj)(Code) | | Compares key parts of the state from the current instance of
this class with the specified instance to see if they are
equivalent.
This differs from the java.lang.Object.equals() method in
that the equals() method generally looks at both the
object identity (location in memory) and the object state
(data).
Parameters: obj - The object to compare with TRUE if this object is equivalent with the specified objectthat is, key fields matchFALSE, otherwise |
isExceptionToBeThrownOnSOAPFault | public boolean isExceptionToBeThrownOnSOAPFault()(Code) | | If there is a SOAP Fault in the body of the incoming SOAP Message, system
can be configured to throw an exception with the details extracted from
the information from the fault message. This boolean variable will enable
that facility. If this is false, the response message will just be
returned to the application, irrespective of whether it has a Fault or
not.
true if exception to be thrown |
isManageSession | public boolean isManageSession()(Code) | | Check if session management is enabled.
true if enabled |
isUseSeparateListener | public boolean isUseSeparateListener()(Code) | | Check whether the two SOAP Messages are be sent over same channel or over
separate channels. Only duplex transports such as http and tcp support a
false value.
separate channel flag |
readExternal | public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException(Code) | | Restore the contents of the MessageContext that was
previously saved.
NOTE: The field data must read back in the same order and type
as it was written. Some data will need to be validated when
resurrected.
Parameters: in - The stream to read the object contents from throws: IOException - throws: ClassNotFoundException - |
setAction | public void setAction(String action)(Code) | | Set WS-Addressing Action / SOAP Action string.
Parameters: action - |
setCallTransportCleanup | public void setCallTransportCleanup(boolean callTransportCleanup)(Code) | | |
setExceptionToBeThrownOnSOAPFault | public void setExceptionToBeThrownOnSOAPFault(boolean exceptionToBeThrownOnSOAPFault)(Code) | | If there is a SOAP Fault in the body of the incoming SOAP Message, system
can be configured to throw an exception with the details extracted from
the information from the fault message. This boolean variable will enable
that facility. If this is false, the response message will just be
returned to the application, irrespective of whether it has a Fault or
not.
Parameters: exceptionToBeThrownOnSOAPFault - |
setFaultTo | public void setFaultTo(EndpointReference faultTo)(Code) | | Set WS-Addressing FaultTo endpoint reference.
Parameters: faultTo - endpoint |
setFrom | public void setFrom(EndpointReference from)(Code) | | Set WS-Addressing From endpoint reference.
Parameters: from - endpoint |
setListener | public void setListener(TransportListener listener)(Code) | | Set listener used for incoming message.
Parameters: listener - |
setManageSession | public void setManageSession(boolean manageSession)(Code) | | Set session management enabled state. When session management is enabled,
the engine will automatically send session data (such as the service
group id, or HTTP cookies) as part of requests.
Parameters: manageSession - true if enabling sessions |
setMessageId | public void setMessageId(String messageId)(Code) | | Set WS-Addressing MessageId.
Parameters: messageId - URI string |
setParent | public void setParent(Options parent)(Code) | | Set parent instance providing default property values.
Parameters: parent - (null if none) |
setProperties | public void setProperties(Map properties)(Code) | | Set the general property definitions. Due to the way properties are
stored, this will not effect the values of predefined properties with
specific get/set methods.
Parameters: properties - |
setProperty | public void setProperty(String propertyKey, Object property)(Code) | | General properties you need to pass in to the message context must be set
via this method. This method can only be used for properties which do not
have specific get/set methods.
Here are some of the properties supported in Axis2.
Generic Constants
- org.apache.axis2.Constants.Configuration.TRANSPORT_URL
Sometimes you want to send your SOAP message through a node, before it reaches to its destination. This means you want to give transport URL different from the URL of the ultimate destination. A typical example would be wanting to send this SOAP (or REST)message through a transparent proxy or through a message monitoring applet. How can that be done using the ServiceClient API?
options.setTo("http://destination.org");
options.setProperty(MessageContextConstants.TRANSPORT_URL, "http://myProxy.org");
This will send your SOAP message to "http://myProxy.org", but if WS-Addressing is enabled, wsa:To will contain "http://destination.org" as To address.
- org.apache.axis2.Constants.Configuration.CHARACTER_SET_ENCODING
This will enable user to set the character set encoding scheme to be used when sending the message. Default is set to "UTF-8"
- org.apache.axis2.Constants.Configuration.ENABLE_MTOM
This will enable/disable MTOM support for outgoing messages.
Possible values are:
"true"/"false" or Boolean.TRUE/Boolean.FALSE
WS-Addressing Module Specific Constants
- org.apache.axis2.addressing.AddressingConstants.WS_ADDRESSING_VERSION
This will enable to select one of the two WS-Addressing versions available, if WS-Addressing is engaged.
Possible values are:
org.apache.axis2.addressing.AddressingConstants.Final.WSA_NAMESPACE
and
org.apache.axis2.addressing.AddressingConstants.Submission.WSA_NAMESPACE
- org.apache.axis2.addressing.AddressingConstants.REPLACE_ADDRESSING_HEADERS
AddressingOutHandler picks up the addressing information from the message context and set them to the outgoing message. But someone may have already put some addressing headers, before the AddressingOutHandler. This flag will notify the handler whether to override them or not.
Possible values are:
"true"/"false" or Boolean.TRUE/Boolean.FALSE
- org.apache.axis2.addressing.AddressingConstants.
DISABLE_ADDRESSING_FOR_OUT_MESSAGES
If WS-Addressing is engaged globally or some how in effect for this particular invocation, this will disable Axis2 from putting WS-Addressing headers in to the out going SOAP message. (Note that Axis2 will not put addressing headers to the outgoing message, irrespective of the above flag, if the incoming message did not contain addressing headers).
Possible values are:
"true"/"false" or Boolean.TRUE/Boolean.FALSE
HTTP Constants
- org.apache.axis2.transport.http.HTTPConstants.CHUNKED
This will enable/disable chunking support.
Possible values are:
"true"/"false" or Boolean.TRUE/Boolean.FALSE
- org.apache.axis2.transport.http.HTTPConstants.NTLM_AUTHENTICATION
This enables the user to pass in NTLM authentication information, such as host, port, realm, username, password to be used with HTTP transport sender.
The value should always be an instance of:
org.apache.axis2.transport.http.HttpTransportProperties.
NTLMAuthentication
- org.apache.axis2.transport.http.HTTPConstants.PROXY
This enables the user to pass in proxy information, such as proxy host name, port, domain, username, password to be used with HTTP transport sender.
The value should always be an instance of:
org.apache.axis2.transport.http.HttpTransportProperties.ProxyProperties
The value should always be an instance of:
org.apache.axis2.transport.http.HttpTransportProperties.BasicAuthentication
org.apache.axis2.transport.http.HTTPConstants.SO_TIMEOUT
This enables the user to pass in socket timeout value as an Integer. If nothing is set, the default value is 60000 milliseconds.
org.apache.axis2.transport.http.HTTPConstants.CONNECTION_TIMEOUT
This enables the user to pass in connection timeout value as an Integer. If nothing is set, the default value is 60000 milliseconds.
org.apache.axis2.transport.http.HTTPConstants.USER_AGENT
This enables the user to set the user agent header in the outgoing HTTP request. Default value is "Axis2"
org.apache.axis2.transport.http.HTTPConstants.MC_GZIP_REQUEST
If set this will GZip your request and send over to the destination. Before doing this, you must make sure that the receiving end supports GZip compressed streams.
Possible values are:
"true"/"false" or Boolean.TRUE/Boolean.FALSE
org.apache.axis2.transport.http.HTTPConstants.MC_ACCEPT_GZIP
Whether or not you send a gzip-ped request, you can choose to receive GZIP back from the server using this flag.
Possible values are:
"true"/"false" or Boolean.TRUE/Boolean.FALSE
org.apache.axis2.transport.http.HTTPConstants.COOKIE_STRING
This enables the user to set the cookie string header in the outgoing HTTP request.
org.apache.axis2.transport.http.HTTPConstants.HTTP_PROTOCOL_VERSION
This will set the HTTP protocol version to be used in sending the SOAP requests.
Possible values are :
HTTP/1.1 - HTTPConstants.HEADER_PROTOCOL_11
HTTP/1.0 - HTTPConstants.HEADER_PROTOCOL_10
Default is to use HTTP/1.1.
org.apache.axis2.transport.http.HTTPConstants.HTTP_HEADERS
You might sometimes want to send your own custom HTTP headers. You can set an ArrayList filled with
org.apache.commons.httpclient.Header objects using the above property. You must not try to override the Headers the Axis2 engine is setting to the outgoing message.
org.apache.axis2.transport.http.HTTPConstants.REUSE_HTTP_CLIENT
You might want to use the same HTTPClient instance for multiple invocations. This flag will notify the engine to use the same HTTPClient between invocations.
org.apache.axis2.transport.http.HTTPConstants.CACHED_HTTP_CLIENT
If user had requested to re-use an HTTPClient using the above property, this property can be used to set a custom HTTPClient to be re-used.
Constants to be used in a REST Invocation
- org.apache.axis2.transport.http.Constants.Configuration.ENABLE_REST
Enabling REST using the above flag will send your request as a REST invocation.
Possible values are:
"true"/"false" or Boolean.TRUE/Boolean.FALSE
- org.apache.axis2.transport.http.Constants.Configuration.HTTP_METHOD
This will help the user to pick the HTTP method to be used during a REST invocation.
Possible values are :
org.apache.axis2.Constants.Configuration.HTTP_METHOD_GET
and
org.apache.axis2.Constants.Configuration.HTTP_METHOD_POST
Default is to use POST method.
- org.apache.axis2.transport.http.Constants.Configuration.CONTENT_TYPE
This will help the user to pick the content type to be used during a REST
invocation.
Possible values are :
- application/xml -
HTTPConstants.MEDIA_TYPE_APPLICATION_XML
- application/x-www-form-urlencoded -
HTTPConstants.MEDIA_TYPE_X_WWW_FORM
- text/xml -
MEDIA_TYPE_TEXT_XML
- multipart/related -
MEDIA_TYPE_MULTIPART_RELATED
Parameters: propertyKey - Parameters: property - |
setRelationships | public void setRelationships(RelatesTo[] list)(Code) | | Set WS-Addressing RelatesTo items.
Parameters: list - |
setReplyTo | public void setReplyTo(EndpointReference replyTo)(Code) | | Set WS-Addressing ReplyTo endpoint.
Parameters: replyTo - endpoint |
setSenderTransport | public void setSenderTransport(String senderTransport, AxisConfiguration axisConfiguration) throws AxisFault(Code) | | Set transport used for outgoing message.
Parameters: senderTransport - transport name in Axis2 configuration("http", "tcp", etc.) Parameters: axisConfiguration - throws: AxisFault - if the transport is not found |
setTimeOutInMilliSeconds | public void setTimeOutInMilliSeconds(long timeOutInMilliSeconds)(Code) | | This is used in blocking scenario. Client will time out after waiting
this amount of time. The default is 2000 and must be provided in
multiples of 100.
Parameters: timeOutInMilliSeconds - |
setTransportIn | public void setTransportIn(TransportInDescription transportIn)(Code) | | Set transport used for incoming message.
Parameters: transportIn - |
setTransportInProtocol | public void setTransportInProtocol(String transportInProtocol)(Code) | | Set transport protocol used for incoming message.
Parameters: transportInProtocol - ("http", "tcp", etc.) |
setTransportInfo | public void setTransportInfo(String senderTransport, String listenerTransport, boolean useSeparateListener) throws AxisFault(Code) | | Sets transport information to the call. The scenarios supported are as
follows:
[senderTransport, listenerTransport, useSeparateListener]
http, http, true
http, http, false
http, smtp, true
smtp, http, true
smtp, smtp, true
tcp, tcp, true
tcp, tcp, false
etc.
Parameters: senderTransport - Parameters: listenerTransport - Parameters: useSeparateListener - throws: AxisFault - |
setTransportOut | public void setTransportOut(TransportOutDescription transportOut)(Code) | | Set transport used for outgoing message.
Parameters: transportOut - |
setUseSeparateListener | public void setUseSeparateListener(boolean useSeparateListener)(Code) | | Used to specify whether the two SOAP Messages are be sent over same
channel or over separate channels. The value of this variable depends on
the transport specified. For e.g., if the transports are different this
is true by default. HTTP transport supports both cases while SMTP
transport supports only two channel case.
Parameters: useSeparateListener - |
writeExternal | public void writeExternal(ObjectOutput out) throws IOException(Code) | | Save the contents of this object.
NOTE: Transient fields and static fields are not saved.
Parameters: out - The stream to write the object contents to throws: IOException - |
|
|