[gsoap] Please help with dumping incoming message.

2010-05-28 Thread Anatoly Pro
Please help with dumping incoming message. I've sent custom generated message to server and wish to dump received soap-message to file, but I don't know how: struct soap soap; soap_init(soap); soap_begin(soap); soap_connect( soap, http://127.0.0.1:8080;, NULL ); soap_begin_send(soap);

Re: [gsoap] Help with dumping incoming soap message

2010-05-28 Thread Anatoly Pro
Thanks, Sebastian! I know this way( Any other ideas? From: Sebastian Unger sebastian.un...@uni-rostock.de To: gsoap@yahoogroups.com gsoap@yahoogroups.com Sent: Thu, May 27, 2010 12:23:07 PM Subject: Re: [gsoap] Help with dumping incoming soap message Hi,

Re: [gsoap] Re: Help with dumping incoming soap message

2010-05-28 Thread Anatoly Pro
I try use soap.frecv and soap.fsend redefinision. So my custom soap.fsend does show something, but soap.frecv is silent((( Is it work only on server-side? - size_t (*default_frecv)(struct soap* soap, char* s, size_t n); int (*default_fsend)(struct soap* soap, const char* s, size_t n);

Re: [gsoap] Re: Help with dumping incoming soap message

2010-06-01 Thread Anatoly Pro
Hi, there! Something wrong because for some reasons RECV.log was not generated in client side (just TEST.log and SENT.log). Web-service successfully accepts connection and answer right (SENT.log has expected data). ps: soap.buf[] has output content as I saw (( Regards.