NetTalk Central

Author Topic: NetwebClient examining the PACKET.  (Read 9522 times)

Poul

  • Full Member
  • ***
  • Posts: 160
    • View Profile
NetwebClient examining the PACKET.
« 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)

Bruce

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 11204
    • View Profile
Re: NetwebClient examining the PACKET.
« Reply #1 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

Poul

  • Full Member
  • ***
  • Posts: 160
    • View Profile
Re: NetwebClient examining the PACKET.
« Reply #2 on: May 31, 2013, 07:53:46 AM »
thanks, that works fine.