weblogic.jws
Interface WlwProxySession


public interface WlwProxySession


Method Summary
 String getConversationID()
          Returns the current conversation ID in use by the proxy.
 boolean isStateful()
           
 void setConversationID(String conversationID)
          Sets the conversation ID for future invocations.
 void setStateful(boolean stateful)
          This method determines whether or not the proxy will retain state for the proxied object between invocations.
 

Method Detail

setConversationID

void setConversationID(String conversationID)
Sets the conversation ID for future invocations. This can be set to null when making stateless calls.


getConversationID

String getConversationID()
Returns the current conversation ID in use by the proxy. This value may be null no conversation is active.


setStateful

void setStateful(boolean stateful)
This method determines whether or not the proxy will retain state for the proxied object between invocations. The default action, is to retain state.


isStateful

boolean isStateful()
Returns:
True (default) if state is retained by proxy, false otherwise.