Questions tagged [nusoap]

NuSOAP is a set of PHP classes to enable the consumption and creation of SOAP web services. NuSOAP is a rewrite of SOAPx4, provided by NuSphere and Dietrich Ayala.

NuSOAP is a set of classes to enable the consumption and creation of web services. NuSOAP is a rewrite of SOAPx4, provided by NuSphere and Dietrich Ayala.

Useful links

646 questions
0
votes
1 answer

How do I send an empty dateTime with NUSOAP?

I'm using NUSOAP on the server-side of a web service. I want to return a null dateTime element, but I'm not sure how. If I return the values false or '' , the result is
Robert Munteanu
  • 67,031
  • 36
  • 206
  • 278
0
votes
1 answer

PHP webservices using nusoap

when i am just trying to develope a simple webservice using Nusoap.when i am executing my server.php it executes and it shows an output of WSDL file and the method which i given.But ,when i try to execute my XML file it shows an error as document…
devi
  • 1
  • 2
0
votes
1 answer

Creating nusoap object inside Magento Event Listener throws exception

In Magento 1.7.0.2, I have created an event listener that triggers every time the application checks the final price of a product (the final code will not trigger on that event, but for testing convenience, I am trying here). The event triggers just…
Muttley75
  • 111
  • 4
0
votes
2 answers

PHP SOAP webservice with NuSOAP gives no result if WSDL is configured

I have a php soap webservice which I've created with using NuSOAP. I use the file 'test.php' to test it in the browser as 'http://www.mydowmain.com:8080/webservice/5/test.php'. My code: webservice.php
Korki Korkig
  • 2,736
  • 9
  • 34
  • 51
0
votes
0 answers

Should i send the variables that WSDL asks or the ones the WebMethod asks?

If i have a C# WebService (it was not me who coded it), that has the following WebMethod: public string getObjetivos(int intUnidadeID, string strMascara, string strdtInicial, string strdtFinal){... and the WSDL file specify just 3 of the variables…
ghaschel
  • 1,313
  • 3
  • 20
  • 41
0
votes
0 answers

Cannot receive any SMS messages when I register/ inquire via SMS Globe Labs API

I am developing an SMS Based Registration System and so far I'm at the stage of testing my system. All of a sudden, I was not able to receive any messages from my server when I tried to register via SMS it must receive a confirmation messages.…
0
votes
1 answer

Using Fixed WSDL file with PHP SOAP

I' developing a Soap Server using php nusoap library, however , I don't need to use dynamic generated WSDL file feature that's generated by nusoap, I just want to tell nuSoap to use the Fixed WSDL file that's written manully by an another team. What…
Abdullah
  • 5,445
  • 10
  • 41
  • 48
0
votes
2 answers

WSDL/Soap web service response complex array parsing using KSOAP2 library

I have created PHP web service using nusoap $namespace="http:/mynamespace.com/mynamespace" $server = new soap_server(); $server->debug_flag = false; $server->configureWSDL("test", $namespace); $server->wsdl->schemaTargetNamespace =…
Dharmik
  • 2,325
  • 3
  • 27
  • 37
0
votes
1 answer

Convert an array of string in php to an user defined data type in nuSOAP

In continuation to the existing question: Can nusoap return array of string? I want to know the code for function GetAllNews() to return string of array $stack as data type "tns:ArrayOfString" Mr. Oliver Salzburg gave the code only for the…
Computer User
  • 2,839
  • 4
  • 47
  • 69
0
votes
2 answers

when nusoap is calling a web service from PHP application, handling timeout issues

I am using nusoap in my PHP application when calling a .net webservice. The issue is, in some cases .net web service is taking more than actual time for some request, so I want to increase the time my SOAP call waits for the response. Is there any…
user1837996
  • 11
  • 1
  • 4
0
votes
3 answers

Is normal a WSDL with a private IP address like SOAP address?

I want to send requests to a .NET webservice through Internet, but the problem is the SOAP address in the WSDL has a private IP address: And when I try to send some request, with…
dayer
  • 63
  • 7
0
votes
1 answer

SOAP and XML Encoding

I'm wondering if anyone has experienced this sort of problem before. We've recently installed the native PHP SOAP extension to replace nuSOAP. We are now experiencing a problem in that some XML appears to contain invalid characters, symptomatic of…
0
votes
1 answer

can't get Nusoap server working with cakephp

I am trying to get nusoap server working with cakephp, the problem I am assuming is that the code is within a class (controller) and nusoap is trying to execute 'function()' instead of '$this->function()'. Does anybody know of a simple workaround…
brndnmg
  • 257
  • 6
  • 21
0
votes
2 answers

How can I parse this response from nusoap to a php variable/array

So having managed to crack getting nusoap to poll the chemspider server for information however I get a response that will display using print_r but when using print will simply display Array. My question is this really, how do I take the given…
Andrew Bailey
  • 3
  • 1
  • 1
  • 3
0
votes
1 answer

how to define nested array structure, when I use addComplexType function?

I searched many examples. But I can't find how to define nested array structure, which is not key=>value type. client call 'hello' function with array, which is not key=>value type. I can't touch input parameters from client side. client…
Alice Kim
  • 1
  • 1