Uses of Class
com.sun.xml.ws.api.message.Message
-
Packages that use Message Package Description com.oracle.webservices.impl.encoding com.oracle.webservices.impl.internalspi.encoding com.sun.xml.ws.api.handler com.sun.xml.ws.api.message Messageand related abstractions that represent a SOAP message.com.sun.xml.ws.api.message.saaj com.sun.xml.ws.api.pipe Pipeand related abstractions.com.sun.xml.ws.client.sei SEIStuband its supporting code.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 Messageimplementations.com.sun.xml.ws.message.jaxb Messageimplementation 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.oracle.webservices.impl.encoding
Methods in com.oracle.webservices.impl.encoding that return Message Modifier and Type Method Description MessageStreamDecoderImpl. decode(InputStream in, String charset, AttachmentSet att, SOAPVersion soapVersion) -
Uses of Message in com.oracle.webservices.impl.internalspi.encoding
Methods in com.oracle.webservices.impl.internalspi.encoding that return Message Modifier and Type Method Description MessageStreamDecoder. decode(InputStream in, String charset, AttachmentSet att, SOAPVersion soapVersion) -
Uses of Message in com.sun.xml.ws.api.handler
Methods in com.sun.xml.ws.api.handler that return Message Modifier and Type Method Description MessageMessageHandlerContext. getMessage()Gets the message from this message contextMethods in com.sun.xml.ws.api.handler with parameters of type Message Modifier and Type Method Description voidMessageHandlerContext. 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 Modifier and Type Class Description classFilterMessageImplAFilterMessageImplcontains 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 Modifier and Type Method Description MessageFilterMessageImpl. copy()abstract MessageMessage. copy()Creates a copy of aMessage.MessageMessage. copyFrom(Message m)Thecopy()method is used as a shorthand throughout the codecase in place of calling a copy constructor.static MessageMessages. create(com.sun.xml.stream.buffer.XMLStreamBuffer xsb)Creates aMessagefromXMLStreamBufferthat retains the whole envelope infoset.static MessageMessages. create(SOAPVersion soapVersion, ProtocolException pex, QName faultcode)static MessageMessages. create(String unsupportedAction, AddressingVersion av, SOAPVersion sv)Creates a faultMessagethat captures the code/subcode/subsubcode defined by WS-Addressing if wsa:Action is not supported.static MessageMessages. create(Throwable t, SOAPVersion soapVersion)Creates aMessagethat represents an exception as a fault.static MessageMessages. create(JAXBContext context, Object jaxbObject, SOAPVersion soapVersion)Deprecated.static MessageMessages. create(Marshaller marshaller, Object jaxbObject, SOAPVersion soapVersion)Deprecated.Use#create(JAXBRIContext, Object, SOAPVersion)static MessageMessages. create(SOAPFault fault)Creates a faultMessage.static MessageMessages. create(SOAPMessage saaj)Creates aMessagebacked by a SAAJSOAPMessageobject.static MessageMessages. create(XMLStreamReader reader)Creates aMessagefromXMLStreamReaderthat points to the start of the envelope.static MessageMessages. create(Source envelope, SOAPVersion soapVersion)Creates aMessageusing Source as entire envelope.static MessageMessages. create(Element soapEnvelope)static MessageMessages. createAddressingFaultMessage(WSBinding binding, Packet p, QName missingHeader)Creates a faultMessagethat captures the code/subcode/subsubcode defined by WS-Addressing if one of the expected WS-Addressing headers is missing in the messagestatic MessageMessages. createAddressingFaultMessage(WSBinding binding, QName missingHeader)Deprecated.static MessageMessages. createEmpty(SOAPVersion soapVersion)Creates aMessagethat doesn't have any payload.static MessageMessages. createRaw(JAXBContext context, Object jaxbObject, SOAPVersion soapVersion)Deprecated.For use when creating a Dispatch object with an unknown JAXB implementation for he JAXBContext parameter.static MessageMessages. createUsingPayload(XMLStreamReader payload, SOAPVersion ver)Creates aMessageusingXMLStreamReaderas payload.static MessageMessages. createUsingPayload(Source payload, SOAPVersion ver)static MessageMessages. createUsingPayload(Element payload, SOAPVersion ver)abstract MessageExceptionHasMessage. getFaultMessage()Returns the exception into a fault MessageMessagePacket. getInternalMessage()MessagePacket. getMessage()Gets the lastMessageset throughPacket.setMessage(Message).Methods in com.sun.xml.ws.api.message with parameters of type Message Modifier and Type Method Description MessageMessage. copyFrom(Message m)Thecopy()method is used as a shorthand throughout the codecase in place of calling a copy constructor.PacketPacket. createClientResponse(Message msg)Creates a responsePacketfrom a request packet (this).MessageContextMessageContextFactory. createContext(Message m)PacketPacket. createResponse(Message msg)Deprecated.Use createClientResponse(Message) for client side and createServerResponse(Message, String) for server side response creation.PacketPacket. createServerResponse(Message responseMessage, AddressingVersion addressingVersion, SOAPVersion soapVersion, String action)Creates a server-side responsePacketfrom a request packet (this).PacketPacket. createServerResponse(Message responseMessage, WSDLPort wsdlPort, SEIModel seiModel, WSBinding binding)Creates a server-side responsePacketfrom a request packet (this).voidPacket. setMessage(Message message)Sets aMessageto this packet.voidPacket. setResponseMessage(Packet request, Message responseMessage, AddressingVersion addressingVersion, SOAPVersion soapVersion, String action)Constructors in com.sun.xml.ws.api.message with parameters of type Message Constructor Description FilterMessageImpl(Message delegate)Packet(Message request) -
Uses of Message in com.sun.xml.ws.api.message.saaj
Methods in com.sun.xml.ws.api.message.saaj that return Message Modifier and Type Method Description static MessageSAAJFactory. create(SOAPMessage saaj)Creates Message from SOAPMessageMessageSAAJFactory. createMessage(SOAPMessage saaj)Creates Message from SOAPMessageMethods in com.sun.xml.ws.api.message.saaj with parameters of type Message Modifier and Type Method Description protected static voidSAAJFactory. addAttachmentsToSOAPMessage(SOAPMessage msg, Message message)static SOAPMessageSAAJFactory. read(SOAPVersion soapVersion, Message message)Reads Message as SOAPMessage.static SOAPMessageSAAJFactory. read(SOAPVersion soapVersion, Message message, Packet packet)Reads Message as SOAPMessage.SOAPMessageSAAJFactory. readAsSOAPMessage(SOAPVersion soapVersion, Message message)Reads Message as SOAPMessage.SOAPMessageSAAJFactory. readAsSOAPMessage(SOAPVersion soapVersion, Message message, Packet packet)Reads Message as SOAPMessage.SOAPMessageSAAJFactory. 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 Modifier and Type Method Description MessageStreamSOAPCodec. decode(XMLStreamReader reader)Reads events fromXMLStreamReaderand constructs aMessagefor SOAP envelope.MessageStreamSOAPCodec. decode(XMLStreamReader reader, AttachmentSet att)Reads events fromXMLStreamReaderand constructs aMessagefor SOAP envelope.MessageThrowableContainerPropertySet. getFaultMessage()Methods in com.sun.xml.ws.api.pipe that return types with arguments of type Message Modifier and Type Method Description static Dispatch<Message>Stubs. createMessageDispatch(WSPortInfo portInfo, WSBinding binding, WSEndpointReference epr)static Dispatch<Message>Stubs. createMessageDispatch(QName portName, WSService owner, WSBinding binding, Tube next, WSEndpointReference epr)Deprecated.Methods in com.sun.xml.ws.api.pipe with parameters of type Message Modifier and Type Method Description voidThrowableContainerPropertySet. 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 Modifier and Type Method Description ObjectResponseBuilder.AttachmentBuilder. readResponse(Message msg, Object[] args)ObjectResponseBuilder.Body. readResponse(Message msg, Object[] args)ObjectResponseBuilder.Composite. readResponse(Message msg, Object[] args)ObjectResponseBuilder.DocLit. readResponse(Message msg, Object[] args)ObjectResponseBuilder.Header. readResponse(Message msg, Object[] args)ObjectResponseBuilder.NullSetter. readResponse(Message msg, Object[] args)abstract ObjectResponseBuilder. readResponse(Message reply, Object[] args)Reads a responseMessage, disassembles it, and moves obtained Java values to the expected places.ObjectResponseBuilder.RpcLit. readResponse(Message msg, Object[] args)protected ObjectResponseBuilder. readWrappedResponse(Message msg, Object[] args) -
Uses of Message in com.sun.xml.ws.commons.xmlutil
Methods in com.sun.xml.ws.commons.xmlutil that return Message Modifier and Type Method Description static MessageConverter. toMessage(InputStream dataStream, 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 Modifier and Type Method Description static byte[]Converter. toBytes(Message message, String encoding)static StringConverter. toString(Message message)static StringConverter. toStringNoIndent(Message message) -
Uses of Message in com.sun.xml.ws.encoding
Methods in com.sun.xml.ws.encoding that return Message Modifier and Type Method Description static MessageStreamSOAPCodec. decode(SOAPVersion soapVersion, XMLStreamReader reader, AttachmentSet attachmentSet)MessageStreamSOAPCodec. decode(XMLStreamReader reader)Decodes a message fromXMLStreamReaderthat points to the beginning of a SOAP infoset.MessageStreamSOAPCodec. decode(XMLStreamReader reader, AttachmentSet attachmentSet)Decodes a message fromXMLStreamReaderthat 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 Modifier and Type Class Description static classXMLMessage.UnknownContentDon't know about this content.static classXMLMessage.XMLMultiPartData represented as a multi-part MIME message.Methods in com.sun.xml.ws.encoding.xml that return Message Modifier and Type Method Description MessageXMLMessage.UnknownContent. copy()MessageXMLMessage.XMLMultiPart. copy()static MessageXMLMessage. create(Exception e)static MessageXMLMessage. create(String ct, InputStream in, WSFeatureList f)static MessageXMLMessage. create(DataSource ds, WSFeatureList f)static MessageXMLMessage. create(Source source)Methods in com.sun.xml.ws.encoding.xml with parameters of type Message Modifier and Type Method Description static DataSourceXMLMessage. getDataSource(Message msg, WSFeatureList f) -
Uses of Message in com.sun.xml.ws.fault
Methods in com.sun.xml.ws.fault that return Message Modifier and Type Method Description static MessageSOAPFaultBuilder. createSOAPFaultMessage(SOAPVersion soapVersion, CheckedExceptionImpl ceModel, 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 MessageSOAPFaultBuilder. createSOAPFaultMessage(SOAPVersion soapVersion, CheckedExceptionImpl ceModel, Throwable ex, QName faultCode)Create the Message with the specified faultCodestatic MessageSOAPFaultBuilder. createSOAPFaultMessage(SOAPVersion soapVersion, String faultString, QName faultCode)Server runtime will call this when there is some internal error not resulting from an exception.static MessageSOAPFaultBuilder. createSOAPFaultMessage(SOAPVersion soapVersion, SOAPFault fault)static MessageSOAPFaultBuilder. createSOAPFaultMessage(SOAPVersion soapVersion, ProtocolException ex, QName faultcode)Methods in com.sun.xml.ws.fault with parameters of type Message Modifier and Type Method Description static SOAPFaultBuilderSOAPFaultBuilder. create(Message msg)Parses a faultMessageand returns it as aSOAPFaultBuilder. -
Uses of Message in com.sun.xml.ws.handler
Methods in com.sun.xml.ws.handler that return Message Modifier and Type Method Description MessageMessageHandlerContextImpl. getMessage()Methods in com.sun.xml.ws.handler with parameters of type Message Modifier and Type Method Description voidMessageHandlerContextImpl. setMessage(Message message) -
Uses of Message in com.sun.xml.ws.message
Subclasses of Message in com.sun.xml.ws.message Modifier and Type Class Description classAbstractMessageImplPartialMessageimplementation.classDOMMessageclassEmptyMessageImplMessagethat has no body.classFaultMessageSOAP Fault message.Methods in com.sun.xml.ws.message that return Message Modifier and Type Method Description MessageDOMMessage. copy()MessageEmptyMessageImpl. copy()MessageAbstractMessageImpl. toSAAJ(Packet p, Boolean inbound)Constructors in com.sun.xml.ws.message with parameters of type Message Constructor Description FaultMessage(Message delegate, QName detailEntryName) -
Uses of Message in com.sun.xml.ws.message.jaxb
Subclasses of Message in com.sun.xml.ws.message.jaxb Modifier and Type Class Description classJAXBDispatchMessageMessagebacked by a JAXB bean; this implementation is used when client uses Dispatch mechanism in JAXB/MESSAGE mode; difference fromJAXBMessageis thatjaxbObjectholds whole SOAP message including SOAP envelope; it's the client who is responsible for preparing message content.classJAXBMessageMessagebacked by a JAXB bean.Methods in com.sun.xml.ws.message.jaxb that return Message Modifier and Type Method Description MessageJAXBDispatchMessage. copy()MessageJAXBMessage. copy()static MessageJAXBMessage. create(BindingContext context, Object jaxbObject, SOAPVersion soapVersion)Creates aMessagebacked by a JAXB bean.static MessageJAXBMessage. create(BindingContext context, Object jaxbObject, SOAPVersion soapVersion, MessageHeaders headers, AttachmentSet attachments)static MessageJAXBMessage. create(XMLBridge bridge, Object jaxbObject, SOAPVersion soapVer)Creates aMessagebacked by a JAXB bean.static MessageJAXBMessage. create(JAXBContext context, Object jaxbObject, SOAPVersion soapVersion)Deprecated.static MessageJAXBMessage. createRaw(JAXBContext context, 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 Modifier and Type Class Description classSAAJMessageMessageimplementation backed bySOAPMessage.Methods in com.sun.xml.ws.message.saaj that return Message Modifier and Type Method Description MessageSAAJMessage. copy()Creates a copy of aMessage. -
Uses of Message in com.sun.xml.ws.message.source
Subclasses of Message in com.sun.xml.ws.message.source Modifier and Type Class Description classPayloadSourceMessageclassProtocolSourceMessageMethods in com.sun.xml.ws.message.source that return Message Modifier and Type Method Description MessageProtocolSourceMessage. copy() -
Uses of Message in com.sun.xml.ws.message.stream
Subclasses of Message in com.sun.xml.ws.message.stream Modifier and Type Class Description classPayloadStreamReaderMessageMessagebacked byXMLStreamReaderas payloadclassStreamMessageMessageimplementation backed byXMLStreamReader.Methods in com.sun.xml.ws.message.stream that return Message Modifier and Type Method Description MessagePayloadStreamReaderMessage. copy()MessageStreamMessage. copy() -
Uses of Message in com.sun.xml.ws.protocol.soap
Methods in com.sun.xml.ws.protocol.soap that return Message Modifier and Type Method Description MessageMessageCreationException. getFaultMessage()MessageVersionMismatchException. getFaultMessage() -
Uses of Message in com.sun.xml.ws.server.provider
Methods in com.sun.xml.ws.server.provider that return Message Modifier and Type Method Description protected abstract MessageProviderArgumentsBuilder. getResponseMessage(Exception e)Creates a faultMessagefrom method invocation's exceptionprotected abstract MessageProviderArgumentsBuilder. getResponseMessage(T returnValue) -
Uses of Message in com.sun.xml.ws.server.sei
Methods in com.sun.xml.ws.server.sei that return Message Modifier and Type Method Description abstract MessageEndpointResponseMessageBuilder. createMessage(Object[] methodArgs, Object returnValue)MessageTieHandler. createResponse(JavaCallInfo call)Methods in com.sun.xml.ws.server.sei with parameters of type Message Modifier and Type Method Description abstract voidMessageFiller. fillIn(Object[] methodArgs, Object returnValue, Message msg)Moves an argument of a method invocation into aMessage.voidMessageFiller.Header. fillIn(Object[] methodArgs, Object returnValue, Message msg)voidEndpointArgumentsBuilder.AttachmentBuilder. readRequest(Message msg, Object[] args)voidEndpointArgumentsBuilder.Body. readRequest(Message msg, Object[] args)voidEndpointArgumentsBuilder.Composite. readRequest(Message msg, Object[] args)voidEndpointArgumentsBuilder.DocLit. readRequest(Message msg, Object[] args)voidEndpointArgumentsBuilder.Header. readRequest(Message msg, Object[] args)voidEndpointArgumentsBuilder.NullSetter. readRequest(Message msg, Object[] args)abstract voidEndpointArgumentsBuilder. readRequest(Message request, Object[] args)Reads a requestMessage, disassembles it, and moves obtained Java values to the expected places.voidEndpointArgumentsBuilder.RpcLit. readRequest(Message msg, Object[] args)Object[]TieHandler. readRequest(Message reqMsg)protected voidEndpointArgumentsBuilder. readWrappedRequest(Message msg, Object[] args) -
Uses of Message in com.sun.xml.ws.wsdl
Fields in com.sun.xml.ws.wsdl declared as Message Modifier and Type Field Description MessageDispatchException. faultConstructors in com.sun.xml.ws.wsdl with parameters of type Message Constructor Description DispatchException(Message fault)
-