Sorry to repost, but I just figured the more eyes the better. I would
really appreciate any WS-RM/Sandesha2 experts that could take a look at
this. Here is a link to the service aar, wsdl, test client, and the
client 
and server config files. http://jonested.tripod.com/

The behavior I'm seeing is the onComplete() method of my callback is
never getting executed (and neither is my web service). The service is a
simple "echo" service (nothing to fancy). 

TIA,
Ted


-----Original Message-----
From: Paul Fremantle [mailto:[EMAIL PROTECTED] 
Sent: Friday, May 11, 2007 11:24 AM
To: axis-user@ws.apache.org
Subject: Re: [Axis2] WS-RM and Axis2 Asynch Client not Returning

Ted

My machine has gone haywire and I'm just rebuilding it (well actually
just backing everything up before rebuilding it). I'll debug this as
soon as I get running.

Paul

On 5/11/07, Ted Jones <[EMAIL PROTECTED]> wrote:
>
>
> In case you have problems accessing the files via these links, you can

> get to them here: http://jonested.tripod.com/ and use 'Save As" to 
> download them.
>
> Thanks,
> Ted
>
>
>  ________________________________
>  From: Ted Jones [mailto:[EMAIL PROTECTED]
> Sent: Friday, May 11, 2007 7:17 AM
>
> To: axis-user@ws.apache.org
> Subject: RE: [Axis2] WS-RM and Axis2 Asynch Client not Returning
>
>
>
> Martin, Paul, Amila, anybody I missed,
>
> Here are links to the service aar, wsdl, test client, and the client 
> and server config files. Hopefully there is some glaring mistake I
have made.
> ;-)
>
> http://jonested.tripod.com/echoClient.java
> http://jonested.tripod.com/client_axis2.xml
> http://jonested.tripod.com/server_axis2.xml
> http://jonested.tripod.com/echo.wsdl
> http://jonested.tripod.com/echo.aar
>
> I am running the client and server on the same machine. For what it's 
> worth, in debug I am seeing multiple threads continually being spawned

> for the client's http simple server (port 6062).
>
> Please let me know if you need more from me.
>
> Thanks,
> Ted
>
>  ________________________________
>  From: Ted Jones [mailto:[EMAIL PROTECTED]
> Sent: Thursday, May 10, 2007 9:37 AM
> To: axis-user@ws.apache.org
> Subject: RE: [Axis2] WS-RM and Axis2 Asynch Client not Returning
>
>
>
> Thanks Amila. I appreciate the input. I am using Dual channel since it

> appeared to be required per this thread:
> http://mail-archives.apache.org/mod_mbox/ws-sandesha-dev/200703.mbox/%
> [EMAIL PROTECTED]
> Is this the case? I am using Sandesha2 1.1 with Axis2 1.1.1.
>
> I have verified your points outlined below. Everything appears
correct.
>
> Martin - I will put together a reproducible test case and post ASAP.
>
> Thanks for your assistance.
> Ted
>
>
>  ________________________________
>
> From: Amila Suriarachchi [mailto:[EMAIL PROTECTED]
> Sent: Thursday, May 10, 2007 12:25 AM
> To: axis-user@ws.apache.org; Martin Gainty
> Subject: Re: [Axis2] WS-RM and Axis2 Asynch Client not Returning
>
>
> Are you using the Dual chanel mode or single chanel?
>
> if you set the setUseSeparateListener your request comes in a 
> different http chanel than you send the request. Otherwise it comes in
the same chanel.
>
> In the dual chanel model, What happens is your client starts a simple 
> http server on your machine and set the ReplyTo addressing header to 
> point to the stated server.
>
> So you have to make sure these things.
> 1. you must have engage the Addressing. (otherwise server won't be 
> able to find the reply location) 2. client uses the port and the host 
> name you have specified in the axis2.xml to start its simple http 
> server and set this address to replyTo filed. So you have to use two 
> seperate axis2.xml files for client and the server with different port

> numbers if you run them both in one machine.
>
> 3. if your server is in out side your firewall, the host name you 
> specify in the client axis2.xml should be able to access from the out 
> side the firewall.
>
>
>
> On 5/10/07, Martin Gainty <[EMAIL PROTECTED]> wrote:
> > Good Evening
> >
> > if you publish your wsdl we can run the client code
> >
> > Thanks
> > Martin--
> > This email message and any files transmitted with it contain 
> > confidential information intended only for the person(s) to whom 
> > this email message is addressed.  If you have received this email 
> > message in error, please
> notify
> > the sender immediately by telephone or email and destroy the 
> > original message without making a copy.  Thank you.
> >
> > ----- Original Message -----
> > From: "Ted Jones" <[EMAIL PROTECTED]>
> > To: <axis-user@ws.apache.org>
> > Sent: Wednesday, May 09, 2007 7:10 PM
> > Subject: RE: [Axis2] WS-RM and Axis2 Asynch Client not Returning
> >
> >
> > So, I'm guessing that the message is never reaching the server. 
> > Which may explain why there is no logging? I can see in debug where 
> > the
> > Sandesha2 logic is hit and the message is sent but I never see any 
> > sequences or other message traffic and my client is left polling 
> > forever waiting for the callback to complete.
> >
> > Any other thoughts on what might be happening here or where else I 
> > can look?
> >
> > Thanks,
> > Ted
> >
> > -----Original Message-----
> > From: Ted Jones [mailto:[EMAIL PROTECTED]
> > Sent: Wednesday, May 09, 2007 10:27 AM
> > To: axis-user@ws.apache.org
> > Subject: RE: [Axis2] WS-RM and Axis2 Asynch Client not Returning
> >
> > Thanks for all the responses. This is a great mailing list.
> >
> > I am not seeing any messages in TCPMON or in the logs. :-(
> >
> > Question: How can you configure TCPMON to capture messages sent to 
> > SimpleHTTPServer? I get a port bind exception.
> >
> > Also, I cannot seems to get logging working with Sandesha2. If 
> > anyone has it working, I would really appreciate a peek at their 
> > log4j.properties.
> >
> > Thanks!
> > Ted
> >
> > -----Original Message-----
> > From: Samisa Abeysinghe [mailto:[EMAIL PROTECTED]
> > Sent: Tuesday, May 08, 2007 11:12 PM
> > To: axis-user@ws.apache.org
> > Subject: Re: [Axis2] WS-RM and Axis2 Asynch Client not Returning
> >
> > Ted Jones wrote:
> >
> > > I am using Sandesha2 with an asynch Axis2 client. Using the 
> > > example that comes with Sandesha2 (the asynch echo client), the 
> > > onComplete() method of my callback is never hit. It appears the 
> > > response is not returning.
> > >
> > > Any ideas?
> >
> > Did you try capturing message sequences with TCPMON and chek the 
> > message sequence?
> >
> > Also, have a look into the server and client logs.
> >
> > Samisa...
> >
> >
> >
> ---------------------------------------------------------------------
> > 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]
> >
> >
> >
> ---------------------------------------------------------------------
> > 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]
> >
> >
>
>
>
> --
> Amila Suriarachchi,
> WSO2 Inc.


--
Paul Fremantle
VP/Technology, WSO2 and OASIS WS-RX TC Co-chair

http://bloglines.com/blog/paulfremantle
[EMAIL PROTECTED]

"Oxygenating the Web Service Platform", www.wso2.com

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

Reply via email to