com.ibm.websphere.webservices.soap
Class IBMSOAPConnection
- java.lang.Object
-
- javax.xml.soap.SOAPConnection
-
- com.ibm.websphere.webservices.soap.IBMSOAPConnection
-
public abstract class IBMSOAPConnection extends javax.xml.soap.SOAPConnectionThis is a marker interface. IBM value-add methods may be added to this class in the future.- See Also:
SOAPConnection
-
-
Constructor Summary
Constructors Constructor and Description IBMSOAPConnection()
-
Method Summary
Methods Modifier and Type Method and Description abstract javax.xml.soap.SOAPMessagecall(javax.xml.soap.SOAPMessage request, java.lang.Object endpoint, boolean useLegacyClientEngine)Sends the given message to the specified endpoint and blocks until it has returned the response.
-
-
-
Method Detail
-
call
public abstract javax.xml.soap.SOAPMessage call(javax.xml.soap.SOAPMessage request, java.lang.Object endpoint, boolean useLegacyClientEngine) throws javax.xml.soap.SOAPExceptionSends the given message to the specified endpoint and blocks until it has returned the response.- Parameters:
request- theSOAPMessageobject to be sentendpoint- aURLEndpointobject giving the URL to which the message should be sentuseLegacyClientEngine- (true) force the use of the old client engine. (false) use the new JAX-WS/SAAJ 1.3 enabled client engine.- Returns:
- the
SOAPMessageobject that is the response to the message that was sent - Throws:
SOAPException- if there is a SOAP errorjavax.xml.soap.SOAPException
-
-