|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Uses of Message in com.oracle.webservices.impl.encoding |
|---|
| Methods in com.oracle.webservices.impl.encoding that return Message | |
|---|---|
Message |
StreamDecoderImpl.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 | |
|---|---|
Message |
StreamDecoder.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 | |
|---|---|
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 | |
|---|---|
Message |
FilterMessageImpl.copy()
|
abstract Message |
Message.copy()
Creates a copy of a Message. |
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(Element soapEnvelope)
Creates a Message from an Element that represents
the whole SOAP message. |
static Message |
Messages.create(JAXBContext context,
Object jaxbObject,
SOAPVersion soapVersion)
Deprecated. |
static Message |
Messages.create(Marshaller marshaller,
Object jaxbObject,
SOAPVersion soapVersion)
Deprecated. Use #create(JAXBRIContext, Object, SOAPVersion) |
static Message |
Messages.create(SOAPFault fault)
Creates a fault Message. |
static Message |
Messages.create(SOAPMessage saaj)
Creates a Message backed by a SAAJ SOAPMessage object. |
static Message |
Messages.create(SOAPVersion soapVersion,
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(XMLStreamBuffer xsb)
Creates a Message from XMLStreamBuffer that retains the
whole envelope infoset. |
static Message |
Messages.create(XMLStreamReader reader)
Creates a Message from XMLStreamReader that points to
the start of the envelope. |
static Message |
Messages.createAddressingFaultMessage(WSBinding binding,
Packet p,
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,
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(JAXBContext context,
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(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(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). |
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,
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,
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(SOAPMessage saaj)
Creates Message from SOAPMessage |
Message |
SAAJFactory.createMessage(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(SOAPMessage msg,
Message message)
|
static SOAPMessage |
SAAJFactory.read(SOAPVersion soapVersion,
Message message)
Reads Message as SOAPMessage. |
static SOAPMessage |
SAAJFactory.read(SOAPVersion soapVersion,
Message message,
Packet packet)
Reads Message as SOAPMessage. |
SOAPMessage |
SAAJFactory.readAsSOAPMessage(SOAPVersion soapVersion,
Message message)
Reads Message as SOAPMessage. |
SOAPMessage |
SAAJFactory.readAsSOAPMessage(SOAPVersion soapVersion,
Message message,
Packet packet)
Reads Message as SOAPMessage. |
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(XMLStreamReader reader)
Reads events from XMLStreamReader and constructs a
Message for SOAP envelope. |
Message |
StreamSOAPCodec.decode(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 Dispatch<Message> |
Stubs.createMessageDispatch(QName portName,
WSService owner,
WSBinding binding,
Tube next,
WSEndpointReference epr)
Deprecated. |
static 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 Object |
ResponseBuilder.readResponse(Message reply,
Object[] args)
Reads a response Message, disassembles it, and moves obtained Java values
to the expected places. |
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)
|
protected Object |
ResponseBuilder.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 | |
|---|---|
static Message |
Converter.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 | |
|---|---|
static byte[] |
Converter.toBytes(Message message,
String encoding)
|
static String |
Converter.toString(Message message)
|
static 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,
XMLStreamReader reader,
AttachmentSet attachmentSet)
|
Message |
StreamSOAPCodec.decode(XMLStreamReader reader)
Decodes a message from XMLStreamReader that points to
the beginning of a SOAP infoset. |
Message |
StreamSOAPCodec.decode(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(DataSource ds,
WSFeatureList f)
|
static Message |
XMLMessage.create(Exception e)
|
static Message |
XMLMessage.create(Source source)
|
static Message |
XMLMessage.create(String ct,
InputStream in,
WSFeatureList f)
|
| Methods in com.sun.xml.ws.encoding.xml with parameters of type Message | |
|---|---|
static 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,
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,
Throwable ex,
QName faultCode)
Create the Message with the specified faultCode |
static Message |
SOAPFaultBuilder.createSOAPFaultMessage(SOAPVersion soapVersion,
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,
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()
|
| 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 |
DOMMessage.copy()
|
Message |
EmptyMessageImpl.copy()
|
Message |
AbstractMessageImpl.toSAAJ(Packet p,
Boolean inbound)
|
| Constructors in com.sun.xml.ws.message with parameters of type Message | |
|---|---|
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 | |
|---|---|
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 |
JAXBDispatchMessage.copy()
|
Message |
JAXBMessage.copy()
|
static Message |
JAXBMessage.create(BindingContext context,
Object jaxbObject,
SOAPVersion soapVersion)
Creates a Message backed by a JAXB bean. |
static Message |
JAXBMessage.create(BindingContext context,
Object jaxbObject,
SOAPVersion soapVersion,
MessageHeaders headers,
AttachmentSet attachments)
|
static Message |
JAXBMessage.create(JAXBContext context,
Object jaxbObject,
SOAPVersion soapVersion)
Deprecated. |
static Message |
JAXBMessage.create(XMLBridge bridge,
Object jaxbObject,
SOAPVersion soapVer)
Creates a Message backed by a JAXB bean. |
static Message |
JAXBMessage.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 | |
|---|---|
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.mex.server |
|---|
| Methods in com.sun.xml.ws.mex.server that return Message | |
|---|---|
Message |
MEXEndpoint.invoke(Message requestMsg)
|
| Methods in com.sun.xml.ws.mex.server with parameters of type Message | |
|---|---|
Message |
MEXEndpoint.invoke(Message requestMsg)
|
| Uses of Message in com.sun.xml.ws.protocol.soap |
|---|
| Methods in com.sun.xml.ws.protocol.soap that return Message | |
|---|---|
Message |
MessageCreationException.getFaultMessage()
|
Message |
VersionMismatchException.getFaultMessage()
|
| Uses of Message in com.sun.xml.ws.rx.message.jaxws |
|---|
| Methods in com.sun.xml.ws.rx.message.jaxws that return Message | |
|---|---|
Message |
JaxwsMessage.getJaxwsMessage()
|
Message |
SerializableMessage.getMessage()
|
| Constructors in com.sun.xml.ws.rx.message.jaxws with parameters of type Message | |
|---|---|
SerializableMessage(Message message,
String wsaAction)
|
|
| Uses of Message in com.sun.xml.ws.rx.rm.faults |
|---|
| Methods in com.sun.xml.ws.rx.rm.faults that return Message | |
|---|---|
protected Message |
AbstractSoapFaultException.createSoapFaultMessage(RuntimeContext rc,
boolean attachSequenceFaultElement)
|
| Uses of Message in com.sun.xml.ws.rx.rm.runtime |
|---|
| Methods in com.sun.xml.ws.rx.rm.runtime that return Message | |
|---|---|
Message |
JaxwsApplicationMessage.getJaxwsMessage()
|
| Methods in com.sun.xml.ws.rx.rm.runtime with parameters of type Message | ||
|---|---|---|
abstract void |
WsrmProtocolHandler.appendSequenceHeader(Message jaxwsMessage,
ApplicationMessage message)
|
|
abstract AcknowledgementData |
WsrmProtocolHandler.getAcknowledgementData(Message jaxwsMessage)
|
|
protected String |
WsrmProtocolHandler.getWsaAction(Message message)
|
|
abstract void |
WsrmProtocolHandler.loadAcknowledgementData(ApplicationMessage message,
Message jaxwsMessage)
|
|
abstract void |
WsrmProtocolHandler.loadSequenceHeaderData(ApplicationMessage message,
Message jaxwsMessage)
|
|
protected
|
WsrmProtocolHandler.readHeaderAsUnderstood(String nsUri,
String name,
Message message)
|
|
protected
|
WsrmProtocolHandler.unmarshallMessage(Message message)
Unmarshalls underlying JAXWS Message using JAXB context of a configured RM version |
|
| Uses of Message in com.sun.xml.ws.rx.util |
|---|
| Methods in com.sun.xml.ws.rx.util with parameters of type Message | |
|---|---|
Packet |
Communicator.createRequestPacket(Message message,
String wsaAction,
boolean expectReply)
|
Packet |
Communicator.createResponsePacket(Packet requestPacket,
Message message,
String responseWsaAction)
Creates new response packet based for the supplied request packet with the provided response WS-Addressing action set. |
| Uses of Message in com.sun.xml.ws.security.encoding |
|---|
| Methods in com.sun.xml.ws.security.encoding that return Message | |
|---|---|
Message |
LazyStreamCodec.decode(XMLStreamReader reader)
|
Message |
LazyStreamCodec.decode(XMLStreamReader reader,
AttachmentSet att)
|
| Uses of Message in com.sun.xml.ws.security.message.stream |
|---|
| Subclasses of Message in com.sun.xml.ws.security.message.stream | |
|---|---|
class |
LazyStreamBasedMessage
|
| Methods in com.sun.xml.ws.security.message.stream that return Message | |
|---|---|
Message |
LazyStreamBasedMessage.copy()
Creates a copy of a Message. |
| Uses of Message in com.sun.xml.ws.security.opt.impl |
|---|
| Methods in com.sun.xml.ws.security.opt.impl that return Message | |
|---|---|
Message |
JAXBFilterProcessingContext.getJAXWSMessage()
|
Message |
JAXBFilterProcessingContext.getPVMessage()
|
| Methods in com.sun.xml.ws.security.opt.impl with parameters of type Message | |
|---|---|
void |
JAXBFilterProcessingContext.setJAXWSMessage(Message jaxWsMessage,
SOAPVersion soapVersion)
|
void |
JAXBFilterProcessingContext.setMessage(Message message)
|
void |
JAXBFilterProcessingContext.setPVMessage(Message msg)
|
| Constructors in com.sun.xml.ws.security.opt.impl with parameters of type Message | |
|---|---|
JAXBFilterProcessingContext(String messageIdentifier,
SecurityPolicy securityPolicy,
Message message,
SOAPVersion soapVersion)
|
|
| Uses of Message in com.sun.xml.ws.security.opt.impl.incoming |
|---|
| Subclasses of Message in com.sun.xml.ws.security.opt.impl.incoming | |
|---|---|
class |
VerifiedStreamMessage
Message implementation backed by XMLStreamReader. |
| Methods in com.sun.xml.ws.security.opt.impl.incoming that return Message | |
|---|---|
Message |
VerifiedStreamMessage.copy()
|
Message |
SecurityRecipient.validateMessage(JAXBFilterProcessingContext ctx)
|
| Uses of Message in com.sun.xml.ws.security.opt.impl.message |
|---|
| Subclasses of Message in com.sun.xml.ws.security.opt.impl.message | |
|---|---|
class |
MessageWrapper
|
| Constructors in com.sun.xml.ws.security.opt.impl.message with parameters of type Message | |
|---|---|
SecuredMessage(Message msg,
SecurityHeader sh)
|
|
SecuredMessage(Message msg,
SecurityHeader sh,
SOAPVersion soapVersion)
Creates a new instance of SecuredMessage |
|
SOAPBody(Message message)
|
|
SOAPBody(Message message,
SOAPVersion soapVersion)
Creates a new instance of SOAPBody |
|
| 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(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(Object[] methodArgs,
Object returnValue)
|
Message |
TieHandler.createResponse(JavaCallInfo call)
|
| Methods in com.sun.xml.ws.server.sei with parameters of type Message | |
|---|---|
abstract void |
MessageFiller.fillIn(Object[] methodArgs,
Object returnValue,
Message msg)
Moves an argument of a method invocation into a Message. |
void |
MessageFiller.Header.fillIn(Object[] methodArgs,
Object returnValue,
Message msg)
|
Object[] |
TieHandler.readRequest(Message reqMsg)
|
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.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)
|
protected void |
EndpointArgumentsBuilder.readWrappedRequest(Message msg,
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)
|
|
| Uses of Message in com.sun.xml.wss.jaxws.impl |
|---|
| Methods in com.sun.xml.wss.jaxws.impl that return Message | |
|---|---|
Message |
JAXWSProcessingContext.getMessage()
returns JAXWS Message if present else null. |
Message |
JAXWSProcessingContextImpl.getMessage()
|
protected Message |
SecurityTubeBase.secureOutboundMessage(Message message,
ProcessingContext ctx)
|
protected Message |
SecurityTubeBase.verifyInboundMessage(Message message,
ProcessingContext ctx)
|
| Methods in com.sun.xml.wss.jaxws.impl with parameters of type Message | |
|---|---|
protected void |
SecurityTubeBase.cacheOperation(Message msg)
|
protected List<PolicyAssertion> |
SecurityTubeBase.getInBoundSCP(Message message)
|
protected WSDLBoundOperation |
SecurityTubeBase.getOperation(Message message)
|
protected PolicyMapKey |
SecurityTubeBase.getOperationKey(Message message)
|
protected List<PolicyAssertion> |
SecurityTubeBase.getOutBoundSCP(Message message)
|
protected List<PolicyAssertion> |
SecurityTubeBase.getSecureConversationPolicies(Message message,
String scope)
|
InputStreamMessage |
SecurityServerTube.processInputStream(Message msg)
|
protected Message |
SecurityTubeBase.secureOutboundMessage(Message message,
ProcessingContext ctx)
|
void |
JAXWSProcessingContext.setMessage(Message message)
sets JAXWS Message representation. |
void |
JAXWSProcessingContextImpl.setMessage(Message message)
|
protected Message |
SecurityTubeBase.verifyInboundMessage(Message message,
ProcessingContext ctx)
|
| Uses of Message in com.sun.xml.wss.provider.wsit |
|---|
| Methods in com.sun.xml.wss.provider.wsit that return Message | |
|---|---|
protected Message |
WSITAuthContextBase.secureOutboundMessage(Message message,
ProcessingContext ctx)
|
protected Message |
WSITClientAuthContext.secureOutboundMessage(Message message,
ProcessingContext ctx)
|
protected Message |
WSITClientAuthContext.verifyInboundMessage(Message message,
ProcessingContext ctx)
|
protected Message |
WSITServerAuthContext.verifyInboundMessage(Message message,
ProcessingContext ctx)
|
| Methods in com.sun.xml.wss.provider.wsit with parameters of type Message | |
|---|---|
protected WSDLBoundOperation |
WSITAuthContextBase.cacheOperation(Message msg,
Packet packet)
|
protected List<PolicyAssertion> |
WSITAuthContextBase.getInBoundSCP(Message message)
|
protected WSDLBoundOperation |
WSITAuthContextBase.getOperation(Message message,
Packet packet)
|
protected PolicyMapKey |
WSITAuthContextBase.getOperationKey(Message message)
|
protected List<PolicyAssertion> |
WSITAuthContextBase.getOutBoundSCP(Message message)
|
protected List<PolicyAssertion> |
WSITAuthContextBase.getSecureConversationPolicies(Message message,
String scope)
|
protected Message |
WSITAuthContextBase.secureOutboundMessage(Message message,
ProcessingContext ctx)
|
protected Message |
WSITClientAuthContext.secureOutboundMessage(Message message,
ProcessingContext ctx)
|
protected Message |
WSITClientAuthContext.verifyInboundMessage(Message message,
ProcessingContext ctx)
|
protected Message |
WSITServerAuthContext.verifyInboundMessage(Message message,
ProcessingContext ctx)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||