Click to See Complete Forum and Search --> : Soap - Php5 - Help


Soap
08-19-2005, 07:09 AM
I have to post 3 strings to a soap server.
username, password and content

Whatever I trie, I always get a blank screen and no response.

Look at this (from soapclient.com)

http://www.edv-weidacher.de/articleimport.jpg

This is one of the code I used.
I tried several snippets I found on the web but with no luck.
------------------------------------------------------------------------------

$client = new SoapClient("...../importarticles.cfc?wsdl", array('trace' => 1));
$param=array(
'username'=>'nobody',
'password'=>'anonymous',
'content'=> $xml
);
echo $client->call('articleimport', $param);


I appreciate any help

Thanks a lot


Soap