RE: [SPAM] - RE: [SPAM] - RE: Asynchronous Web service / JMS - Message is from a

2006-06-20 Thread Plorks mail



The Client is going to be a web service, and will pass me (server-side 
web-service) it's endpoint address


I'll extract the Client's endpoint address, then call my server-side web 
service methods.


My server-side web service methods will call methods from other classes.  
These other classes will return the results to the sever-side web service, 
this will then return the results to the Client's ndpoint address.


Is this an incorrect way of doing this?

Webservice will | should not be responsible for sending the response 
message

back , there should be some internal component or a out handler to do that.


Who / what is responsible for returning the reponse?  If i have 
thread.sleeps in my other class methods, the results are returned when the 
thread.sleep has timed out.


I'm not understanding how i get the results to the Client 'eventually'

thanks again for your help








From: "Dhakshinamoorthy, Hariharasudhan" 
<[EMAIL PROTECTED]>

Reply-To: axis-user@ws.apache.org
To: axis-user@ws.apache.org
Subject: RE: [SPAM] - RE: [SPAM] - RE: Asynchronous Web service / JMS - 
Message is from an unknown sen - Found word(s) XXX in the Text body

Date: Tue, 20 Jun 2006 09:25:27 -0400

Yes! the URL of the client will be sent along the request ( SOAP Header)
Concider two things (1) Client being another webservice , or (2) client
having a dynamic page ( written in PHP,ASP,JSP anything)
Option 1 :
Once the response message is generated the server will make a one-way
request to the client's webservice.
Option 2 :
Incase if you don't want a webservice at the client end , then you can 
write

a server-side script (your choice ) this will basically get the xml data
parse it and either store that in a database or use any persisting
mechanism.

Webservice will | should not be responsible for sending the response 
message

back , there should be some internal component or a out handler to do that.



-Original Message-
From: Plorks mail [mailto:[EMAIL PROTECTED]
Sent: Tuesday, June 20, 2006 5:49 PM
To: axis-user@ws.apache.org
Subject: [SPAM] - RE: [SPAM] - RE: Asynchronous Web service / JMS -
Message is from an unknown sen - Found word(s) XXX in the Text body




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 a

RE: [SPAM] - RE: [SPAM] - RE: Asynchronous Web service / JMS - Message is from a

2006-06-20 Thread Plorks mail



Webservice will | should not be responsible for sending the response 
message

back , there should be some internal component or a out handler to do that.


Can you give me an example of an internal component / out handler?

many thanks







From: "Dhakshinamoorthy, Hariharasudhan" 
<[EMAIL PROTECTED]>

Reply-To: axis-user@ws.apache.org
To: axis-user@ws.apache.org
Subject: RE: [SPAM] - RE: [SPAM] - RE: Asynchronous Web service / JMS - 
Message is from an unknown sen - Found word(s) XXX in the Text body

Date: Tue, 20 Jun 2006 09:25:27 -0400

Yes! the URL of the client will be sent along the request ( SOAP Header)
Concider two things (1) Client being another webservice , or (2) client
having a dynamic page ( written in PHP,ASP,JSP anything)
Option 1 :
Once the response message is generated the server will make a one-way
request to the client's webservice.
Option 2 :
Incase if you don't want a webservice at the client end , then you can 
write

a server-side script (your choice ) this will basically get the xml data
parse it and either store that in a database or use any persisting
mechanism.

Webservice will | should not be responsible for sending the response 
message

back , there should be some internal component or a out handler to do that.



-Original Message-
From: Plorks mail [mailto:[EMAIL PROTECTED]
Sent: Tuesday, June 20, 2006 5:49 PM
To: axis-user@ws.apache.org
Subject: [SPAM] - RE: [SPAM] - RE: Asynchronous Web service / JMS -
Message is from an unknown sen - Found word(s) XXX in the Text body




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: "r

Re: Asynchronous Web service / JMS

2006-06-20 Thread Plorks mail




Hi thanks for the reply

Only the server-side is java using uisng Axis 1.x, the Client is VB

A way I have thought of implementing this is as follows:

The VB client will call the server-side webservice, telling me it's alive, 
passing a URL in the http header.  Server-side, I will grab the Client URL, 
then call the server-side methods with a thread.sleep and pass the response 
to the Client.


Does this sound do-a-ball?










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: Tue, 20 Jun 2006 09:39:06 -0300

Yep, that's the idea - you can leave your existing web service as is.
That's providing both sides use axis2, but of course a JMS solution
needs Java on both sides anyways.

Now actually all the Message Exchange Protocols (MEP)  are
standardized, and the async pattern follows In-only . So while these
MEP's have limited support in Axis 1.x - if any at all, I just not
sure - any modern soap stack should support it providing they are
following the standards. You'll have to do some research on what
clients you can say you're going to support and if they follow the
MEP's .

HTH,
Robert
http://www.braziloutsource.com

On 6/20/06, Plorks mail <[EMAIL PROTECTED]> wrote:



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
>> >> >>
>> >> >>
>> >> >>
>> >> &

RE: [SPAM] - RE: [SPAM] - RE: Asynchronous Web service / JMS - Message is from an unknown sen - Found word(s) XXX in the Text body

2006-06-20 Thread Dhakshinamoorthy, Hariharasudhan
Yes! the URL of the client will be sent along the request ( SOAP Header) 
Concider two things (1) Client being another webservice , or (2) client
having a dynamic page ( written in PHP,ASP,JSP anything)
Option 1 :
Once the response message is generated the server will make a one-way
request to the client's webservice.
Option 2 :
Incase if you don't want a webservice at the client end , then you can write
a server-side script (your choice ) this will basically get the xml data
parse it and either store that in a database or use any persisting
mechanism.

Webservice will | should not be responsible for sending the response message
back , there should be some internal component or a out handler to do that.



-Original Message-
From: Plorks mail [mailto:[EMAIL PROTECTED]
Sent: Tuesday, June 20, 2006 5:49 PM
To: axis-user@ws.apache.org
Subject: [SPAM] - RE: [SPAM] - RE: Asynchronous Web service / JMS -
Message is from an unknown sen - Found word(s) XXX in the Text body




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://w

RE: [SPAM] - RE: Asynchronous Web service / JMS - Message is from an unknown sen

2006-06-20 Thread James Clinton
URL = endpoint address.

-Original Message-
From: Plorks mail [mailto:[EMAIL PROTECTED] 
Sent: 20 June 2006 13:19
To: axis-user@ws.apache.org
Subject: RE: [SPAM] - RE: Asynchronous Web service / JMS - Message is
from an unknown sen




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#EchoNonBlockingClie
> >> >nt
> >> >
> >> >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:3

Re: Asynchronous Web service / JMS

2006-06-20 Thread robert lazarski

Yep, that's the idea - you can leave your existing web service as is.
That's providing both sides use axis2, but of course a JMS solution
needs Java on both sides anyways.

Now actually all the Message Exchange Protocols (MEP)  are
standardized, and the async pattern follows In-only . So while these
MEP's have limited support in Axis 1.x - if any at all, I just not
sure - any modern soap stack should support it providing they are
following the standards. You'll have to do some research on what
clients you can say you're going to support and if they follow the
MEP's .

HTH,
Robert
http://www.braziloutsource.com

On 6/20/06, Plorks mail <[EMAIL PROTECTED]> wrote:



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: 
>> >> >> >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 m

RE: [SPAM] - RE: Asynchronous Web service / JMS - Message is from an unknown sen

2006-06-20 Thread Plorks mail



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/
>> >> >
>>

RE: [SPAM] - RE: Asynchronous Web service / JMS - Message is from an unknown sender

2006-06-20 Thread Dhakshinamoorthy, Hariharasudhan
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: 
>> >> >> >Subject: RE:  Asynchronous Web service / JMS
>> >&

RE: Asynchronous Web service / JMS

2006-06-20 Thread James Clinton
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: 
>> >> >> >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
&

Re: Asynchronous Web service / JMS

2006-06-20 Thread Plorks mail



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: 
>> >> >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 c

Re: Asynchronous Web service / JMS

2006-06-19 Thread robert lazarski

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: 
>> >> >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

Re: Asynchronous Web service / JMS

2006-06-19 Thread Plorks mail





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: 
>> >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]
>> >
>> >
>

Re: Asynchronous Web service / JMS

2006-06-19 Thread Plorks mail



yes thanks that is what i'm looking for




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: 
>> >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-mai

Re: Asynchronous Web service / JMS

2006-06-19 Thread robert lazarski

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: 
>> >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]



RE: Asynchronous Web service / JMS

2006-06-19 Thread Plorks mail



Cheers for those links, much appreiated



From: "James Clinton" <[EMAIL PROTECTED]>
Reply-To: axis-user@ws.apache.org
To: 
Subject: RE: Asynchronous Web service / JMS
Date: Mon, 19 Jun 2006 13:16:04 +0100

Without JMS

http://www-128.ibm.com/developerworks/webservices/library/ws-webaxis1/in
dex.html

With JMS

http://www-128.ibm.com/developerworks/webservices/library/ws-jms/



-Original Message-
From: Plorks mail [mailto:[EMAIL PROTECTED]
Sent: 19 June 2006 12:43
To: axis-user@ws.apache.org
Subject: RE: Asynchronous Web service / JMS





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: 
>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]



-
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]



Re: Asynchronous Web service / JMS

2006-06-19 Thread Plorks mail




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: 
>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]



RE: Asynchronous Web service / JMS

2006-06-19 Thread James Clinton
Without JMS

http://www-128.ibm.com/developerworks/webservices/library/ws-webaxis1/in
dex.html

With JMS

http://www-128.ibm.com/developerworks/webservices/library/ws-jms/



-Original Message-
From: Plorks mail [mailto:[EMAIL PROTECTED] 
Sent: 19 June 2006 12:43
To: axis-user@ws.apache.org
Subject: RE: Asynchronous Web service / JMS





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: 
>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]



-
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]



Re: Asynchronous Web service / JMS

2006-06-19 Thread robert lazarski

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: 
>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]



RE: Asynchronous Web service / JMS

2006-06-19 Thread Plorks mail




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: 
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]



RE: Asynchronous Web service / JMS

2006-06-19 Thread James Clinton
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]