Re: Service Client sending message multiple times to server

2008-07-10 Thread Supun Kamburugamuva
Hi Andy, I'm not sure how HTTPS stuff work. But please create a Jira so we won't forget the issue. From your mails it seems that you are using an eclipse project for Axis2/C. We really appreciate if you can commit it back to the community as there were few user requests regarding this. Regards,

Re: Service Client sending message multiple times to server

2008-07-10 Thread Andy Karseras
Hi, I'll create the JIRA. Concerning eclipse, I'll gladly commit anything back to the community - what exactly would you require ? Andy On Thu, Jul 10, 2008 at 7:57 AM, Supun Kamburugamuva [EMAIL PROTECTED] wrote: Hi Andy, I'm not sure how HTTPS stuff work. But please create a Jira so we

Re: Service Client sending message multiple times to server

2008-07-10 Thread Supun Kamburugamuva
Hi, It's great to here your commitment. I think you have several options. If the eclipse has a project like VC you can contribute it. If building the Axis2/C project (or using eclipse for developing Axis2/C) is trivial you can provide a step by step guide how to do it. We can add that to our

Re: Service Client sending message multiple times to server

2008-07-09 Thread Supun Kamburugamuva
Hi, If there is anything I can set to show whether duplicate messages are being sent, please let me know. You can use the TCPmon tool. http://ws.apache.org/commons/tcpmon/. Supun..

Re: Service Client sending message multiple times to server

2008-07-09 Thread Andy Karseras
Thanks for the suggestion. Using the tcpmon tool, I can definitely see 2 messages being sent to the server with one call to axis2_svc_client_send_receive(). Uisng Eclipse, I have stepped in debug mode to prove this. Samisa - would you have any ideas or suggestions why this is happening. Could

Re: Service Client sending message multiple times to server

2008-07-09 Thread Andy Karseras
Having stepped through the code, I see the calls to send the message twice being executed. In http_sender_c, the two calls to axis2_http_client_send are made at lines 988 and 1054. Andy On Wed, Jul 9, 2008 at 10:43 AM, Andy Karseras [EMAIL PROTECTED] wrote: Thanks for the suggestion.

Re: Service Client sending message multiple times to server

2008-07-09 Thread Manjula Peiris
On Wed, 2008-07-09 at 11:56 -0400, Andy Karseras wrote: Having stepped through the code, I see the calls to send the message twice being executed. In http_sender_c, the two calls to axis2_http_client_send are made at lines 988 and 1054. This is because you should have specified http

Re: Service Client sending message multiple times to server

2008-07-09 Thread Andy Karseras
Many thanks. So I was using the axis2_options_set_http_auth_info call (as suggested in Axis2/C Manual 16.2) and had the following commented out in the axis2.ml... parameter name=HTTP-Authentication username=application password=wlyVdZZ05D8 locked=true/ When using the method call, 2 messages

Service Client sending message multiple times to server

2008-07-07 Thread Andy Karseras
Hi, It appears that for some reason, the ServiceClient is sending the message twice to the server in a very short time interval (less than 20 milli-secs). The payload remains the same and it is a a re-send rather than a call being made twice. It may be helpful to note that I am using an AXIS2

Re: Service Client sending message multiple times to server

2008-07-07 Thread Samisa Abeysinghe
Andy Karseras wrote: Hi, It appears that for some reason, the ServiceClient is sending the message twice to the server in a very short time interval (less than 20 milli-secs). It sends it twice only if you send it twice. Can you send the client code you are using? Note that, if you are