when you say A invokes B (sending URL),

what do you mean by this?  sorry for me not getting this


server-side - a very basic method

public static string getString(string s){retun "hello "+s;}

create this as a webservice location = http://localhost:8080/myservice/services/test

Client invokes the webservice sending the Clients URL along with the server-side method it is calling in the http header?

Server responds with an ID, Client now knows server-side received request?

Client can carry on ?

Server-side method - how will this change, will it have a thread.sleep(xxx)? so like this

getString (String s
{
try
(
thread.sleep(xxx);
)
.....
return "helllo " +s;
)

when it's finished i will send the result (response) back to the Clients URL?
















From: "Dhakshinamoorthy, Hariharasudhan" <[EMAIL PROTECTED]>
Reply-To: axis-user@ws.apache.org
To: axis-user@ws.apache.org
Subject: RE: [SPAM] - RE: Asynchronous Web service / JMS - Message is from an unknown sender
Date: Tue, 20 Jun 2006 05:28:07 -0400

Incase if the URL is not up what will happen to your response - how will you
send it back to the client say  iam not interested in persisting the
response then ?



-----Original Message-----
From: James Clinton [mailto:[EMAIL PROTECTED]
Sent: Tuesday, June 20, 2006 1:49 PM
To: axis-user@ws.apache.org
Subject: [SPAM] - RE: Asynchronous Web service / JMS - Message is from
an unknown sender


AFAIK you have 2 options.

(1) use a callback feature which is in AXIS 2 only (I think) or

(2) have a web service on each end, comms goes something like:

        A invokes B (sending URL)
        B Responds Indicating Req Received, A un-blocked, B Starts
processing req in separate thread.
        B done processing, invokes A.

-----Original Message-----
From: Plorks mail [mailto:[EMAIL PROTECTED]
Sent: 20 June 2006 08:34
To: axis-user@ws.apache.org
Subject: Re: Asynchronous Web service / JMS




If i write a web service as I have been doing so far, (just a normail
webservice that a client calls and i give it a response)

if a client wants it async - then it's up to the Client to do that.  I
don't
have to re-write my web service?







>From: "robert lazarski" <[EMAIL PROTECTED]>
>Reply-To: axis-user@ws.apache.org
>To: axis-user@ws.apache.org
>Subject: Re: Asynchronous Web service / JMS
>Date: Mon, 19 Jun 2006 13:42:15 -0300
>
>Nope, Axis2 async operations are client side only. Which makes sense,
>as the service is deployed one way and its up to the client to decide
>how to interact with it.
>
>Now in the source distro there are some JMS tests that might do what
>you
>need.
>
>HTH,
>Robert
>http://www.braziloutsource.com/
>
>On 6/19/06, Plorks mail <[EMAIL PROTECTED]> wrote:
>>
>>
>>
>>
>>do you know if there's anything in the userguide for creating async
>>webservice server-side?
>>
>>many thanks
>>
>> >From: "robert lazarski" <[EMAIL PROTECTED]>
>> >Reply-To: axis-user@ws.apache.org
>> >To: axis-user@ws.apache.org
>> >Subject: Re: Asynchronous Web service / JMS
>> >Date: Mon, 19 Jun 2006 12:58:47 -0300
>> >
>> >Take a look here and see if that is what you are looking for:
>> >
>> >http://ws.apache.org/axis2/1_0/userguide3.html#EchoNonBlockingClient
>> >
>> >HTH,
>> >Robert
>> >http://www.braziloutsource.com/
>> >
>> >On 6/19/06, Plorks mail <[EMAIL PROTECTED]> wrote:
>> >>
>> >>
>> >>
>> >>hi Robert,
>> >>
>> >>Which userguide are you referring to / for what version of Axis?
>> >>
>> >>many thanks
>> >>
>> >> >From: "robert lazarski" <[EMAIL PROTECTED]>
>> >> >Reply-To: axis-user@ws.apache.org
>> >> >To: axis-user@ws.apache.org
>> >> >Subject: Re: Asynchronous Web service / JMS
>> >> >Date: Mon, 19 Jun 2006 10:34:41 -0300
>> >> >
>> >> >You do not need JMS in order to do async services. The user guide

>> >> >has examples using a callback that work just fine. JMS from an
>> >> >axis2 standpoint is another transport and has advantages /
>> >> >disadvantages from the callback approach. Although I've used JMS
>> >> >a lot I've never done web services with them, though I have used
>> >> >the callback method
>>as
>> >> >described in the user guide with great success.
>> >> >
>> >> >HTH,
>> >> >Robert
>> >> >http://www.braziloutsource.com/
>> >> >
>> >> >On 6/19/06, Plorks mail <[EMAIL PROTECTED]> wrote:
>> >> >>
>> >> >>
>> >> >>
>> >> >>can you point me to links as i can't find examples.  i'm
>> >> >>obviousy searching for the wrong thing.  i've found documents
>> >> >>expaling what
>>Asynchronous
>> >>ws
>> >> >>are, but no examples
>> >> >>
>> >> >>thanks for your help
>> >> >>
>> >> >>
>> >> >>
>> >> >>
>> >> >>
>> >> >> >From: "James Clinton" <[EMAIL PROTECTED]>
>> >> >> >Reply-To: axis-user@ws.apache.org
>> >> >> >To: <axis-user@ws.apache.org>
>> >> >> >Subject: RE:  Asynchronous Web service / JMS
>> >> >> >Date: Mon, 19 Jun 2006 12:04:48 +0100
>> >> >> >
>> >> >> >Examples on IBM developerWorks site using Axis with and
>> >> >> >without
>>JMS.
>> >> >> >
>> >> >> >-----Original Message-----
>> >> >> >From: Plorks mail [mailto:[EMAIL PROTECTED]
>> >> >> >Sent: 19 June 2006 11:19
>> >> >> >To: axis-user@ws.apache.org
>> >> >> >Subject: Asynchronous Web service / JMS
>> >> >> >
>> >> >> >
>> >> >> >
>> >> >> >
>> >> >> >hi all
>> >> >> >
>> >> >> >can someone help me get started writing a simple asynchronous
>> >> >> >Web service.
>> >> >> >
>> >> >> >i've read loads but highly confused.  do i need JMS?  if so,
>> >> >> >can
>> >>somene
>> >> >> >help
>> >> >> >me set it up (i'm using eclipse and can't find any example of
>>settign
>> >>up
>> >> >> >
>> >> >> >JMS).
>> >> >> >
>> >> >> >To use JMS, do i need anything else:
>> >> >> >
>> >> >> >thanks for any help
>> >> >> >
>> >> >> >______________________________________________________________
>> >> >> >___
>> >> >> >Are you using the latest version of MSN Messenger? Download
MSN
>> >> >> >Messenger
>> >> >> >7.5 today! http://join.msn.com/messenger/overview
>> >> >> >
>> >> >> >
>> >> >>
>> >--------------------------------------------------------------------
>> >-
>> >> >> >To unsubscribe, e-mail: [EMAIL PROTECTED]
>> >> >> >For additional commands, e-mail: [EMAIL PROTECTED]
>> >> >> >
>> >> >> >
>> >> >> >
>> >> >> >-----------------------------------------------------
>> >> >> >THE INFORMATION IN THIS E-MAIL AND IN ANY ATTACHMENTS IS
>>CONFIDENTIAL
>> >> >> >
>> >> >> >AND MAY BE PRIVILEGED OR OTHERWISE PROTECTED FROM DISCLOSURE.
>> >> >> >IF YOU ARE NOT THE INTENDED RECIPIENT AND HAVE RECEIVED IT IN
>>ERROR
>> >>YOU
>> >> >>ARE
>> >> >> >ON NOTICE OF ITS STATUS.
>> >> >> >PLEASE NOTIFY THE SENDER IMMEDIATELY BY RETURN EMAIL AND THEN
>>DELETE
>> >> >>THIS
>> >> >> >EMAIL AND ANY ATTACHMENT FROM YOUR SYSTEM.
>> >> >> >YOU MUST NOT RETAIN, COPY OR USE THIS E-MAIL OR ANY ATTACHMENT

>> >> >> >FOR
>> >>ANY
>> >> >> >PURPOSE, NOR DISCLOSE ALL OR ANY PART OF ITS CONTENTS TO ANY
>> >> >> >OTHER
>> >> >>PERSON:
>> >> >> >
>> >> >> >TO DO SO COULD BE A BREACH OF CONFIDENCE
>> >> >> >
>> >> >> >EMAIL MAY BE SUSCEPTIBLE TO DATA CORRUPTION, INTERCEPTION AND
>> >> >>UNAUTHORISED
>> >> >> >AMENDMENT,
>> >> >> >AND WE DO NOT ACCEPT LIABILITY FOR ANY SUCH CORRUPTION,
>>INTERCEPTION
>> >>OR
>> >> >> >AMENDMENT OR THE CONSEQUENCES THEREOF.
>> >> >> >
>> >> >> >WE MAY MONITOR THE CONTENT OF EMAILS SENT AND RECEIVED VIA OUR
>> >>NETWORK
>> >> >>FOR
>> >> >> >VIRUSES OR UNAUTHORISED USE AND FOR OTHER LAWFUL BUSINESS
>>PURPOSES.
>> >> >> >WE DO NOT ACCEPT RESPONSIBILITY FOR ANY LOSS OR DAMAGE ARISING
>>FROM A
>> >> >>VIRUS
>> >> >> >IN ANY EMAIL OR ATTACHMENT.
>> >> >> >
>> >> >> >-----------------------------------------------
>> >> >> >[EMAIL PROTECTED]
>> >> >> >
>> >> >> >
>> >> >>
>> >--------------------------------------------------------------------
>> >-
>> >> >> >To unsubscribe, e-mail: [EMAIL PROTECTED]
>> >> >> >For additional commands, e-mail: [EMAIL PROTECTED]
>> >> >> >
>> >> >>
>> >> >>________________________________________________________________
>> >> >>_
>> >> >>Are you using the latest version of MSN Messenger? Download MSN
>> >>Messenger
>> >> >>7.5 today! http://join.msn.com/messenger/overview
>> >> >>
>> >> >>
>> >>
>> >>-------------------------------------------------------------------
>> >>--
>> >> >>To unsubscribe, e-mail: [EMAIL PROTECTED]
>> >> >>For additional commands, e-mail: [EMAIL PROTECTED]
>> >> >>
>> >> >>
>> >> >
>> >> >-----------------------------------------------------------------
>> >> >----
>> >> >To unsubscribe, e-mail: [EMAIL PROTECTED]
>> >> >For additional commands, e-mail: [EMAIL PROTECTED]
>> >> >
>> >>
>> >>_________________________________________________________________
>> >>Are you using the latest version of MSN Messenger? Download MSN
>>Messenger
>> >>7.5 today! http://join.msn.com/messenger/overview
>> >>
>> >>
>> >>-------------------------------------------------------------------
>> >>--
>> >>To unsubscribe, e-mail: [EMAIL PROTECTED]
>> >>For additional commands, e-mail: [EMAIL PROTECTED]
>> >>
>> >>
>> >
>> >--------------------------------------------------------------------
>> >-
>> >To unsubscribe, e-mail: [EMAIL PROTECTED]
>> >For additional commands, e-mail: [EMAIL PROTECTED]
>> >
>>
>>_________________________________________________________________
>>The new MSN Search Toolbar now includes Desktop search!
>>http://join.msn.com/toolbar/overview
>>
>>
>>---------------------------------------------------------------------
>>To unsubscribe, e-mail: [EMAIL PROTECTED]
>>For additional commands, e-mail: [EMAIL PROTECTED]
>>
>>
>
>---------------------------------------------------------------------
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]
>

_________________________________________________________________
Are you using the latest version of MSN Messenger? Download MSN
Messenger
7.5 today! http://join.msn.com/messenger/overview


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-----------------------------------------------------
THE INFORMATION IN THIS E-MAIL AND IN ANY ATTACHMENTS IS CONFIDENTIAL

AND MAY BE PRIVILEGED OR OTHERWISE PROTECTED FROM DISCLOSURE.
IF YOU ARE NOT THE INTENDED RECIPIENT AND HAVE RECEIVED IT IN ERROR YOU ARE
ON NOTICE OF ITS STATUS.
PLEASE NOTIFY THE SENDER IMMEDIATELY BY RETURN EMAIL AND THEN DELETE THIS
EMAIL AND ANY ATTACHMENT FROM YOUR SYSTEM.
YOU MUST NOT RETAIN, COPY OR USE THIS E-MAIL OR ANY ATTACHMENT FOR ANY
PURPOSE, NOR DISCLOSE ALL OR ANY PART OF ITS CONTENTS TO ANY OTHER PERSON:

TO DO SO COULD BE A BREACH OF CONFIDENCE

EMAIL MAY BE SUSCEPTIBLE TO DATA CORRUPTION, INTERCEPTION AND UNAUTHORISED
AMENDMENT,
AND WE DO NOT ACCEPT LIABILITY FOR ANY SUCH CORRUPTION, INTERCEPTION OR
AMENDMENT OR THE CONSEQUENCES THEREOF.

WE MAY MONITOR THE CONTENT OF EMAILS SENT AND RECEIVED VIA OUR NETWORK FOR
VIRUSES OR UNAUTHORISED USE AND FOR OTHER LAWFUL BUSINESS PURPOSES.
WE DO NOT ACCEPT RESPONSIBILITY FOR ANY LOSS OR DAMAGE ARISING FROM A VIRUS
IN ANY EMAIL OR ATTACHMENT.

-----------------------------------------------
[EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

____________________________________________
Confidential:  This electronic message and all contents contain information
from Syntel, Inc. which may be privileged, confidential or otherwise
protected from disclosure. The information is intended to be for the
addressee only. If you are not the addressee, any disclosure, copy,
distribution or use of the contents of this message is prohibited.  If you
have received this electronic message in error, please notify the sender
immediately and destroy the original message and all copies.

Confidential: This electronic message and all contents contain information from Syntel, Inc. which may be privileged, confidential or otherwise protected from disclosure. The information is intended to be for the addressee only. If you are not the addressee, any disclosure, copy, distribution or use of the contents of this message is prohibited. If you have recieved this electronic message in error, please notify the sender immediately and destroy the original message and all copies.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


_________________________________________________________________
Are you using the latest version of MSN Messenger? Download MSN Messenger 7.5 today! http://join.msn.com/messenger/overview


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to