|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
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.pipe | Pipe and related abstractions. |
com.sun.xml.ws.client.dispatch | |
com.sun.xml.ws.client.sei | |
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 |
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 |
---|
Methods in com.sun.xml.ws.api.message that return Message | |
---|---|
abstract Message |
Message.copy()
Creates a copy of a Message . |
static Message |
Messages.create(Element soapEnvelope)
Creates a Message from an Element that represents
the whole SOAP message. |
static Message |
Messages.create(JAXBRIContext context,
Object jaxbObject,
SOAPVersion soapVersion)
Creates a Message backed by a JAXB bean. |
static Message |
Messages.create(Marshaller marshaller,
Object jaxbObject,
SOAPVersion soapVersion)
Deprecated. Use Messages.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,
QName faultcode)
To be called to convert a ProtocolException and faultcode for a given SOAPVersion in to a Message . |
static Message |
Messages.create(Source envelope,
SOAPVersion soapVersion)
Creates a Message using Source as entire envelope. |
static Message |
Messages.create(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(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.createEmpty(SOAPVersion soapVersion)
Creates a Message that doesn't have any payload. |
static Message |
Messages.createUsingPayload(Element payload,
SOAPVersion ver)
Creates a Message from an Element that represents
a payload. |
static Message |
Messages.createUsingPayload(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.getMessage()
Gets the last Message set through Packet.setMessage(Message) . |
Methods in com.sun.xml.ws.api.message with parameters of type Message | |
---|---|
Packet |
Packet.createClientResponse(Message msg)
Creates a response Packet from a request packet (this ). |
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,
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. |
Constructors in com.sun.xml.ws.api.message with parameters of type Message | |
---|---|
Packet(Message request)
Creates a Packet that wraps a given 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. |
Methods in com.sun.xml.ws.api.pipe that return types with arguments of type Message | |
---|---|
static javax.xml.ws.Dispatch<Message> |
Stubs.createMessageDispatch(QName portName,
WSService owner,
WSBinding binding,
Tube next,
WSEndpointReference epr)
Creates a new Message -based Dispatch stub that connects to the given pipe. |
Uses of Message in com.sun.xml.ws.client.dispatch |
---|
Methods in com.sun.xml.ws.client.dispatch that return Message | |
---|---|
(package private) Message |
MessageDispatch.toReturnValue(Packet response)
|
Methods in com.sun.xml.ws.client.dispatch with parameters of type Message | |
---|---|
(package private) Packet |
MessageDispatch.createPacket(Message msg)
|
Uses of Message in com.sun.xml.ws.client.sei |
---|
Methods in com.sun.xml.ws.client.sei that return Message | |
---|---|
(package private) abstract Message |
BodyBuilder.createMessage(Object[] methodArgs)
|
(package private) Message |
SEIMethodHandler.createRequestMessage(Object[] args)
Creates a request JAXBMessage from method arguments. |
Methods in com.sun.xml.ws.client.sei with parameters of type Message | |
---|---|
(package private) abstract void |
MessageFiller.fillIn(Object[] methodArgs,
Message msg)
Moves an argument of a method invocation into a Message . |
(package private) void |
MessageFiller.Header.fillIn(Object[] methodArgs,
Message msg)
|
(package private) abstract Object |
ResponseBuilder.readResponse(Message reply,
Object[] args)
Reads a response Message , disassembles it, and moves obtained Java values
to the expected places. |
Object |
ResponseBuilder.None.readResponse(Message msg,
Object[] args)
|
Object |
ResponseBuilder.NullSetter.readResponse(Message msg,
Object[] args)
|
Object |
ResponseBuilder.Composite.readResponse(Message msg,
Object[] args)
|
Object |
ResponseBuilder.AttachmentBuilder.readResponse(Message msg,
Object[] args)
|
Object |
ResponseBuilder.Header.readResponse(Message msg,
Object[] args)
|
Object |
ResponseBuilder.Body.readResponse(Message msg,
Object[] args)
|
Object |
ResponseBuilder.DocLit.readResponse(Message msg,
Object[] args)
|
Object |
ResponseBuilder.RpcLit.readResponse(Message msg,
Object[] args)
|
Uses of Message in com.sun.xml.ws.encoding |
---|
Methods in com.sun.xml.ws.encoding that return Message | |
---|---|
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,
WSBinding binding)
|
static Message |
XMLMessage.create(Exception e)
|
static Message |
XMLMessage.create(Source source)
|
static Message |
XMLMessage.create(String ct,
InputStream in,
WSBinding binding)
Construct a message given a content type and an input stream. |
Methods in com.sun.xml.ws.encoding.xml with parameters of type Message | |
---|---|
static javax.activation.DataSource |
XMLMessage.getDataSource(Message msg,
WSBinding binding)
|
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,
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,
javax.xml.ws.ProtocolException ex,
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,
String faultString,
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()
|
(package private) Message |
MessageUpdatableContext.getPacketMessage()
Updates Message in the packet with user modifications returns the new packet's message |
Methods in com.sun.xml.ws.handler with parameters of type Message | |
---|---|
void |
MessageHandlerContextImpl.setMessage(Message message)
|
(package private) void |
LogicalMessageContextImpl.setPacketMessage(Message newMessage)
|
(package private) void |
MessageHandlerContextImpl.setPacketMessage(Message newMessage)
|
(package private) abstract void |
MessageUpdatableContext.setPacketMessage(Message newMessage)
Sets Message in the packet Any user modifications done on previous Message are lost. |
(package private) void |
SOAPMessageContextImpl.setPacketMessage(Message newMessage)
|
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. |
Methods in com.sun.xml.ws.message that return Message | |
---|---|
Message |
DOMMessage.copy()
|
Message |
EmptyMessageImpl.copy()
|
Constructors in com.sun.xml.ws.message with parameters of type Message | |
---|---|
XMLReaderImpl(Message msg)
|
Uses of Message in com.sun.xml.ws.message.jaxb |
---|
Subclasses of Message in com.sun.xml.ws.message.jaxb | |
---|---|
class |
JAXBMessage
Message backed by a JAXB bean. |
Methods in com.sun.xml.ws.message.jaxb that return Message | |
---|---|
Message |
JAXBMessage.copy()
|
static Message |
JAXBMessage.create(Bridge bridge,
Object jaxbObject,
SOAPVersion soapVer)
Creates a Message backed by a JAXB bean. |
static Message |
JAXBMessage.create(JAXBRIContext context,
Object jaxbObject,
SOAPVersion soapVersion)
Creates a Message backed by a JAXB bean. |
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 |
PayloadStreamReaderMessage.copy()
|
Message |
StreamMessage.copy()
|
Uses of Message in com.sun.xml.ws.protocol.soap |
---|
Methods in com.sun.xml.ws.protocol.soap that return Message | |
---|---|
(package private) Message |
MUTube.createMUSOAPFaultMessage(Set<QName> notUnderstoodHeaders)
This should be used only in ServerMUPipe |
Message |
MessageCreationException.getFaultMessage()
|
Message |
VersionMismatchException.getFaultMessage()
|
Uses of Message in com.sun.xml.ws.server.provider |
---|
Methods in com.sun.xml.ws.server.provider that return Message | |
---|---|
protected Message |
MessageProviderArgumentBuilder.getParameter(Packet packet)
|
protected Message |
MessageProviderArgumentBuilder.getResponseMessage(Exception e)
|
protected abstract Message |
ProviderArgumentsBuilder.getResponseMessage(Exception e)
Creates a fault Message from method invocation's exception |
protected Message |
MessageProviderArgumentBuilder.getResponseMessage(Message returnValue)
|
protected abstract Message |
ProviderArgumentsBuilder.getResponseMessage(T returnValue)
|
Methods in com.sun.xml.ws.server.provider with parameters of type Message | |
---|---|
protected Message |
MessageProviderArgumentBuilder.getResponseMessage(Message returnValue)
|
Uses of Message in com.sun.xml.ws.server.sei |
---|
Fields in com.sun.xml.ws.server.sei declared as Message | |
---|---|
(package private) Message |
DispatchException.fault
|
Methods in com.sun.xml.ws.server.sei that return Message | |
---|---|
(package private) abstract Message |
EndpointResponseMessageBuilder.createMessage(Object[] methodArgs,
Object returnValue)
|
Methods in com.sun.xml.ws.server.sei with parameters of type Message | |
---|---|
(package private) abstract void |
MessageFiller.fillIn(Object[] methodArgs,
Object returnValue,
Message msg)
Moves an argument of a method invocation into a Message . |
(package private) void |
MessageFiller.Header.fillIn(Object[] methodArgs,
Object returnValue,
Message msg)
|
(package private) abstract void |
EndpointArgumentsBuilder.readRequest(Message request,
Object[] args)
Reads a request Message , disassembles it, and moves obtained
Java values to the expected places. |
void |
EndpointArgumentsBuilder.None.readRequest(Message msg,
Object[] args)
|
void |
EndpointArgumentsBuilder.NullSetter.readRequest(Message msg,
Object[] args)
|
void |
EndpointArgumentsBuilder.Composite.readRequest(Message msg,
Object[] args)
|
void |
EndpointArgumentsBuilder.AttachmentBuilder.readRequest(Message msg,
Object[] args)
|
void |
EndpointArgumentsBuilder.Header.readRequest(Message msg,
Object[] args)
|
void |
EndpointArgumentsBuilder.Body.readRequest(Message msg,
Object[] args)
|
void |
EndpointArgumentsBuilder.DocLit.readRequest(Message msg,
Object[] args)
|
void |
EndpointArgumentsBuilder.RpcLit.readRequest(Message msg,
Object[] args)
|
Constructors in com.sun.xml.ws.server.sei with parameters of type Message | |
---|---|
DispatchException(Message fault)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |