NetTalk Central

The Rest Of NetTalk => The Rest - Ask For Help => Topic started by: Poul on May 30, 2013, 06:44:21 AM

Title: NetwebClient examining the PACKET.
Post by: Poul on May 30, 2013, 06:44:21 AM
is there a a method or property or technique  to see the
the entire request Packet thats about to be posted - before/after its posted.
(not just the poststring)
Title: Re: NetwebClient examining the PACKET.
Post by: Bruce on May 31, 2013, 03:48:16 AM
the outgoing string is passed through the .Send method - although it might not all be in one packet. So, for example, the easiest place to "see" the outgoing stuff is to inspect self.packet.bindata inside Send, before the parent call.

Cheers
Bruce
Title: Re: NetwebClient examining the PACKET.
Post by: Poul on May 31, 2013, 07:53:46 AM
thanks, that works fine.