Robby Russell wrote:

I am trying to debug some xml issues with a SOAP/Client-based script.


$sc = new SOAP_Client(...);

is there a way to display the XML it attempts to send the server when I perform a
$sc->call(...)


*back to his google searches*




Just as a note, you might try posting to the php.pear.general group for your PEAR questions - some of the developers help out over there. In any case it looks like you should be able to find the xml message in your transport class's send() method; check the SOAP/Transport directory


SOAP/Transport/HTTP.php

    function &send(&$msg, $options = null)
    {
        print_r($msg);
        ...

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to