Class ServiceClient
- java.lang.Object
- 
- org.apache.axis2.client.ServiceClient
 
- 
- Direct Known Subclasses:
- MexClient,- RPCServiceClient
 
 public class ServiceClient extends Object Client access to a service. Each instance of this class is associated with a particularAxisService, and the methods support operations using that service. Note that these instances are not intended to be thread-safe.Optionsinstances are used to configure various aspects of the service access.
- 
- 
Field SummaryFields Modifier and Type Field Description static QNameANON_OUT_IN_OPOperation name used for an anonymous in-out operation (meaning we sent a message and receive a response, equivalent to a WSDL In-Out operation).static QNameANON_OUT_ONLY_OPOperation name used for an anonymous out-only operation (meaning we send a message with no response allowed from the service, equivalent to a WSDL In-Only operation).static QNameANON_ROBUST_OUT_ONLY_OPOperation name used for an anonymous robust-out-only operation (meaning we send a message, with the only possible response a fault, equivalent to a WSDL Robust-In-Only operation).static StringANON_SERVICEBase name used for a service created without an existing configuration.static StringAUTO_OPERATION_CLEANUPOption property name for automatically cleaning up old OperationContextsprotected static org.apache.commons.logging.Loglog
 - 
Constructor SummaryConstructors Constructor Description ServiceClient()Create a service client by assuming an anonymous service and any other necessary information.ServiceClient(ConfigurationContext configContext, URL wsdlURL, QName wsdlServiceName, String portName)Create a service client for WSDL service identified by the QName of the wsdl:service element in a WSDL document.ServiceClient(ConfigurationContext configContext, javax.wsdl.Definition wsdl4jDefinition, QName wsdlServiceName, String portName)This is WSDL4J based constructor to configure the Service Client/ TODO: make this policy awareServiceClient(ConfigurationContext configContext, AxisService axisService)Create a service client configured to work with a specific AxisService.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddHeader(OMElement header)Add an arbitrary XML element as a header to be sent with outgoing messages.voidaddHeader(SOAPHeaderBlock header)Add SOAP Header to be sent with outgoing messages.voidaddHeadersToEnvelope(SOAPEnvelope envelope)Add all configured headers to a SOAP envelope.voidaddStringHeader(QName headerName, String headerText)Add a simple header containing some text to be sent with interactions.voidcleanup()Clean up configuration created with this client.voidcleanupTransport()Release resources allocated by the transport during the last service invocation.OperationClientcreateClient(QName operationQName)Create an operation client with the appropriate message exchange pattern (MEP).voiddisengageModule(String moduleName)Disengage a module for this service clientvoidengageModule(String moduleName)Engage a module for this service client.booleanequals(Object obj)protected voidfinalize()voidfireAndForget(QName operation, OMElement elem)Directly invoke a named operation with an In-Only MEP.voidfireAndForget(OMElement elem)Directly invoke an anonymous operation with an In-Only MEP.AxisConfigurationgetAxisConfiguration()Get the AxisConfigurationAxisServicegetAxisService()Return the AxisService this is a client for.OperationContextgetLastOperationContext()Gets the last OperationContextEndpointReferencegetMyEPR(String transport)Get the endpoint reference for this client using a particular transport.OptionsgetOptions()Get the basic client configuration from this service interaction.OptionsgetOverrideOptions()Get the client configuration used to override the normal options set by an operation client.ServiceContextgetServiceContext()Get the service context.EndpointReferencegetTargetEPR()Get the endpoint reference for the service.inthashCode()voidremoveHeaders()Remove all headers for outgoing message.OMElementsendReceive(QName operationQName, OMElement xmlPayload)Directly invoke a named operationQName with an In-Out MEP.OMElementsendReceive(OMElement elem)Directly invoke an anonymous operation with an In-Out MEP.voidsendReceiveNonBlocking(QName operation, OMElement elem, AxisCallback callback)Directly invoke a named operation with an In-Out MEP without waiting for a response.voidsendReceiveNonBlocking(OMElement elem, AxisCallback callback)Directly invoke an anonymous operation with an In-Out MEP without waiting for a response.voidsendRobust(QName operation, OMElement elem)Directly invoke a named operation with a Robust In-Only MEP.voidsendRobust(OMElement elem)Directly invoke an anonymous operation with a Robust In-Only MEP.voidsetAxisService(AxisService axisService)Configure the ServiceClient to interact with the Web service described by the specified AxisService object.voidsetOptions(Options options)Set the basic client configuration related to this service interaction.voidsetOverrideOptions(Options overrideOptions)Set a client configuration to override the normal options used by an operation client.voidsetTargetEPR(EndpointReference targetEpr)Set the endpoint reference for the service.
 
- 
- 
- 
Field Detail- 
logprotected static final org.apache.commons.logging.Log log 
 - 
ANON_SERVICEpublic static final String ANON_SERVICE Base name used for a service created without an existing configuration.- See Also:
- Constant Field Values
 
 - 
AUTO_OPERATION_CLEANUPpublic static final String AUTO_OPERATION_CLEANUP Option property name for automatically cleaning up old OperationContexts- See Also:
- Constant Field Values
 
 - 
ANON_OUT_ONLY_OPpublic static final QName ANON_OUT_ONLY_OP Operation name used for an anonymous out-only operation (meaning we send a message with no response allowed from the service, equivalent to a WSDL In-Only operation).
 - 
ANON_ROBUST_OUT_ONLY_OPpublic static final QName ANON_ROBUST_OUT_ONLY_OP Operation name used for an anonymous robust-out-only operation (meaning we send a message, with the only possible response a fault, equivalent to a WSDL Robust-In-Only operation).
 - 
ANON_OUT_IN_OPpublic static final QName ANON_OUT_IN_OP Operation name used for an anonymous in-out operation (meaning we sent a message and receive a response, equivalent to a WSDL In-Out operation).
 
- 
 - 
Constructor Detail- 
ServiceClientpublic ServiceClient(ConfigurationContext configContext, AxisService axisService) throws AxisFault Create a service client configured to work with a specific AxisService. If this service is already in the world that's handed in (in the form of a ConfigurationContext) then I will happily work in it. If not I will create a small little virtual world and live there.- Parameters:
- configContext- The configuration context under which this service lives (may be null, in which case a new local one will be created)
- axisService- The service for which this is the client (may be- null, in which case an anonymous service will be created)
- Throws:
- AxisFault- if something goes wrong while creating a config context (if needed)
 
 - 
ServiceClientpublic ServiceClient(ConfigurationContext configContext, javax.wsdl.Definition wsdl4jDefinition, QName wsdlServiceName, String portName) throws AxisFault This is WSDL4J based constructor to configure the Service Client/ TODO: make this policy aware- Parameters:
- configContext- active ConfigurationContext
- wsdl4jDefinition- the WSDL we're going to be using to configure ourselves
- wsdlServiceName- QName of the WSDL service we'd like to access
- portName- name of the WSDL port we'd like to access
- Throws:
- AxisFault- in case of error
 
 - 
ServiceClientpublic ServiceClient(ConfigurationContext configContext, URL wsdlURL, QName wsdlServiceName, String portName) throws AxisFault Create a service client for WSDL service identified by the QName of the wsdl:service element in a WSDL document.- Parameters:
- configContext- The configuration context under which this service lives (may be- null, in which case a new local one will be created) *
- wsdlURL- The URL of the WSDL document to read
- wsdlServiceName- The QName of the WSDL service in the WSDL document to create a client for
- portName- The name of the WSDL 1.1 port to create a client for. May be null (if WSDL 2.0 is used or if only one port is there). .
- Throws:
- AxisFault- if something goes wrong while creating a config context (if needed)
 
 
- 
 - 
Method Detail- 
getAxisConfigurationpublic AxisConfiguration getAxisConfiguration() Get the AxisConfiguration- Returns:
- the AxisConfiguration associated with the client.
 
 - 
getAxisServicepublic AxisService getAxisService() Return the AxisService this is a client for. This is primarily useful when the AxisService is created anonymously or from WSDL as otherwise the user had the AxisService to start with.- Returns:
- the axisService
 
 - 
setOptionspublic void setOptions(Options options) Set the basic client configuration related to this service interaction.- Parameters:
- options- (non-- null)
 
 - 
getOptionspublic Options getOptions() Get the basic client configuration from this service interaction.- Returns:
- options
 
 - 
setOverrideOptionspublic void setOverrideOptions(Options overrideOptions) Set a client configuration to override the normal options used by an operation client. Any values set in this configuration will be used for each client, with the standard values for the client still used for any values not set in the override configuration.- Parameters:
- overrideOptions- the Options to use
 
 - 
getOverrideOptionspublic Options getOverrideOptions() Get the client configuration used to override the normal options set by an operation client.- Returns:
- override options
 
 - 
engageModulepublic void engageModule(String moduleName) throws AxisFault Engage a module for this service client.- Parameters:
- moduleName- name of the module to engage
- Throws:
- AxisFault- if something goes wrong
 
 - 
disengageModulepublic void disengageModule(String moduleName) Disengage a module for this service client- Parameters:
- moduleName- name of Module to disengage
 
 - 
addHeaderpublic void addHeader(OMElement header) Add an arbitrary XML element as a header to be sent with outgoing messages.- Parameters:
- header- header to be sent (non-- null)
 
 - 
addHeaderpublic void addHeader(SOAPHeaderBlock header) Add SOAP Header to be sent with outgoing messages.- Parameters:
- header- header to be sent (non-- null)
 
 - 
removeHeaderspublic void removeHeaders() Remove all headers for outgoing message.
 - 
addStringHeaderpublic void addStringHeader(QName headerName, String headerText) throws AxisFault Add a simple header containing some text to be sent with interactions.- Parameters:
- headerName- name of header to add
- headerText- text content for header
- Throws:
- AxisFault- in case of error
 
 - 
sendRobustpublic void sendRobust(OMElement elem) throws AxisFault Directly invoke an anonymous operation with a Robust In-Only MEP. This method just sends your supplied XML and possibly receives a fault. For more control, you can instead create a client for the operation and use that client to execute the send.- Parameters:
- elem- XML to send
- Throws:
- AxisFault- if something goes wrong while sending, or if a fault is received in response (per the Robust In-Only MEP).
- See Also:
- createClient(QName)
 
 - 
sendRobustpublic void sendRobust(QName operation, OMElement elem) throws AxisFault Directly invoke a named operation with a Robust In-Only MEP. This method just sends your supplied XML and possibly receives a fault. For more control, you can instead create a client for the operation and use that client to execute the send.- Parameters:
- operation- name of operation to be invoked (non-- null)
- elem- XML to send
- Throws:
- AxisFault- if something goes wrong while sending it or if a fault is received in response (per the Robust In-Only MEP).
- See Also:
- createClient(QName)
 
 - 
fireAndForgetpublic void fireAndForget(OMElement elem) throws AxisFault Directly invoke an anonymous operation with an In-Only MEP. This method just sends your supplied XML without the possibility of any response from the service (even an error - though you can still get client-side errors such as "Host not found"). For more control, you can instead create a client for the operation and use that client to execute the send.- Parameters:
- elem- XML to send
- Throws:
- AxisFault- ff something goes wrong trying to send the XML
- See Also:
- createClient(QName)
 
 - 
fireAndForgetpublic void fireAndForget(QName operation, OMElement elem) throws AxisFault Directly invoke a named operation with an In-Only MEP. This method just sends your supplied XML without the possibility of any response from the service (even an error - though you can still get client-side errors such as "Host not found"). For more control, you can instead create a client for the operation and use that client to execute the send.- Parameters:
- operation- name of operation to be invoked (non-- null)
- elem- XML to send
- Throws:
- AxisFault- if something goes wrong trying to send the XML
- See Also:
- createClient(QName)
 
 - 
sendReceivepublic OMElement sendReceive(OMElement elem) throws AxisFault Directly invoke an anonymous operation with an In-Out MEP. This method sends your supplied XML and receives a response. For more control, you can instead create a client for the operation and use that client to execute the exchange.Unless the callTransportCleanupproperty on theOptionsobject has been set totrue, the caller must invokecleanupTransport()after processing the response.- Parameters:
- elem- the data to send (becomes the content of SOAP body)
- Returns:
- response
- Throws:
- AxisFault- in case of error
- See Also:
- createClient(QName),- cleanupTransport()
 
 - 
sendReceivepublic OMElement sendReceive(QName operationQName, OMElement xmlPayload) throws AxisFault Directly invoke a named operationQName with an In-Out MEP. This method sends your supplied XML and receives a response. For more control, you can instead create a client for the operationQName and use that client to execute the exchange.Unless the callTransportCleanupproperty on theOptionsobject has been set totrue, the caller must invokecleanupTransport()after processing the response.- Parameters:
- operationQName- name of operationQName to be invoked (non-- null)
- xmlPayload- the data to send (becomes the content of SOAP body)
- Returns:
- response OMElement
- Throws:
- AxisFault- in case of error
- See Also:
- cleanupTransport()
 
 - 
sendReceiveNonBlockingpublic void sendReceiveNonBlocking(OMElement elem, AxisCallback callback) throws AxisFault Directly invoke an anonymous operation with an In-Out MEP without waiting for a response. This method sends your supplied XML with response notification to your callback handler. For more control, you can instead create a client for the operation and use that client to execute the exchange.- Parameters:
- elem- the data to send (becomes the content of SOAP body)
- callback- a Callback which will be notified upon completion
- Throws:
- AxisFault- in case of error
- See Also:
- createClient(QName)
 
 - 
sendReceiveNonBlockingpublic void sendReceiveNonBlocking(QName operation, OMElement elem, AxisCallback callback) throws AxisFault Directly invoke a named operation with an In-Out MEP without waiting for a response. This method sends your supplied XML with response notification to your callback handler. For more control, you can instead create a client for the operation and use that client to execute the exchange.- Parameters:
- operation- name of operation to be invoked (non-- null)
- elem- the data to send (becomes the content of SOAP body)
- callback- a Callback which will be notified upon completion
- Throws:
- AxisFault- in case of error
- See Also:
- createClient(QName)
 
 - 
createClientpublic OperationClient createClient(QName operationQName) throws AxisFault Create an operation client with the appropriate message exchange pattern (MEP). This method creates a full-function MEP client which can be used to exchange messages for a specific operation. It configures the constructed operation client to use the current normal and override options. This method is used internally, and also by generated client stub code.- Parameters:
- operationQName- qualified name of operation (local name is operation name, namespace URI is just the empty string)
- Returns:
- client configured to talk to the given operation
- Throws:
- AxisFault- if the operation is not found
 
 - 
addHeadersToEnvelopepublic void addHeadersToEnvelope(SOAPEnvelope envelope) Add all configured headers to a SOAP envelope.- Parameters:
- envelope- the SOAPEnvelope in which to write the headers
 
 - 
getMyEPRpublic EndpointReference getMyEPR(String transport) throws AxisFault Get the endpoint reference for this client using a particular transport.- Parameters:
- transport- transport name (non-- null)
- Returns:
- local endpoint
- Throws:
- AxisFault- in case of error
 
 - 
getTargetEPRpublic EndpointReference getTargetEPR() Get the endpoint reference for the service.- Returns:
- service endpoint
 
 - 
setTargetEPRpublic void setTargetEPR(EndpointReference targetEpr) Set the endpoint reference for the service.- Parameters:
- targetEpr- the EPR this ServiceClient should target
 
 - 
getLastOperationContextpublic OperationContext getLastOperationContext() Gets the last OperationContext- Returns:
- the last OperationContext that was invoked by this ServiceClient
 
 - 
getServiceContextpublic ServiceContext getServiceContext() Get the service context.- Returns:
- context
 
 - 
finalizeprotected void finalize() throws Throwable
 - 
cleanuppublic void cleanup() throws AxisFaultClean up configuration created with this client. Call this method when you're done using the client, in order to discard any associated resources.- Throws:
- AxisFault- in case of error
 
 - 
cleanupTransportpublic void cleanupTransport() throws AxisFaultRelease resources allocated by the transport during the last service invocation. This method will callorg.apache.axis2.transport.TransportSender#cleanup(MessageContext)on the transport sender used during that invocation.If the callTransportCleanupproperty on theOptionsobject is set tofalse(which is the default), then this method must be called after each invocation of an operation with an in-out MEP, but not before the response from that operation has been completely processed (orOMSerializable.build()has been called on the response element).If the callTransportCleanupproperty is set totrue, then this method is called automatically. Note that in this case,OMSerializable.build()will be called on the response element before is returned. This effectively disables deferred parsing of the response and prevents the code from starting to process the response before it has been completely received. Therefore this approach is not recommended whenever performance is important.- Throws:
- AxisFault
 
 - 
setAxisServicepublic void setAxisService(AxisService axisService) throws AxisFault Configure the ServiceClient to interact with the Web service described by the specified AxisService object.- Parameters:
- axisService- the AxisService that represents the new Web service.
- Throws:
- AxisFault- if an error occurs while configuring the ServiceClient.
 
 - 
hashCodepublic int hashCode() - Overrides:
- hashCodein class- Object
- See Also:
- Object.hashCode()
 
 - 
equalspublic boolean equals(Object obj) - Overrides:
- equalsin class- Object
- See Also:
- Object.equals(java.lang.Object)
 
 
- 
 
-