Uses of Class
org.somda.sdc.dpws.soap.SoapMessage
Packages that use SoapMessage
Package
Description
Basic helpers.
Apache HTTP client implementation.
Hosting service and hosted service information for device and client side (proxies).
SOAP implementation that is tailored to DPWS.
Exceptions that can come up during SOAP processing.
Factories for the soap package.
Design of an interceptor chain to process SOAP messages.
Factories for the SOAP WS-Addressing plugin.
Factories for the SOAP WS-Discovery plugin.
WS-Eventing plugin for SOAP.
Factories for the SOAP WS-Eventing plugin.
Internal WS-Eventing model items.
WS-MetadataExchange plugin for SOAP tailored to DPWS.
WS-Transfer plugin for SOAP tailored to DPWS.
-
Uses of SoapMessage in org.somda.sdc.dpws.helper
Methods in org.somda.sdc.dpws.helper with parameters of type SoapMessageModifier and TypeMethodDescriptionvoidNotificationSourceUdpCallback.onNotification(SoapMessage notification) -
Uses of SoapMessage in org.somda.sdc.dpws.http.apache
Methods in org.somda.sdc.dpws.http.apache that return SoapMessageMethods in org.somda.sdc.dpws.http.apache with parameters of type SoapMessageModifier and TypeMethodDescriptionvoidClientTransportBinding.onNotification(SoapMessage notification) ClientTransportBinding.onRequestResponse(SoapMessage request) -
Uses of SoapMessage in org.somda.sdc.dpws.service
Methods in org.somda.sdc.dpws.service that return SoapMessageModifier and TypeMethodDescriptionHostedServiceTransportBinding.onRequestResponse(SoapMessage request) HostedServiceProxyImpl.sendRequestResponse(SoapMessage request) HostingServiceProxyImpl.sendRequestResponse(SoapMessage request) Methods in org.somda.sdc.dpws.service with parameters of type SoapMessageModifier and TypeMethodDescriptionvoidHostedServiceTransportBinding.onNotification(SoapMessage notification) HostedServiceTransportBinding.onRequestResponse(SoapMessage request) HostedServiceProxyImpl.sendRequestResponse(SoapMessage request) HostingServiceProxyImpl.sendRequestResponse(SoapMessage request) -
Uses of SoapMessage in org.somda.sdc.dpws.soap
Methods in org.somda.sdc.dpws.soap that return SoapMessageModifier and TypeMethodDescriptionSoapUtil.createMessage()Creates an empty SOAP message.SoapUtil.createMessage(String wsaAction) Creates a SOAP message with a specific action and empty body.SoapUtil.createMessage(String wsaAction, Object firstBodyElement) Creates a SOAP message with a specific action and first body element.SoapUtil.createMessage(String wsaAction, String wsaTo) Creates a SOAP message with a specific action and to element.SoapUtil.createMessage(String wsaAction, String wsaTo, Object firstBodyElement) Creates a SOAP message with a specific action, to and first body element.SoapUtil.createMessage(String wsaAction, String wsaTo, Object firstBodyElement, ReferenceParametersType referenceParameters) Creates a SOAP message with a specific action, to, the first body element as well as reference parameters.SoapUtil.createMessage(Envelope envelope) Creates a SOAP message with the given envelope.RequestResponseClient.sendRequestResponse(SoapMessage request) Sends a SOAP request message and waits for the response to be received from the recipient.RequestResponseClientImpl.sendRequestResponse(SoapMessage request) MarshallingService.unmarshal(InputStream is) Unmarshals a SOAP message from an input stream.Unmarshals a SOAP message from a reader.Methods in org.somda.sdc.dpws.soap with parameters of type SoapMessageModifier and TypeMethodDescriptionstatic StringSoapDebug.get(SoapMessage msg) Gets textual representation of a given SOAP message.<T> Optional<T>SoapUtil.getBody(SoapMessage src, Class<T> destType) Tries to retrieve SOAP body element fromSoapMessage.static StringSoapDebug.getBrief(SoapMessage msg) Gets brief textual representation of a given SOAP message.voidMarshallingService.marshal(SoapMessage msg, OutputStream os) Marshals a SOAP message.voidNotificationSink.receiveNotification(SoapMessage notification, CommunicationContext communicationContext) Starts processing of an incoming SOAP notification message.voidNotificationSinkImpl.receiveNotification(SoapMessage notification, CommunicationContext communicationContext) voidRequestResponseServer.receiveRequestResponse(SoapMessage request, SoapMessage response, CommunicationContext communicationContext) Starts processing of an incoming SOAP request message.voidRequestResponseServerImpl.receiveRequestResponse(SoapMessage request, SoapMessage response, CommunicationContext communicationContext) voidNotificationSource.sendNotification(SoapMessage notification) Sends a SOAP notification message.voidNotificationSourceImpl.sendNotification(SoapMessage notification) RequestResponseClient.sendRequestResponse(SoapMessage request) Sends a SOAP request message and waits for the response to be received from the recipient.RequestResponseClientImpl.sendRequestResponse(SoapMessage request) <T> voidSoapUtil.setBody(T element, SoapMessage dest) Stores element in destined SOAP body.voidSoapUtil.setWsaAction(SoapMessage response, String action) Takes a response message and sets the WS-Addressing action header. -
Uses of SoapMessage in org.somda.sdc.dpws.soap.exception
Methods in org.somda.sdc.dpws.soap.exception that return SoapMessageConstructors in org.somda.sdc.dpws.soap.exception with parameters of type SoapMessageModifierConstructorDescriptionSoapFaultException(SoapMessage faultMessage) Constructor that requires an wrapped SOAP fault message.SoapFaultException(SoapMessage faultMessage, Throwable throwable) Constructor that requires a wrapped SOAP fault message plus a nested cause.SoapFaultException(SoapMessage faultMessage, Throwable throwable, AttributedURIType messageId) Constructor that requires a wrapped SOAP fault message plus a nested cause and a messageId.SoapFaultException(SoapMessage faultMessage, AttributedURIType messageId) Constructor that requires an wrapped SOAP fault message and a messageId. -
Uses of SoapMessage in org.somda.sdc.dpws.soap.factory
Methods in org.somda.sdc.dpws.soap.factory that return SoapMessageModifier and TypeMethodDescriptionSoapFaultFactory.createFault(String actionUri, QName code, QName subcode) Creates a fault SOAP message based on an action URI, code and subcode.SoapFaultFactory.createFault(String actionUri, QName code, QName subcode, String reasonText) Creates a fault SOAP message based on an action URI, code, subcode and reason text.SoapFaultFactory.createFault(String actionUri, QName code, QName subcode, String reasonText, Object detail) Creates a fault SOAP message based on an action URI, code, subcode, reason text and arbitrary details.SoapFaultFactory.createReceiverFault(String reasonText) Creates a soap:Receiver fault with a given text.SoapFaultFactory.createSenderFault(String reasonText) Creates a soap:Sender fault with a given text.SoapMessageFactory.createSoapMessage(Envelope envelope) Creates a SOAP message. -
Uses of SoapMessage in org.somda.sdc.dpws.soap.interception
Methods in org.somda.sdc.dpws.soap.interception that return SoapMessageModifier and TypeMethodDescriptionNotificationObject.getNotification()RequestObject.getRequest()RequestResponseObject.getRequest()RequestResponseObject.getResponse()RequestResponseCallback.onRequestResponse(SoapMessage request) Callback that is triggered after an interceptor chain succeeded on the outgoing direction.Methods in org.somda.sdc.dpws.soap.interception with parameters of type SoapMessageModifier and TypeMethodDescriptionvoidClientDispatcher.invokeDispatcher(Direction direction, InterceptorRegistry registry, SoapMessage soapMessage, org.somda.sdc.dpws.soap.interception.InterceptorCallbackType interceptorCallbackObject) Starts dispatching a SOAP message along an interceptor chain.voidServerDispatcher.invokeDispatcher(Direction direction, InterceptorRegistry registry, SoapMessage soapMessage, org.somda.sdc.dpws.soap.interception.InterceptorCallbackType interceptorCallbackObject) Starts dispatching a SOAP message along an interceptor chain.voidNotificationCallback.onNotification(SoapMessage notification) Callback that is triggered after an interceptor chain succeeded on the outgoing direction.RequestResponseCallback.onRequestResponse(SoapMessage request) Callback that is triggered after an interceptor chain succeeded on the outgoing direction.Constructors in org.somda.sdc.dpws.soap.interception with parameters of type SoapMessageModifierConstructorDescriptionNotificationObject(SoapMessage notification) NotificationObject(SoapMessage notification, CommunicationContext communicationContext) RequestObject(SoapMessage request) RequestResponseObject(SoapMessage request, SoapMessage response, CommunicationContext communicationContext) -
Uses of SoapMessage in org.somda.sdc.dpws.soap.wsaddressing.factory
Methods in org.somda.sdc.dpws.soap.wsaddressing.factory that return SoapMessageModifier and TypeMethodDescriptionWsAddressingFaultFactory.createActionNotSupported(String action) Creates an action-not-supported fault.WsAddressingFaultFactory.createMessageInformationHeaderRequired(QName missingHeaderQName) Creates a message-information-header-required fault. -
Uses of SoapMessage in org.somda.sdc.dpws.soap.wsdiscovery.factory
Methods in org.somda.sdc.dpws.soap.wsdiscovery.factory that return SoapMessageModifier and TypeMethodDescriptionWsDiscoveryFaultFactory.createMatchingRuleNotSupported()Creates a MatchingRuleNotSupported fault. -
Uses of SoapMessage in org.somda.sdc.dpws.soap.wseventing
Methods in org.somda.sdc.dpws.soap.wseventing with parameters of type SoapMessageModifier and TypeMethodDescriptionvoidSourceSubscriptionManager.sendToEndTo(SoapMessage endToMessage) Tries to send an end-to message to the event sink.voidSourceSubscriptionManagerImpl.sendToEndTo(SoapMessage endToMessage) -
Uses of SoapMessage in org.somda.sdc.dpws.soap.wseventing.factory
Methods in org.somda.sdc.dpws.soap.wseventing.factory that return SoapMessageModifier and TypeMethodDescriptionWsEventingFaultFactory.createDeliveryModeRequestedUnavailable()Creates DeliveryModeRequestedUnavailable fault messages.WsEventingFaultFactory.createEventSourceUnableToProcess(String reason) Creates EventSourceUnableToProcess fault messages.WsEventingFaultFactory.createFilteringNotSupported()Creates FilteringNotSupported fault messages.WsEventingFaultFactory.createFilteringRequestedUnavailable()Creates FilteringRequestedUnavailable fault messages.WsEventingFaultFactory.createInvalidExpirationTime()Creates InvalidExpirationTime fault messages.WsEventingFaultFactory.createInvalidMessage(String reason, Envelope invalidMessage) Creates InvalidMessage fault messages.WsEventingFaultFactory.createUnableToRenew(String reason) Creates UnableToRenew fault messages.WsEventingFaultFactory.createUnsupportedExpirationType()Creates UnsupportedExpirationType fault messages. -
Uses of SoapMessage in org.somda.sdc.dpws.soap.wseventing.model
Methods in org.somda.sdc.dpws.soap.wseventing.model that return SoapMessageConstructors in org.somda.sdc.dpws.soap.wseventing.model with parameters of type SoapMessageModifierConstructorDescriptionNotification(SoapMessage payload) Constructor that accepts a notification and records the time during construction. -
Uses of SoapMessage in org.somda.sdc.dpws.soap.wsmetadataexchange
Methods in org.somda.sdc.dpws.soap.wsmetadataexchange that return types with arguments of type SoapMessageModifier and TypeMethodDescriptioncom.google.common.util.concurrent.ListenableFuture<SoapMessage>GetMetadataClient.sendGetMetadata(RequestResponseClient requestResponseClient) Sends a WS-MetadataExchange GetMetadata request.com.google.common.util.concurrent.ListenableFuture<SoapMessage>GetMetadataClientImpl.sendGetMetadata(RequestResponseClient requestResponseClient) -
Uses of SoapMessage in org.somda.sdc.dpws.soap.wstransfer
Methods in org.somda.sdc.dpws.soap.wstransfer that return types with arguments of type SoapMessageModifier and TypeMethodDescriptioncom.google.common.util.concurrent.ListenableFuture<SoapMessage>TransferGetClient.sendTransferGet(RequestResponseClient requestResponseClient, String wsaTo) Sends a WS-Transfer Get request.com.google.common.util.concurrent.ListenableFuture<SoapMessage>TransferGetClient.sendTransferGet(RequestResponseClient requestResponseClient, String wsaTo, ReferenceParametersType referenceParameters) Sends a WS-Transfer Get request with reference parameters.com.google.common.util.concurrent.ListenableFuture<SoapMessage>TransferGetClientImpl.sendTransferGet(RequestResponseClient requestResponseClient, String wsaTo) com.google.common.util.concurrent.ListenableFuture<SoapMessage>TransferGetClientImpl.sendTransferGet(RequestResponseClient requestResponseClient, String wsaTo, ReferenceParametersType referenceParametersType)