-
I know the thread's old but, here's my .20
after declaring:
$client = new SoapClient(...[snipped]...)
try{
echo "\n";
You should instead, use:
$client = new nusoap_client('WSDL_URL_GOES_HERE', "true");
try{
echo "\n";
oh and before you call a method, you should also be aware that you have to call the proxy, like this:
$proxy...
2009-11-13 12:07:42 UTC by Carlos
-
Here's a patch for 0.7.2
http://www.clintpriest.com/2009/11/patch-for-nusoap-0-7-2-for-php-5-3-x/.
2009-11-09 02:11:08 UTC by http://www.clintpriest.com
-
Hi, I am facing a similar problem. My nusoap based client needs to send a complex XML as parameter to a .NET based web service. Can you please tell me how you were able to do it ? I need help with how to conjure up the params array.
Thanks a lot.
2009-11-05 19:01:35 UTC by gautam92in
-
Nevermind, I worked around it.
2009-11-04 21:41:36 UTC by slagarnz
-
Hi there, I can use NuSOAP for simple cases, but I'm not that well versed in it, and could use a little help on this one.
I'm creating a WSDL client, and connecting to a java server. I can create requests just fine using $client->call('function_name', $params_array).
The problem is, the XML I'm sending is fairly complex, and I'm having trouble creating the $params_array (where our...
2009-11-03 20:51:39 UTC by slagarnz
-
Hello,
In the method my webservice (on the server) side, I want to report an error to the caller by using nusoap_fault class.
So I write something like this:
... return new nusoap_fault("SERVER", '', "Fault description");
And I get Internal Server Error returned to the client. When I see error log on a hosting I see:
" FastCGI: comm with server...
2009-11-03 01:42:43 UTC by pashkatlt
-
I have one web service which uses a complextype to return a group of columns from one row in a database table, but now I want to have another service which returns multiple rows. This sounds like a complextype within a complextype, but I haven't the faintest idea how to do it.
As well as knowing the correct WSDL I would like to know how to input the details into the soapserver so that it will...
2009-10-31 23:50:23 UTC by tonymarston
-
the version proposed by **ANexus** is very good, but it needs some changes to be perfect :
replace `if(preg_match('/^(ISO-8859-1|US-ASCII|UTF-8)$/',$enc))` by `if(preg_match('/^(ISO-8859-1|US-ASCII|UTF-8)$/i',$enc))` in line 7328, 3757, 4217 and 7509.
replace `if (isset($this->methodreturn) && ((get_class($this->methodreturn) == 'soap_fault') || (get_class($this->methodre.
2009-10-31 23:30:11 UTC by tantaoui
-
I found another problem, i don't know if it is caused by PHP 5.3 version , but when my web service function returns a string i got this error in the soap envelope:
" get_class() expects parameter 1 to be object, string given in <b>C:\wamp\www\prova\lib\nusoap.php</b> on line <b>4021</b>"
I guess it is cause by the get_class function that is applied to a string...
2009-10-27 21:12:49 UTC by stefanobozzoni
-
hi first of all sorry for mi rusty english.
I make a WS server for handle travels, of track from me client, and this ws send information to a WS in .net server i dont have problem whit that but the problem become, when from when track gps enterprise WS have send me information, i make this script (i paste the code more down), and i test whit a nusoap client, dont have problem for recive the...
2009-10-26 19:49:32 UTC by jarancibia