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

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 reason for doing this when i can just output any…
brndnmg
  • 257
  • 6
  • 21
0
votes
0 answers

nuSOAP - registering a function that does not return anything?

I'd like my SOAP server to register a function that does not return anything. I tried passing array() as return list, but it didn't work. How can I do that?
d33tah
  • 10,999
  • 13
  • 68
  • 158
0
votes
0 answers

Duplicate Transfers taking place on Windows Server with nuSoap on Linux Server

I have successfully set up nuSoap on a Linux server where a portal is handshaking with a Windows Server of a Vendor. Everything is working fine on our end. Visitors can come from Vendor website and be automatically logged into our portal. But the…
James
  • 561
  • 2
  • 7
  • 19
0
votes
2 answers

AllPosters.com SOAP problematic response

I have a problem with the allposters.com SOAP (http://webservice.allposters.com/). I am trying to fetch some product information via (a slightly modified) nuSOAP PHP library (http://sourceforge.net/projects/nusoap/) on a PHP 5.3 installation. My…
Corneliu
  • 1,110
  • 1
  • 10
  • 16
0
votes
0 answers

Register class function as global

I'd like to register a class method under NuSOAP, but instead of registering it as its member, I'd rather it was in the global scope. Here's some code to picture what I mean (obviously not working): class SOAPInterface { public function…
d33tah
  • 10,999
  • 13
  • 68
  • 158
0
votes
1 answer

Pass objects inside SOAP functions on SOAP Client

I need to call soap WSDL from PHP platform. SOAP request consists of SOAP object inside SOAP body function. Sample working SOAP request is as below,
Sathiska
  • 495
  • 1
  • 6
  • 22
0
votes
1 answer

PHP Web Service NuSOAP complex type

I wrote php web service using NuSOAP and client script. I used array complex type to return an array of complex type, but it's print nothing!! server.php
Saeed Eldah
  • 1
  • 1
  • 2
0
votes
2 answers

Return two types with NuSOAP

I have a working webService using NuSOAP. Now, I have to make a validation before returning the data requested. If everything is ok, I return it normally, otherwise I would like to return a String message explaining why I'm not giving the…
Marco Aurélio Deleu
  • 4,279
  • 4
  • 35
  • 63
0
votes
1 answer

Nusoap, return array of data as XML in web service

I have a PHP soap server (Using nuSoap), and a Java client (using Axis2). Which works pretty good, until it doesn't. The gist of what I'm trying to do is send a code to the service, and return a XML list of file names.…
kevingreen
  • 1,541
  • 2
  • 18
  • 40
0
votes
2 answers

Android- Can`t get ksoap2 to work with my nusoup webservice

Resolved i am trying to resolve this error but i really can`t figure it out, the reason my "transport.call(SOAP_ACTION, envelope);" always gives error. My web service is very simple and i tested it with SoupUI,i build it in php using nusoap. Hope…
Guilherme
  • 79
  • 1
  • 11
0
votes
1 answer

Wsdl curl error 7: couldn't connect to host

I have a PHP website on a linux server. I am using nusoap function from nusphere website for connecting to a eservice gateway. I had no problem for a few months with it, but recently i got the following error. Error: wsdl error: Getting…
clickme please
  • 207
  • 4
  • 9
  • 20
0
votes
1 answer

Tranlate NUSOAP to PHP5's SOAPClient

I cannot get PHP5 there for i try using NUSOAP as alternative as PHP5's SoapClient. How can i translate this PHP5 SoapClient code into NUSOAP? $epay_params = array(); $epay_params['merchantnumber'] = "ENTER YOUR MERCHANT NUMBER…
0
votes
1 answer

request limitation with soap on mantis

i'm trying to do some request with soap on mantis . Something like that : foreach ($tabIdBugToRecup as $value) { $tabBugResponse[$i] = $client->mc_issue_get($username, $password, $value); $i++; } when the…
LedZelkin
  • 586
  • 1
  • 10
  • 24
0
votes
2 answers

PhP Webservices development

I was developing a PhP webservice using NuSOAP library but facing an error. I couldn't understand the error. If anyone knows a solution, please help. Following is my code. ------ server.php ------
Ammar
  • 1,811
  • 5
  • 26
  • 60
0
votes
4 answers

Fire off nusoap from php, don't wait for results

I have a script that currently has a step where I trigger a voice broadcast after a customer signs up. It's a nusoap call to callfire. The latency there is rather high, and it's added about 2 seconds to my sub-second sign up process. As a result,…
bbutle01
  • 521
  • 8
  • 18