0
votes
0answers
12 views
Silverlight and NuSoap
I have a problem with a new project, where a silverlight application is to request data from a NuSoap-service. As this integration is rather new to me and unfortunately not many resources concerning …
0
votes
2answers
32 views
nuSoap or Zend Soap?
Hello, I would like to know the differences between nusoap and ZendSoap, which is the best? what benefits and disadvantages of each? Anyone who has used both technologies could make this comparison?
…
0
votes
3answers
556 views
NuSOAP: how to change content-type of request?
When consuming a .NET WCF webservice I get the following response (error):
Unsupported HTTP response status 415
Cannot process the message because the content type 'text/xml; charset=UTF-8'
…
0
votes
2answers
545 views
How to use nuSOAP for messages with multiple namespaces
Hello,
I'm trying to access a WebService using nuSOAP (because I'm bound to PHP4 here) that uses more than 1 namespace in a message. Is that possible?
An example request message would look like …
0
votes
1answer
20 views
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
<due_date …
0
votes
1answer
76 views
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 …
0
votes
1answer
346 views
NuSOAP and response with Array
I've NuSOAP web-server:
...
$server->register('getMembersEvents',
array('date' => 'xsd:string'),
array('Events' => 'tns:Events'),
'urn:my', …
3
votes
3answers
2k views
Moving from NuSOAP to PHP5 SOAP
Hi,
I have been working on a script with PHP4 that relies on NuSOAP. Now, I'm trying to move this to PHP5, and use the buildin support for SOAP there.
$wsdlPath = ""; // I have obviously set …
1
vote
1answer
65 views
Nusoap, server side (php) and client side ASP classic.
Hi there,
I am trying to call a web service
(using nusoap), which work well when
I call it with a php client.
It returns a list of mail address.
(there are plenty of examples around on …
0
votes
2answers
309 views
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 …
3
votes
3answers
143 views
Has anyone succeeded at downloading orders from Amazon Seller Central using PHP?
It looks like this question has been asked before, here and in other places on the web, but I have yet to find any solid documentation on how it's done.
We need a way to pragmatically "suck" orders …
0
votes
0answers
43 views
apache/nusoap returns BAD REQUEST 400 when .htaccess applied
I have a nuoap 0.7.3 webservice installed on APACHE 2 with PHP5. The web service is being consumed from a .net client and all works as long as the folder contents aren't secured with a .htaccess file.
…
0
votes
3answers
141 views
How declare WSDL for PHP function that returns multiple TYPES?
Hi,
I'm writing a PHP web service and one function. I want to set up a web service in PHP. I need to generate the WSDL description for this web service so it's accessible from I.e. visual studio. …
1
vote
1answer
237 views
Returning An Array of Objects in PHP Web Service
Hi,
I want to return an array of article objects in a PHP web service, using nuSOAP v 1.114. This is how I set up the WSDL:
$server->wsdl->addComplexType(
'ArticleType',
'complexType',
…
0
votes
2answers
39 views
Is it necessary to create a “SOAP server” instance?
I am using the nusoap lib with a cakephp app for legacy / compatibility reasons, I was just wondering if it was totally necessary to create an instance of nusoap_server, I can't figure out any obvious …
