Oracle Fusion Middleware
Oracle WebLogic Server API Reference
12c Release 1 (12.1.1)

Part Number E24391-02

weblogic.wsee.async
Interface AsyncSOAPInvokeState

All Superinterfaces:
Externalizable, Serializable

public interface AsyncSOAPInvokeState
extends Externalizable

Represents a stored/pending asynchronous SOAP operation invocation. Objects implementing this interface are placed on the buffering (WS-RM or just async) queue during processing. This is done to maintain the state of the invocation while decoupling the caller from the actual work for the invocation. Customers can use this interface to interrogate failed async messages that they have accumulated in an error queue associated with the buffering queue (if any, and max retries is set on the buffering queue).


Method Summary
 SOAPMessage getClonedSOAPMessage()
          Get a clone of the request SOAPMessage for this invocation.
 Map getMessageContextProperties()
          Get a map of property name to property value representing the properties stored in the JAX-RPC message context at the time this invocation was transferred/stored to the buffer queue.
 String getServiceURI()
          Get the URI for the service that stored this async SOAP invocation state
 SOAPMessage getSOAPMessage()
          Get the SOAPMessage that acts as the request for the current operation invocation.
 boolean isSoap12()
          Is this invocation using the SOAP 1.2 protocol.
 
Methods inherited from interface java.io.Externalizable
readExternal, writeExternal
 

Method Detail

getSOAPMessage

SOAPMessage getSOAPMessage()
Get the SOAPMessage that acts as the request for the current operation invocation.


getClonedSOAPMessage

SOAPMessage getClonedSOAPMessage()
Get a clone of the request SOAPMessage for this invocation.


isSoap12

boolean isSoap12()
Is this invocation using the SOAP 1.2 protocol.


getMessageContextProperties

Map getMessageContextProperties()
Get a map of property name to property value representing the properties stored in the JAX-RPC message context at the time this invocation was transferred/stored to the buffer queue.


getServiceURI

String getServiceURI()
Get the URI for the service that stored this async SOAP invocation state


Copyright 1996, 2011, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Oracle Fusion Middleware
Oracle WebLogic Server API Reference
12c Release 1 (12.1.1)

Part Number E24391-02