Date: 2004-12-20T00:56:58
   Editor: DeepalJayasinghe <[EMAIL PROTECTED]>
   Wiki: Apache Web Services Wiki
   Page: FrontPage/Architecture/Client
   URL: http://wiki.apache.org/ws/FrontPage/Architecture/Client

   no comment

Change Log:

------------------------------------------------------------------------------
@@ -52,6 +52,8 @@
 
 === sendAsync Invocation ===
 The service invocation is a void invocation. No return value.
+(Fire and Forget)
+
 {{{
 a -> call.sendAsync(SOAPEnvelope)
 b -> engine.send( ..)
@@ -67,7 +69,7 @@
 call.sendAsync(SOAPEnvelope)
 }}}
 === send Invocation ===
-The service invocation is a void invocation. No return value.
+The service invocation is a void invocation. No return value, But wait for ack 
or SOAP Fault.
 {{{
 a -> call.send(SOAPEnvelope)
 b -> engine.send( ..)
@@ -124,6 +126,7 @@
 {{{
 call.setTargetURL(URL)
 call.setAction(String)
+call.setListenerTransport(�http�, true)
 call.sendReceiveAsync (SOAPEnvelope, Callback)
 }}}
 
@@ -145,7 +148,7 @@
 {{{
 call.setTargetURL(URL)
 call.setAction(String)
-call.setListenerTransport(�http�)
+call.setListenerTransport(�http�, false)
 call.sendReceiveAsync(SOAPEnvelope, Callback)
 }}}
 

Reply via email to