Methods Summary |
---|
public java.lang.String | getHTTPRequestHeaders()Gets the HTTP Request headers in the message.
Map headerMap = (Map)_smc.get(MessageContext.HTTP_REQUEST_HEADERS);
return Utils.getString(headerMap);
|
public java.lang.String | getHTTPResponseHeaders()Gets the HTTP Response headers in the message.
Map headerMap = (Map)_smc.get(MessageContext.HTTP_RESPONSE_HEADERS);
return Utils.getString(headerMap);
|
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.
// convert jax-rpc property to jax ws property
if (( name != null) && (
"com.sun.xml.rpc.server.http.HttpServletRequest".equals(name))) {
name = MessageContext.SERVLET_REQUEST;
}
return _smc.get(name);
|
public java.util.Iterator | getPropertyNames()Gets the PropertyNames for this web service invocation.
Set keySet = _smc.keySet();
if ( keySet != null) {
return keySet.iterator();
} else {
return null;
}
|
public void | setMessage(javax.xml.soap.SOAPMessage msg)Sets the SOAPMessage in the message context.
_smc.setMessage(msg);
|