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