in reply to SOAP::Lite Question

If I have read this article correctly, with newer SOAP::Lite (>= 0.68), do this:

$soap->default_ns('http://www.someuri.com');
and with older SOAP::Lite (<= 0.67), do this:
$soap->uri('http://www.someuri.com');

Replies are listed 'Best First'.
Re^2: SOAP::Lite Question
by decibel3276 (Initiate) on Jun 05, 2007 at 19:08 UTC
    Neither of these suggestions do what I am looking to do. Is there any way to edit the body of a soap request before it is dispatched?