Package Summary  Overview Summary

class:MessageContext [CHANGED]

  • All Superinterfaces:
    Map<String,Object>
    All Known Subinterfaces:
    LogicalMessageContext, SOAPMessageContext


    public interface MessageContext
    extends Map<String,Object>
    The interface MessageContext abstracts the message context that is processed by a handler in the handle method.

    The MessageContext interface provides methods to manage a property set. MessageContext properties enable handlers in a handler chain to share processing related state.

    Since:
    1.6, JAX-WS 2.0
  • All Superinterfaces:
    Map<String,Object>
    All Known Subinterfaces:
    LogicalMessageContext, SOAPMessageContext


    public interface MessageContext
    extends Map<String,Object>
    The interface MessageContext abstracts the message context that is processed by a handler in the handle method.

    The MessageContext interface provides methods to manage a property set. MessageContext properties enable handlers in a handler chain to share processing related state.

    Since:
    JAX-WS 2.0
  • All Superinterfaces:
    Map<String,Object>
    All Known Subinterfaces:
    LogicalMessageContext, SOAPMessageContext


    public interface MessageContext
    extends Map<String,Object>
    The interface MessageContext abstracts the message context that is processed by a handler in the handle method.

    The MessageContext interface provides methods to manage a property set. MessageContext properties enable handlers in a handler chain to share processing related state.

    Since:
    1.6, JAX-WS 2.0

field:MESSAGE_OUTBOUND_PROPERTY [NONE]

  • MESSAGE_OUTBOUND_PROPERTY

    static final String MESSAGE_OUTBOUND_PROPERTY
    Standard property: message direction, true for outbound messages, false for inbound.

    Type: boolean

    See Also:
    Constant Field Values

field:INBOUND_MESSAGE_ATTACHMENTS [NONE]

  • INBOUND_MESSAGE_ATTACHMENTS

    static final String INBOUND_MESSAGE_ATTACHMENTS
    Standard property: Map of attachments to a message for the inbound message, key is the MIME Content-ID, value is a DataHandler.

    Type: java.util.Map<String, DataHandler>

    See Also:
    Constant Field Values

field:OUTBOUND_MESSAGE_ATTACHMENTS [NONE]

  • OUTBOUND_MESSAGE_ATTACHMENTS

    static final String OUTBOUND_MESSAGE_ATTACHMENTS
    Standard property: Map of attachments to a message for the outbound message, key is the MIME Content-ID, value is a DataHandler.

    Type: java.util.Map<String, DataHandler>

    See Also:
    Constant Field Values

field:WSDL_DESCRIPTION [NONE]

  • WSDL_DESCRIPTION

    static final String WSDL_DESCRIPTION
    Standard property: input source for WSDL document.

    Type: org.xml.sax.InputSource

    See Also:
    Constant Field Values

field:WSDL_SERVICE [NONE]

  • WSDL_SERVICE

    static final String WSDL_SERVICE
    Standard property: name of WSDL service.

    Type: javax.xml.namespace.QName

    See Also:
    Constant Field Values

field:WSDL_PORT [NONE]

  • WSDL_PORT

    static final String WSDL_PORT
    Standard property: name of WSDL port.

    Type: javax.xml.namespace.QName

    See Also:
    Constant Field Values

field:WSDL_INTERFACE [NONE]

  • WSDL_INTERFACE

    static final String WSDL_INTERFACE
    Standard property: name of wsdl interface (2.0) or port type (1.1).

    Type: javax.xml.namespace.QName

    See Also:
    Constant Field Values

field:WSDL_OPERATION [NONE]

  • WSDL_OPERATION

    static final String WSDL_OPERATION
    Standard property: name of WSDL operation.

    Type: javax.xml.namespace.QName

    See Also:
    Constant Field Values

field:HTTP_RESPONSE_CODE [NONE]

  • HTTP_RESPONSE_CODE

    static final String HTTP_RESPONSE_CODE
    Standard property: HTTP response status code.

    Type: java.lang.Integer

    See Also:
    Constant Field Values

field:HTTP_REQUEST_HEADERS [NONE]

  • HTTP_REQUEST_HEADERS

    static final String HTTP_REQUEST_HEADERS
    Standard property: HTTP request headers.

    Type: java.util.Map<java.lang.String, java.util.List<java.lang.String>>

    See Also:
    Constant Field Values

field:HTTP_RESPONSE_HEADERS [NONE]

  • HTTP_RESPONSE_HEADERS

    static final String HTTP_RESPONSE_HEADERS
    Standard property: HTTP response headers.

    Type: java.util.Map<java.lang.String, java.util.List<java.lang.String>>

    See Also:
    Constant Field Values

field:HTTP_REQUEST_METHOD [NONE]

  • HTTP_REQUEST_METHOD

    static final String HTTP_REQUEST_METHOD
    Standard property: HTTP request method.

    Type: java.lang.String

    See Also:
    Constant Field Values

field:SERVLET_REQUEST [NONE]

  • SERVLET_REQUEST

    static final String SERVLET_REQUEST
    Standard property: servlet request object.

    Type: javax.servlet.http.HttpServletRequest

    See Also:
    Constant Field Values

field:SERVLET_RESPONSE [NONE]

  • SERVLET_RESPONSE

    static final String SERVLET_RESPONSE
    Standard property: servlet response object.

    Type: javax.servlet.http.HttpServletResponse

    See Also:
    Constant Field Values

field:SERVLET_CONTEXT [NONE]

  • SERVLET_CONTEXT

    static final String SERVLET_CONTEXT
    Standard property: servlet context object.

    Type: javax.servlet.ServletContext

    See Also:
    Constant Field Values

field:QUERY_STRING [NONE]

field:PATH_INFO [NONE]

field:REFERENCE_PARAMETERS [CHANGED]

  • REFERENCE_PARAMETERS

    static final String REFERENCE_PARAMETERS
    Standard property: WS Addressing Reference Parameters. The list MUST include all SOAP headers marked with the wsa:IsReferenceParameter="true" attribute.

    Type: List<Element>

    Since:
    1.6, JAX-WS 2.1
    See Also:
    Constant Field Values
  • REFERENCE_PARAMETERS

    static final String REFERENCE_PARAMETERS
    Standard property: WS Addressing Reference Parameters. The list MUST include all SOAP headers marked with the wsa:IsReferenceParameter="true" attribute.

    Type: List<Element>

    Since:
    JAX-WS 2.1
    See Also:
    Constant Field Values
  • REFERENCE_PARAMETERS

    static final String REFERENCE_PARAMETERS
    Standard property: WS Addressing Reference Parameters. The list MUST include all SOAP headers marked with the wsa:IsReferenceParameter="true" attribute.

    Type: List<Element>

    Since:
    1.6, JAX-WS 2.1
    See Also:
    Constant Field Values

method:setScope(java.lang.String, javax.xml.ws.handler.MessageContext.Scope) [NONE]

  • setScope

    void setScope(String name,
                  MessageContext.Scope scope)
    Sets the scope of a property.
    Parameters:
    name - Name of the property associated with the MessageContext
    scope - Desired scope of the property
    Throws:
    IllegalArgumentException - if an illegal property name is specified

method:getScope(java.lang.String) [NONE]

© 2017 Oracle Corporation and/or its affiliates