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
2
votes
2 answers

Sending a Image or other data in nuSoap

How to send a image or a file using the web service to the server ?
Sudantha
  • 15,684
  • 43
  • 105
  • 161
2
votes
4 answers

Need help building a webservice called Nusoap

Been having major issues trying to solve this issue, I'll be happy to give a +500 bounty to someone who can help me get this work. Basically, I'm trying to call this web service using…
Ali
  • 261,656
  • 265
  • 575
  • 769
2
votes
1 answer

Where is SugarFullTest_Version2.php? (Sugar CRM and SOAP)

In regards to using SOAP to connect to Sugar CRM, the documentation for Sugar 6.1 Community Edition states: "See /examples/SugarFullTest_Version2.php for more examples on…
2
votes
1 answer

How to deal with the 'DataSet' data structure in php?

I'm trying to do a call to a soap webservice from php. The webservice returns an ADO.NET DataSet structure. Are there any libraries in PHP that can deal with this sort of data structures? If so, what are they called and where can I find them? If…
cxjah
  • 21
  • 2
2
votes
1 answer

How to set Header while registering SOAP web service?

I am creating SOAP web service for client using nusoap lib(in PHP). Below is my code:
Mak_091
  • 187
  • 1
  • 2
  • 14
2
votes
1 answer

Sending schema with nusoap in PHP to .NET webservice

Not sure what my question is here but I need some pointers. This is part of a guide for sending Insurance policy information to a webservice to get a quote in return. Where 'schema' and 'xml' need to be replaced.
tamewhale
  • 1,011
  • 1
  • 8
  • 15
2
votes
0 answers

converting complex soap xml request to php array to pass it as parameter in nusoap_client

I am writing a php script to call a soap webservice written in java.Before this I used to call service using soap UI with xml request and it used to work.but when I am trying to invoke service from php it is throwing error as it is not able to…
Harsha
  • 87
  • 1
  • 14
2
votes
1 answer

PHP webservice for c# application

I want to create a php webservice server to be used from a C# application. I want to have a library who autogenerate wsdl file for easy management (That's the reason why I choosed NuSoap). I tried to use nusoap on PHP5. I have some problems with…
hotips
  • 2,575
  • 7
  • 42
  • 59
2
votes
2 answers

How the nusoap return array?

I write server.php as below: require_once("lib/nusoap.php"); require_once("connect.php"); $server = new soap_server; $server->configureWSDL('server', 'urn:RM'); $server->wsdl->addComplexType( 'game', 'complexType', 'struct', …
Sonia
  • 21
  • 1
  • 1
  • 2
2
votes
0 answers

How to add 2-nd input value with nusoap?

I have created server based on nusoap library. I can make it work with 1 input value, and it returns string output, but when i want to add additional input for function and nusoap function, it is not working and returning nothing, It is not passing…
Orik0
  • 57
  • 7
2
votes
1 answer

How Can I enforce TLS 1.2 when using nusoap?

I am using nusoap to connect Eway legacy Api. Suddenly Eway enforce TLS 1.2 on their side. So I have set open ssl 1.0 and TLS 1.2 in my server. From that server I am connecting Eway rapid api which is working fine. As both Legacy and Rapid api…
mayan1010
  • 23
  • 4
2
votes
2 answers

Converting a PHP array to a SOAP structure

I'm picking up an old project that uses SOAP and WSDL, something that I'm not too familiar with. I have the following data structure defined in the WSDL (simplified in this example):
SteveEdson
  • 2,485
  • 2
  • 28
  • 46
2
votes
2 answers

How to make nuSoap work with CakePHP?

I have already put nusoap folder in cakephp vendor folder ../vendor/nusoap/lib/nusoap.php (it has more than one files) I'm trying to include it as following but not working. What are the other alternatives? App::import('vendor','nusoap');
Sharjeel
  • 15,588
  • 14
  • 58
  • 89
2
votes
1 answer

XML error parsing SOAP payload on line 2: Invalid document end

I'm new to web services.To learn about web services, I'm trying to create a web service that first has a login function which sets session. but when I want to use the information saved in session, I see this error: "XML error parsing SOAP payload on…
M. Green
  • 39
  • 4
2
votes
1 answer

Querying on Leads Status in SugarCRM Using NuSOAP

I'm trying to get back an entry list of leads by status. The query I'm using is "leads.status = 'New'" however when I try this in php, I get back leads of other statuses as well. function get_leads_over_x_days($session_id, $days) { …
James
  • 6,471
  • 11
  • 59
  • 86