Uses of Class
com.sun.xml.ws.api.message.Message

Packages that use Message
com.sun.xml.ws.api.handler   
com.sun.xml.ws.api.message Message and related abstractions that represent a SOAP message. 
com.sun.xml.ws.api.message.saaj   
com.sun.xml.ws.api.pipe Pipe and related abstractions. 
com.sun.xml.ws.client.sei   
com.sun.xml.ws.commons.xmlutil   
com.sun.xml.ws.encoding   
com.sun.xml.ws.encoding.xml   
com.sun.xml.ws.fault   
com.sun.xml.ws.handler   
com.sun.xml.ws.message Message implementations. 
com.sun.xml.ws.message.jaxb Message implementation for JAXB. 
com.sun.xml.ws.message.saaj   
com.sun.xml.ws.message.source   
com.sun.xml.ws.message.stream   
com.sun.xml.ws.protocol.soap   
com.sun.xml.ws.server.provider   
com.sun.xml.ws.server.sei   
com.sun.xml.ws.wsdl   
 

Uses of Message in com.sun.xml.ws.api.handler
 

Methods in com.sun.xml.ws.api.handler that return Message
 Message MessageHandlerContext.getMessage()
          Gets the message from this message context
 

Methods in com.sun.xml.ws.api.handler with parameters of type Message
 void MessageHandlerContext.setMessage(Message message)
          Sets the message in this message context
 

Uses of Message in com.sun.xml.ws.api.message
 

Subclasses of Message in com.sun.xml.ws.api.message
 class FilterMessageImpl
          A FilterMessageImpl contains some other Message, which it uses as its basic source of message data, possibly transforming the data along the way or providing additional functionality.
 

Methods in com.sun.xml.ws.api.message that return Message
abstract  Message Message.copy()
          Creates a copy of a Message.
 Message FilterMessageImpl.copy()
           
 Message Message.copyFrom(Message m)
          The copy() method is used as a shorthand throughout the codecase in place of calling a copy constructor.
static Message Messages.create(org.w3c.dom.Element soapEnvelope)
          Creates a Message from an Element that represents the whole SOAP message.
static Message Messages.create(javax.xml.bind.JAXBContext context, java.lang.Object jaxbObject, SOAPVersion soapVersion)
          Deprecated.  
static Message Messages.create(javax.xml.bind.Marshaller marshaller, java.lang.Object jaxbObject, SOAPVersion soapVersion)
          Deprecated. Use #create(JAXBRIContext, Object, SOAPVersion)
static Message Messages.create(javax.xml.soap.SOAPFault fault)
          Creates a fault Message.
static Message Messages.create(javax.xml.soap.SOAPMessage saaj)
          Creates a Message backed by a SAAJ SOAPMessage object.
static Message Messages.create(SOAPVersion soapVersion, javax.xml.ws.ProtocolException pex, javax.xml.namespace.QName faultcode)
          To be called to convert a ProtocolException and faultcode for a given SOAPVersion in to a Message.
static Message Messages.create(javax.xml.transform.Source envelope, SOAPVersion soapVersion)
          Creates a Message using Source as entire envelope.
static Message Messages.create(java.lang.String unsupportedAction, AddressingVersion av, SOAPVersion sv)
          Creates a fault Message that captures the code/subcode/subsubcode defined by WS-Addressing if wsa:Action is not supported.
static Message Messages.create(java.lang.Throwable t, SOAPVersion soapVersion)
          Creates a Message that represents an exception as a fault.
static Message Messages.create(com.sun.xml.stream.buffer.XMLStreamBuffer xsb)
          Creates a Message from XMLStreamBuffer that retains the whole envelope infoset.
static Message Messages.create(javax.xml.stream.XMLStreamReader reader)
          Creates a Message from XMLStreamReader that points to the start of the envelope.
static Message Messages.createAddressingFaultMessage(WSBinding binding, Packet p, javax.xml.namespace.QName missingHeader)
          Creates a fault Message that captures the code/subcode/subsubcode defined by WS-Addressing if one of the expected WS-Addressing headers is missing in the message
static Message Messages.createAddressingFaultMessage(WSBinding binding, javax.xml.namespace.QName missingHeader)
          Deprecated. Use Messages.createAddressingFaultMessage(WSBinding, Packet, QName)
static Message Messages.createEmpty(SOAPVersion soapVersion)
          Creates a Message that doesn't have any payload.
static Message Messages.createRaw(javax.xml.bind.JAXBContext context, java.lang.Object jaxbObject, SOAPVersion soapVersion)
          Deprecated. For use when creating a Dispatch object with an unknown JAXB implementation for he JAXBContext parameter.
static Message Messages.createUsingPayload(org.w3c.dom.Element payload, SOAPVersion ver)
          Creates a Message from an Element that represents a payload.
static Message Messages.createUsingPayload(javax.xml.transform.Source payload, SOAPVersion ver)
          Creates a Message using Source as payload.
static Message Messages.createUsingPayload(javax.xml.stream.XMLStreamReader payload, SOAPVersion ver)
          Creates a Message using XMLStreamReader as payload.
abstract  Message ExceptionHasMessage.getFaultMessage()
          Returns the exception into a fault Message
 Message Packet.getInternalMessage()
           
 Message Packet.getMessage()
          Gets the last Message set through Packet.setMessage(Message).
 

Methods in com.sun.xml.ws.api.message with parameters of type Message
 Message Message.copyFrom(Message m)
          The copy() method is used as a shorthand throughout the codecase in place of calling a copy constructor.
 Packet Packet.createClientResponse(Message msg)
          Creates a response Packet from a request packet (this).
 com.oracle.webservices.api.message.MessageContext MessageContextFactory.createContext(Message m)
           
 Packet Packet.createResponse(Message msg)
          Deprecated. Use createClientResponse(Message) for client side and createServerResponse(Message, String) for server side response creation.
 Packet Packet.createServerResponse(Message responseMessage, AddressingVersion addressingVersion, SOAPVersion soapVersion, java.lang.String action)
          Creates a server-side response Packet from a request packet (this).
 Packet Packet.createServerResponse(Message responseMessage, WSDLPort wsdlPort, SEIModel seiModel, WSBinding binding)
          Creates a server-side response Packet from a request packet (this).
 void Packet.setMessage(Message message)
          Sets a Message to this packet.
 void Packet.setResponseMessage(Packet request, Message responseMessage, AddressingVersion addressingVersion, SOAPVersion soapVersion, java.lang.String action)
          Overwrites the Message of the response packet (this) by the given Message.
 

Constructors in com.sun.xml.ws.api.message with parameters of type Message
FilterMessageImpl(Message delegate)
           
Packet(Message request)
          Creates a Packet that wraps a given Message.
 

Uses of Message in com.sun.xml.ws.api.message.saaj
 

Methods in com.sun.xml.ws.api.message.saaj that return Message
static Message SAAJFactory.create(javax.xml.soap.SOAPMessage saaj)
          Creates Message from SOAPMessage
 Message SAAJFactory.createMessage(javax.xml.soap.SOAPMessage saaj)
          Creates Message from SOAPMessage
 

Methods in com.sun.xml.ws.api.message.saaj with parameters of type Message
protected static void SAAJFactory.addAttachmentsToSOAPMessage(javax.xml.soap.SOAPMessage msg, Message message)
           
static javax.xml.soap.SOAPMessage SAAJFactory.read(SOAPVersion soapVersion, Message message)
          Reads Message as SOAPMessage.
static javax.xml.soap.SOAPMessage SAAJFactory.read(SOAPVersion soapVersion, Message message, Packet packet)
          Reads Message as SOAPMessage.
 javax.xml.soap.SOAPMessage SAAJFactory.readAsSOAPMessage(SOAPVersion soapVersion, Message message)
          Reads Message as SOAPMessage.
 javax.xml.soap.SOAPMessage SAAJFactory.readAsSOAPMessage(SOAPVersion soapVersion, Message message, Packet packet)
          Reads Message as SOAPMessage.
 javax.xml.soap.SOAPMessage SAAJFactory.readAsSOAPMessageSax2Dom(SOAPVersion soapVersion, Message message)
           
 

Uses of Message in com.sun.xml.ws.api.pipe
 

Methods in com.sun.xml.ws.api.pipe that return Message
 Message StreamSOAPCodec.decode(javax.xml.stream.XMLStreamReader reader)
          Reads events from XMLStreamReader and constructs a Message for SOAP envelope.
 Message StreamSOAPCodec.decode(javax.xml.stream.XMLStreamReader reader, AttachmentSet att)
          Reads events from XMLStreamReader and constructs a Message for SOAP envelope.
 Message ThrowableContainerPropertySet.getFaultMessage()
           
 

Methods in com.sun.xml.ws.api.pipe that return types with arguments of type Message
static javax.xml.ws.Dispatch<Message> Stubs.createMessageDispatch(javax.xml.namespace.QName portName, WSService owner, WSBinding binding, Tube next, WSEndpointReference epr)
          Deprecated. 
static javax.xml.ws.Dispatch<Message> Stubs.createMessageDispatch(WSPortInfo portInfo, WSBinding binding, WSEndpointReference epr)
          Creates a new Message-based Dispatch stub that connects to the given pipe.
 

Methods in com.sun.xml.ws.api.pipe with parameters of type Message
 void ThrowableContainerPropertySet.setFaultMessage(Message faultMessage)
           
 

Uses of Message in com.sun.xml.ws.client.sei
 

Methods in com.sun.xml.ws.client.sei with parameters of type Message
abstract  java.lang.Object ResponseBuilder.readResponse(Message reply, java.lang.Object[] args)
          Reads a response Message, disassembles it, and moves obtained Java values to the expected places.
 java.lang.Object ResponseBuilder.NullSetter.readResponse(Message msg, java.lang.Object[] args)
           
 java.lang.Object ResponseBuilder.Composite.readResponse(Message msg, java.lang.Object[] args)
           
 java.lang.Object ResponseBuilder.AttachmentBuilder.readResponse(Message msg, java.lang.Object[] args)
           
 java.lang.Object ResponseBuilder.Header.readResponse(Message msg, java.lang.Object[] args)
           
 java.lang.Object ResponseBuilder.Body.readResponse(Message msg, java.lang.Object[] args)
           
 java.lang.Object ResponseBuilder.DocLit.readResponse(Message msg, java.lang.Object[] args)
           
 java.lang.Object ResponseBuilder.RpcLit.readResponse(Message msg, java.lang.Object[] args)
           
protected  java.lang.Object ResponseBuilder.readWrappedResponse(Message msg, java.lang.Object[] args)
           
 

Uses of Message in com.sun.xml.ws.commons.xmlutil
 

Methods in com.sun.xml.ws.commons.xmlutil that return Message
static Message Converter.toMessage(java.io.InputStream dataStream, java.lang.String encoding)
          Converts JAX-WS RI message represented as input stream back to Message object.
 

Methods in com.sun.xml.ws.commons.xmlutil with parameters of type Message
static byte[] Converter.toBytes(Message message, java.lang.String encoding)
           
static java.lang.String Converter.toString(Message message)
           
static java.lang.String Converter.toStringNoIndent(Message message)
           
 

Uses of Message in com.sun.xml.ws.encoding
 

Methods in com.sun.xml.ws.encoding that return Message
static Message StreamSOAPCodec.decode(SOAPVersion soapVersion, javax.xml.stream.XMLStreamReader reader, AttachmentSet attachmentSet)
           
 Message StreamSOAPCodec.decode(javax.xml.stream.XMLStreamReader reader)
          Decodes a message from XMLStreamReader that points to the beginning of a SOAP infoset.
 Message StreamSOAPCodec.decode(javax.xml.stream.XMLStreamReader reader, AttachmentSet attachmentSet)
          Decodes a message from XMLStreamReader that points to the beginning of a SOAP infoset.
 

Uses of Message in com.sun.xml.ws.encoding.xml
 

Subclasses of Message in com.sun.xml.ws.encoding.xml
static class XMLMessage.UnknownContent
          Don't know about this content.
static class XMLMessage.XMLMultiPart
          Data represented as a multi-part MIME message.
 

Methods in com.sun.xml.ws.encoding.xml that return Message
 Message XMLMessage.XMLMultiPart.copy()
           
 Message XMLMessage.UnknownContent.copy()
           
static Message XMLMessage.create(javax.activation.DataSource ds, WSFeatureList f)
           
static Message XMLMessage.create(java.lang.Exception e)
           
static Message XMLMessage.create(javax.xml.transform.Source source)
           
static Message XMLMessage.create(java.lang.String ct, java.io.InputStream in, WSFeatureList f)
           
 

Methods in com.sun.xml.ws.encoding.xml with parameters of type Message
static javax.activation.DataSource XMLMessage.getDataSource(Message msg, WSFeatureList f)
           
 

Uses of Message in com.sun.xml.ws.fault
 

Methods in com.sun.xml.ws.fault that return Message
static Message SOAPFaultBuilder.createSOAPFaultMessage(SOAPVersion soapVersion, CheckedExceptionImpl ceModel, java.lang.Throwable ex)
          To be called by the server runtime in the situations when there is an Exception that needs to be transformed in to a soapenv:Fault payload.
static Message SOAPFaultBuilder.createSOAPFaultMessage(SOAPVersion soapVersion, CheckedExceptionImpl ceModel, java.lang.Throwable ex, javax.xml.namespace.QName faultCode)
          Create the Message with the specified faultCode
static Message SOAPFaultBuilder.createSOAPFaultMessage(SOAPVersion soapVersion, javax.xml.ws.ProtocolException ex, javax.xml.namespace.QName faultcode)
          To be called to convert a ProtocolException and faultcode for a given SOAPVersion in to a Message.
static Message SOAPFaultBuilder.createSOAPFaultMessage(SOAPVersion soapVersion, javax.xml.soap.SOAPFault fault)
           
static Message SOAPFaultBuilder.createSOAPFaultMessage(SOAPVersion soapVersion, java.lang.String faultString, javax.xml.namespace.QName faultCode)
          Server runtime will call this when there is some internal error not resulting from an exception.
 

Methods in com.sun.xml.ws.fault with parameters of type Message
static SOAPFaultBuilder SOAPFaultBuilder.create(Message msg)
          Parses a fault Message and returns it as a SOAPFaultBuilder.
 

Uses of Message in com.sun.xml.ws.handler
 

Methods in com.sun.xml.ws.handler that return Message
 Message MessageHandlerContextImpl.getMessage()
           
 

Methods in com.sun.xml.ws.handler with parameters of type Message
 void MessageHandlerContextImpl.setMessage(Message message)
           
 

Uses of Message in com.sun.xml.ws.message
 

Subclasses of Message in com.sun.xml.ws.message
 class AbstractMessageImpl
          Partial Message implementation.
 class DOMMessage
          Message backed by a DOM Element that represents the payload.
 class EmptyMessageImpl
          Message that has no body.
 class FaultMessage
          SOAP Fault message.
 

Methods in com.sun.xml.ws.message that return Message
 Message EmptyMessageImpl.copy()
           
 Message DOMMessage.copy()
           
 Message AbstractMessageImpl.toSAAJ(Packet p, java.lang.Boolean inbound)
           
 

Constructors in com.sun.xml.ws.message with parameters of type Message
FaultMessage(Message delegate, javax.xml.namespace.QName detailEntryName)
           
 

Uses of Message in com.sun.xml.ws.message.jaxb
 

Subclasses of Message in com.sun.xml.ws.message.jaxb
 class JAXBDispatchMessage
          Message backed by a JAXB bean; this implementation is used when client uses Dispatch mechanism in JAXB/MESSAGE mode; difference from JAXBMessage is that jaxbObject holds whole SOAP message including SOAP envelope; it's the client who is responsible for preparing message content.
 class JAXBMessage
          Message backed by a JAXB bean.
 

Methods in com.sun.xml.ws.message.jaxb that return Message
 Message JAXBMessage.copy()
           
 Message JAXBDispatchMessage.copy()
           
static Message JAXBMessage.create(BindingContext context, java.lang.Object jaxbObject, SOAPVersion soapVersion)
          Creates a Message backed by a JAXB bean.
static Message JAXBMessage.create(BindingContext context, java.lang.Object jaxbObject, SOAPVersion soapVersion, MessageHeaders headers, AttachmentSet attachments)
           
static Message JAXBMessage.create(javax.xml.bind.JAXBContext context, java.lang.Object jaxbObject, SOAPVersion soapVersion)
          Deprecated.  
static Message JAXBMessage.create(XMLBridge bridge, java.lang.Object jaxbObject, SOAPVersion soapVer)
          Creates a Message backed by a JAXB bean.
static Message JAXBMessage.createRaw(javax.xml.bind.JAXBContext context, java.lang.Object jaxbObject, SOAPVersion soapVersion)
          Deprecated. For use when creating a Dispatch object with an unknown JAXB implementation for he JAXBContext parameter.
 

Uses of Message in com.sun.xml.ws.message.saaj
 

Subclasses of Message in com.sun.xml.ws.message.saaj
 class SAAJMessage
          Message implementation backed by SOAPMessage.
 

Methods in com.sun.xml.ws.message.saaj that return Message
 Message SAAJMessage.copy()
          Creates a copy of a Message.
 

Uses of Message in com.sun.xml.ws.message.source
 

Subclasses of Message in com.sun.xml.ws.message.source
 class PayloadSourceMessage
          Message backed by Source as payload
 class ProtocolSourceMessage
          Implementation of Message backed by Source where the Source represents the complete message such as a SOAP envelope.
 

Methods in com.sun.xml.ws.message.source that return Message
 Message ProtocolSourceMessage.copy()
           
 

Uses of Message in com.sun.xml.ws.message.stream
 

Subclasses of Message in com.sun.xml.ws.message.stream
 class PayloadStreamReaderMessage
          Message backed by XMLStreamReader as payload
 class StreamMessage
          Message implementation backed by XMLStreamReader.
 

Methods in com.sun.xml.ws.message.stream that return Message
 Message StreamMessage.copy()
           
 Message PayloadStreamReaderMessage.copy()
           
 

Uses of Message in com.sun.xml.ws.protocol.soap
 

Methods in com.sun.xml.ws.protocol.soap that return Message
 Message VersionMismatchException.getFaultMessage()
           
 Message MessageCreationException.getFaultMessage()
           
 

Uses of Message in com.sun.xml.ws.server.provider
 

Methods in com.sun.xml.ws.server.provider that return Message
protected abstract  Message ProviderArgumentsBuilder.getResponseMessage(java.lang.Exception e)
          Creates a fault Message from method invocation's exception
protected abstract  Message ProviderArgumentsBuilder.getResponseMessage(T returnValue)
           
 

Uses of Message in com.sun.xml.ws.server.sei
 

Methods in com.sun.xml.ws.server.sei that return Message
abstract  Message EndpointResponseMessageBuilder.createMessage(java.lang.Object[] methodArgs, java.lang.Object returnValue)
           
 Message TieHandler.createResponse(com.oracle.webservices.api.databinding.JavaCallInfo call)
           
 

Methods in com.sun.xml.ws.server.sei with parameters of type Message
abstract  void MessageFiller.fillIn(java.lang.Object[] methodArgs, java.lang.Object returnValue, Message msg)
          Moves an argument of a method invocation into a Message.
 void MessageFiller.Header.fillIn(java.lang.Object[] methodArgs, java.lang.Object returnValue, Message msg)
           
 java.lang.Object[] TieHandler.readRequest(Message reqMsg)
           
abstract  void EndpointArgumentsBuilder.readRequest(Message request, java.lang.Object[] args)
          Reads a request Message, disassembles it, and moves obtained Java values to the expected places.
 void EndpointArgumentsBuilder.NullSetter.readRequest(Message msg, java.lang.Object[] args)
           
 void EndpointArgumentsBuilder.Composite.readRequest(Message msg, java.lang.Object[] args)
           
 void EndpointArgumentsBuilder.AttachmentBuilder.readRequest(Message msg, java.lang.Object[] args)
           
 void EndpointArgumentsBuilder.Header.readRequest(Message msg, java.lang.Object[] args)
           
 void EndpointArgumentsBuilder.Body.readRequest(Message msg, java.lang.Object[] args)
           
 void EndpointArgumentsBuilder.DocLit.readRequest(Message msg, java.lang.Object[] args)
           
 void EndpointArgumentsBuilder.RpcLit.readRequest(Message msg, java.lang.Object[] args)
           
protected  void EndpointArgumentsBuilder.readWrappedRequest(Message msg, java.lang.Object[] args)
           
 

Uses of Message in com.sun.xml.ws.wsdl
 

Fields in com.sun.xml.ws.wsdl declared as Message
 Message DispatchException.fault
           
 

Constructors in com.sun.xml.ws.wsdl with parameters of type Message
DispatchException(Message fault)
           
 



Copyright (c) 1997-2012 Oracle and/or its affiliates. All rights reserved.