Page 1 of 1

[SOAP-ENV:Client] No Handler found for parameter

Posted: Wed Oct 17, 2007 3:07 am
by niemayd
scottayy | Please use

Code: Select all

,

Code: Select all

and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read:  [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]


Hi everybody,

i just want to connect to a soap-server using https. Everything works fine with the connection, but i'm getting a strange error. There's no error in the wsdl file, as it is used by another programm.
Here's my error:

Code: Select all

SoapFault exception: [SOAP-ENV:Client] No Handler found for parameter in /...../test.php:23 Stack trace: #0 /...../test.php(23): SoapClient->__soapCall('executeSQLQuery', Array) #1
And here my php code:

Code: Select all

$client = new SoapClient("http://somewhere.com/any.wsdl",
		array(	'login'        	=> "name",
				'password'		=> "passw",
				'trace'			=> "1"));
$request = array("param" => "test");
	try{
		$result = $client->__soapCall("executeSQLQuery",array('parameters' => $request));
	}
	catch(SoapFault $e){
		echo "Exception:<br>".$e;
	}
Thanks for any suggestions!


scottayy | Please use

Code: Select all

,

Code: Select all

and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read:  [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]