Tagged Questions

NuSOAP is a rewrite of SOAPx4, provided by NuSphere and Dietrich Ayala. It is a set of PHP classes.

learn more… | top users | synonyms

8
votes
2answers
126 views

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 ...
7
votes
1answer
1k views

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 ...
6
votes
5answers
2k views

How do RESTful and SOAP Web Services differ in practice?

I am implementing web services for a PHP application and am trying to understand what both standard web services and RESTful web services have to offer. My intent is to write wrapper code to abstract ...
4
votes
2answers
548 views

NuSOAP and content type

Can't figure out how to make NuSOAP use UTF-8 for a content type. it keeps spitting out "ISO-8859-1". here's the relevant code bits that I've tried: $soapclient=new soapclient($url1,'wsdl'); ...
4
votes
2answers
5k views

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', ...
4
votes
3answers
459 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 ...
3
votes
1answer
356 views

Sending data arrays in nusoap and PHP

Hope someone can help me with this. I am building nusoap client using the following partial WSDL: <s:element name="SavePrestaPicklist"> <s:complexType> ...
3
votes
1answer
397 views

web service unicode characters dispaly as question marks

I wrote php web service using nusoap and client script. When I fetch the database records via php client unicode records are displaying as ?????????? ???? ???? ("questions marks"). server.php ...
3
votes
1answer
745 views

Switching from NuSoap to PHP5 Soap - need a jumpstart

Here's the call I'm trying to make: <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Header xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> ...
3
votes
2answers
451 views

Problem calling webservice from Silverlight in VisualStudio 2010

Hello i'm trying to consume a WS written in nusoap from Silverlight; when i add WSDL service reference, in VS21010, i see listed all WS functions. I instanciate object in my code behind: ...
3
votes
2answers
3k views

Can nusoap return array of string?

I would like to return an array of string in my web services I've tryed : <?php require_once('nusoap/nusoap.php'); $server = new soap_server(); $server->configureWSDL('NewsService', ...
3
votes
3answers
8k views

Moving from NuSOAP to PHP5 SOAP

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 these ...
3
votes
3answers
8k views

How to invoke a C# web service through PHP?

I've written a web service using ASP.NET (in C#) and I'm attempting to write an example PHP client using NuSOAP. Where I'm tripped up on are examples of how to do this; some show soapval being used ...
2
votes
1answer
66 views

How do I read SOAP reply Envelope by PHP

How do I read the error_code from this SOAP reply Envelope? My PHP version is: 5.2.0. <soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope"> <soap:Body> <Response ...
2
votes
3answers
228 views

nuSoap Function is Not a Valid method

When trying to instantiate my nuSoap method "authenticateUser", it says: Fatal error: Uncaught SoapFault exception: [Client] Function ("authenticateUser") is not a valid method for this service in ...
2
votes
2answers
263 views

Sending a Image or other data in nuSoap

How to send a image or a file using the web service to the server ?
2
votes
1answer
330 views

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, ...
2
votes
1answer
369 views

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 ...
2
votes
1answer
319 views

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 ...
2
votes
2answers
3k views

SOAP authentication with PHP

I need to connect to a web service that requires authentication credentials in the form of a plain text user name and password. I have a basic understanding of SOAP and have managed to connect to ...
2
votes
1answer
566 views

PHP Soap Header help

I have a fairly simple php/soap header question. Here's what I need. <ns1:Identity token="123456789"></ns1:Identity> Here's what I get... ...
2
votes
2answers
1k views

Convert old NuSoap code into PHP core soap functions

Hi I've been testing nuSoap with codeIgniter (PHP Framework) but seems nuSoap isn't prepared to work with latest php 5.3, even if I download a patched nusoap version for php 5.3 I have the following ...
2
votes
4answers
4k views

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: ...
1
vote
0answers
98 views

NuSOAP not sending credentials

I'm trying to connect to a SOAP server secured with HTTP Basic Authentication and SSL. I tried using PHP's SOAP library, but then gave up and used NuSAOP. I set my credentials: $soap = new ...
1
vote
1answer
198 views

Register class methods with nusoap

I've a php class and i want to use it with Nusoap. Can I register the class method's that already exists inside the nusoap with the register command? Sample : Here we register a function that we ...
1
vote
1answer
76 views

How can I return a dataset (which is dependent on my input query) in a PHP web service using nuSOAP?

I want to return a data set (whose results are dynamic as it depends on my input parameters) in a PHP web service, using nuSOAP. How do I register my return type since I do not know how many (and what ...
1
vote
0answers
290 views

nusoap server multi dimensional array not being returned

Hi I have a soap server written in nusoap that should return an array like: Array ( [Learner_Detail] => Array ( [Learner_Id] => 09070567 [Known_As] => Aaron ...
1
vote
0answers
83 views

SOAP authentication problems

Im having a bit of a headache with this one. Using NuSOAP. The webservice has a function called LOGIN that accepts the parameters USER and PASSWORD. But all I keep getting is the same error ...
1
vote
1answer
248 views

How to make NuSOAP works with Symfony 1.4?

I'm trying to make my webservice in symfony with NuSOAP. I also made a client for test purpose. I managed to make it work in my /web/ directory, but i can't access my symfony methods from there. So i ...
1
vote
0answers
225 views

Debugging (Silverlight + PHP web service) application on VS2010

I'm using Visual Studio 2010, Silverlight 4 and a PHP web service (NuSOAP). Everything works fine when I copy the XXXTestPage.html and the XXX.xap file to the remote server, and open the page in a web ...
1
vote
1answer
148 views

php NuSoap, giving exception of org.xml.sax.SAXException: Bad types (int -> long)

Greetings to every one. I am trying to integrate an application with Taleo through WSDL. all working good, but in one request we are getting this exception this is the submit request suppose to go ...
1
vote
1answer
187 views

webservices using nusoap

i am using nusoap for webservices to intigrate hotel api into my web application. I create soapclient and called webservice. request is POST /API/xyz.asmx HTTP/1.0 User-Agent: NuSOAP/0.6.3 Host: ...
1
vote
1answer
2k views

Making a SOAP request over HTTPS using PHP and NuSOAP

I've been stuck with this for days now and I can't seem to find the answer anywhere, even though I think it's a fairly common task. Can anyone help? I'm trying to use PHP and NuSOAP to connect to a ...
1
vote
2answers
325 views

NUSOAP problem using free web hosting sites

I've been trying to figure out what's wrong and what is the problem with this following PHP code, which is trying to make a SOAP call. I can't get it to work when I host the PHP on free web hosting ...
1
vote
3answers
94 views

PHP Array - how to extract part of it

I want to get from one big array some values received by SOAP service. printr($result) Result: Array ( [GetProductResult] => Array ( [schema] => Array ...
1
vote
1answer
162 views

how to incorporate types from a XSD to the WSDL in NuSOAP

I'm trying to create a webservice for a PHP app (with CodeIgniter) using NuSOAP, and I'm finding some difficulties since creating a WS from scratch is new to me. I have some XSDs that I should use to ...
1
vote
1answer
881 views

Web Service with .net and nusoap

I am using nusoap to connect to .net service, but i get error "Notice: Undefined variable: HEADER in C:\xampplite\htdocs\newsoap\searchwwcc.php on line 54 Fatal error: Uncaught SoapFault exception: ...
1
vote
0answers
326 views

Sending secure wse headers via Soap in php5

I am having a problem sending security wse headers to consume web services and already tried several dozens way of using this webservice from TargetProcess.com and I am not sure what I am doing ...
1
vote
1answer
2k views

Soap client, how to call a function over HTTPS with Basic HTTP Authentication

This problem has been killing me for the entire day. I have a client web service https://*.asmx?WSDL, with Basic HTTP Authentication.. If I use SoapUI to connect to the webservice, everything works ...
1
vote
1answer
111 views

How to disable external schema downloads in NuSoap

One of our systems depends on a legacy application implemented in PHP, that uses NuSoap to query some SOAP webservices Whenever it tries to connect to a webservice it also tries to download the ...
1
vote
2answers
2k views

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'); ...
1
vote
2answers
387 views

Php, Soap & ASMX WebService

I'm trying to call an AspNet WebService (C# 3.5) from PHP (5.3.5) using NuSoap. <?php require_once('lib/nusoap.php'); $proxyhost = isset($_POST['proxyhost']) ? $_POST['proxyhost'] : ''; $proxyport ...
1
vote
0answers
192 views

Is it possible to add an attribute to an XML Root using nusoap's call() function?

I am creating a class that will be utilizing the Fedex Web Services. I am attempting to communicate through the nusoap php class's nosoapclient() function, passing it a wsdl file. It seems Fedex ...
1
vote
1answer
3k views

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 ...
1
vote
0answers
164 views

PHP and nuSOAP - variabls and class

i look more about nuSOAP and now i need to know somthing about this nuSOAP :) how can i build own variables like token, username and password so all my customere lookup on a API key. my next questin ...
1
vote
2answers
587 views

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 ...
1
vote
2answers
201 views

Error handling web service

I'm doing a bank web service, for a college project, which receives the account information and the amount so we do the withdrawal of the money from the account, and as a response we send a ...
1
vote
1answer
175 views

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 ...
1
vote
1answer
2k views

Help with Exchange 2010 EWS (API) and/or PHP's NuSOAP library?

Just to be clear before continuing: using PHP's built-in SOAP class is unfortunately not an option here (production server's PHP is not built with it, and won't be). I'm trying to use EWS to allow ...
1
vote
1answer
277 views

Download mysql Table with php nusoap

I want to export/download a table from a mysql database to a txt or csv file like the way you can in phpmyadmin. The table can be anywhere from 100 - 90k entries and the mysql query will take place on ...

1 2 3 4 5