php-general | 2004032
Date: 03/31/04
- Next message: Andy B: "[PHP] finding certain dates in the future (again)"
- Previous message: Aidan Lister: "[PHP] Re: plz help"
- In reply to: Robby Russell: "[PHP] PEAR::SOAP"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
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
- Next message: Andy B: "[PHP] finding certain dates in the future (again)"
- Previous message: Aidan Lister: "[PHP] Re: plz help"
- In reply to: Robby Russell: "[PHP] PEAR::SOAP"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

