Methods Summary |
---|
public java.lang.String | getHTTPRequestHeaders()Gets the HTTP Request headers in the message.
return null;
|
public java.lang.String | getHTTPResponseHeaders()Gets the HTTP Response headers in the message.
return null;
|
public javax.xml.soap.SOAPMessage | getMessage()Gets the SOAPMessage for this web service invocation.
return _smc.getMessage();
|
public java.lang.Object | getProperty(java.lang.String name)Gets the PropertyNames for this web service invocation.
return _smc.getProperty(name);
|
public java.util.Iterator | getPropertyNames()Gets the PropertyNames for this web service invocation.
return _smc.getPropertyNames();
|
public void | setMessage(javax.xml.soap.SOAPMessage msg)Sets the SOAPMessage in the message context.
_smc.setMessage(msg);
|
public void | setMessageContext(com.sun.xml.rpc.spi.runtime.SOAPMessageContext smc)Sets the message context.
if ( smc == null) {
throw new IllegalArgumentException();
}
_smc = smc;
|