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

653 questions
29
votes
8 answers

How can I check whether the server is able to handle SOAP requests

How can I check whether the server is able to handle SOAP requests at run time ? I need to verify it before my script is executing.
phpqa.in
  • 549
  • 2
  • 7
  • 16
24
votes
5 answers

Which is better PHP SOAP or NuSOAP?

Which is better PHP SOAP or NuSOAP ? Please help me out ?
Abdul Vahaf
  • 350
  • 2
  • 3
  • 10
14
votes
11 answers

SOAP: looks like we got no XML document

I'm trying to create a web service but before I do I'm trying to get a simple example that I found on the internet to work first but I keep getting the following error: Fatal error: Uncaught SoapFault exception: [Client] looks like we got no XML…
geoffs3310
  • 12,250
  • 22
  • 61
  • 84
12
votes
11 answers

How to get rid of "Uncaught SoapFault exception: [Client] looks like we got no XML document in..." error

I'm trying to develop business logic for a dynamic site using nusoap on server side (because I need wsdls, and PHP SOAP extension can't generate wsdls), and PHP SOAP extenstion on client side. However, I can't get even login and getRole functions…
Eedoh
  • 4,558
  • 8
  • 32
  • 57
11
votes
3 answers

nusoap simple server

Hi i am using this code for nusoap server but when i call the server in web browser it shows message "This service does not provide a Web description" Here is the code
h_a86
  • 764
  • 6
  • 14
  • 24
10
votes
1 answer

Nusoap "SOAP-ENV: Xml was empty, didn't parse" Message

I'm trying to implement a simple webservice using nusoap. Server:
Istvan
  • 331
  • 2
  • 5
  • 14
9
votes
2 answers

Using NuSoap works on local machine but not server

I've developed some code which uses the NuSoap classes for PHP to call a soap web-service. I'm using NuSoap rather than the PHP 5 native classes mainly because I don't want to add an extra prerequisite when this code is installed on a shared web…
Johnvb
  • 91
  • 2
9
votes
1 answer

How to parse Soap Envelope in Golang ?

I am new to golang and Soap and having trouble in parsing soap msg. 1.I have an Soap message
user
  • 2,298
  • 6
  • 19
  • 24
9
votes
1 answer

return utf-8 (farsi) string from nuSOAP webservice

i wrote a very simple webservice that you can see it's code below: SERVER :
Mohammad Masoudian
  • 3,370
  • 7
  • 23
  • 40
8
votes
1 answer

Generating WSDL with NuSOAP - return struct with various types (int, string, array of structs)

I would like to query some stuffs via SOAP by generating WSDL with NuSOAP. I know there are lots of questions related to the topic, but I didn't have success to adapt the codes to my particular problem. I was successful in generating WSDL code which…
Sk8erPeter
  • 6,392
  • 9
  • 44
  • 67
8
votes
2 answers

Weird behaviour receiving a pdf content from a webservice nusoap

I have created a function that calls a web service for contents of pdf file. The webservice works good. I guess the problem comes when the file is too large. I could fix this same problem on another server who had the same error throw the…
8
votes
1 answer

TLS v1.2 ciphers to use in PHP NUSOAP SoapClient

I want to connect to a server that only supports TLS 1.2. What possible ciphers can I specify to stream context in the PHP NUSOAP SoapClient creation?
Kartins
  • 3,019
  • 2
  • 15
  • 17
8
votes
2 answers

Why use NuSOAP rather than PHP SOAP? Any benefits?

As far as I have scourged the web, I can see an abundance of articles on how to setup NuSOAP and use it to setup a SOAP server and client in PHP. However, none of them seem to point to any advantages of using it than PHP's own native SOAP library.…
YD8877
  • 9,236
  • 18
  • 56
  • 89
8
votes
2 answers

Returning An Array of Objects in PHP Web Service

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', 'struct', 'all', '', array('articleId' =>…
gouwsmeister
  • 218
  • 1
  • 3
  • 10
7
votes
4 answers

How to use nuSOAP for messages with multiple namespaces

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 this:
wilth
  • 695
  • 2
  • 8
  • 19
1
2 3
43 44