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
0 answers

soap wsdl connection refused error (111)

I got this error upon trying to connect nusoap api for sugarcrm 6.4.3 wsdl error: Getting http://url:8080/soap.php?wsdl - HTTP ERROR: Couldn't open socket, connection to server http://url:8080/soap.php?wsdl, Error (111): Connection refused so is…
Subash
  • 3,128
  • 6
  • 30
  • 44
0
votes
2 answers

Getting HTTP 500 Internal Server Error, Webservice PHP/NuSOAP on resultset with more than 1000 rows

I handle a small webservice with two methods, everything is running great until the resulset returns more than 1000 rows. I know I have to put some code here, but the project is very confidential, so I put only basic Nosuap object…
Vic Abreu
  • 500
  • 4
  • 12
0
votes
2 answers

NUSoap - calling a method with typed arrays as a parameter

I am using the NuSoap library to call a WCF web service. I am stuck when calling a particular web method that has a typed array as one of it parameters. When calling the web method via SOAP UI. I have something like this (and it…
Gabriel Spiteri
  • 4,896
  • 12
  • 43
  • 58
0
votes
1 answer

Is there a way to get the registered function names in php nusoap library?

I want to get the registered function names in an array. Is it possible? It will be great if I can get that array from my client side code.
gvm
  • 1,153
  • 3
  • 12
  • 19
0
votes
2 answers

NuSOAP on XAMPP with PHP5: failed to open stream

Hey guys, I have a problem (again). This time I am trying to use NuSoap w/ XAMPP 1.7.1 which includes PHP5 and MySQL ... I wrote a soap-client:
doro
  • 785
  • 3
  • 11
  • 23
0
votes
1 answer

Is there a default limit on request message size in NuSoap?

Is there a default limit on request message size in NuSoap? I am asking this because when I send CSV data with size 194 KB using NuSOAP client to a NuSOAP server I get the following response from the server. HTTP/1.1 100 Continue HTTP/1.0 500…
Abdul
  • 399
  • 5
  • 15
0
votes
1 answer

nuSOAP: Header Authentication on server side

Can any one please advice how to parse nuSOAP headers and checking the username/password/Signature from the below SOAP Request testuser
Prabhu M
  • 2,852
  • 8
  • 37
  • 54
-1
votes
1 answer

Create Web Service with SOAP update to Database with PHP

I want to create web service for update database by SOAP wsdl I try these code: require_once('dbconn.php'); require_once('lib/nusoap.php'); $server = new nusoap_server(); function…
Rajes
  • 103
  • 3
  • 14
-1
votes
1 answer

PHP Webservice using nuSoap and mySQL

I'm currently developing a PHP webservice that will be consumed by the Document Management Software DocuWare. Right now it mostly consists of reading the database and getting a value by their ID. The folder for the webservice consists of the…
-1
votes
1 answer

Array to string conversion in nuSoap

i'm trying to get a list of data from my database using a NuSoap web service . But when i execute , i get this error message : Notice: Array to string conversion in C:\wamp64\www\gcm\database.php on line 105 PHP Warning: mysqli_fetch_assoc()…
denzo kx
  • 51
  • 1
  • 6
-1
votes
1 answer

C# soap call on iis7.5 gives The XML-document (1, 542) contains an error

I've got an nusoap based wsdl on Linux which I'm trying to convert to a windows host. The host is freshly installed, so any misconfiguration can apply for the issue. The Host is running IIS7.5 PHP 5.5.3.8 MySQL 5.0.11 The soap request gets the right…
Giancarlo
  • 377
  • 2
  • 6
  • 16
-1
votes
1 answer

Fatal error: Call to undefined function nusoap_client()

I'm trying to consume a soap web service using nusoap and PHP 5.6.25 but I am having some errors. Here is the php code: require_once 'nusoap-0.9.5/lib/nusoap.php'; $client = new…
-1
votes
2 answers

Client server application in nuSOAP

I am new to the programming area and this is my first nusoap-0.9.5 client and server program. Although the the server looks correct the client keeps giving me this warning: PHP Fatal error: SoapClient::SoapClient(): Invalid parameters in…
Thanos
  • 1,618
  • 4
  • 28
  • 49
-2
votes
1 answer

Why PHP Return JSON With """?

I am working with WSDL for my web services. So, I created a WSDL page and add a function. This function is, connect my table and return JSON value. When I call this function other PHP page, I take successful my…
AlpYuktug
  • 178
  • 1
  • 2
  • 13
-3
votes
1 answer

how to insert big data to mysql limit by nusoap only 30 second

I have thousand of data from an webservice . but nusoap limit execution time only 30 second . I can't insert all those data because of this limit . I can't change nusoap setting because is on server . . is there anyway to fix that ? . EDIT 1 i tried…
Billy Adelphia
  • 33
  • 1
  • 1
  • 9
1 2 3
43
44