in reply to Watching SOAP

Should have read those module docs :) SOAP::Lite contains SOAP::Trace, which allows you to trace and debug messages:
use SOAP::Lite +trace => [transport debug headers etc.];

-Mark

Replies are listed 'Best First'.
Re^2: Watching SOAP
by synistar (Pilgrim) on Oct 27, 2004 at 13:57 UTC

    SOAP::Lite's trace function is useful but its sometimes difficult to use its very verbose dumps. Another solution that would give you some more flexibility is using a logging HTTP proxy (see HTTP::Proxy).

Re^2: Watching SOAP
by Your Mother (Archbishop) on Oct 27, 2004 at 03:10 UTC

    I am embarrassed to admit I didn't get that far into the POD before starting to code. Thank you for the very politely, and correctly, implied RTFM.