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

Soap 1.2 content type issue in nusoap

I'm working on a PHP (Cake PHP) based web application and using nusoap to send request and get response from the WSDL ( the web service is in .net framework and the Soap version is 1.2 ). I have to set content type 'application/soap+xml;…
Sam
  • 31
  • 3
3
votes
1 answer

Switching from NuSoap to PHP5 Soap - need a jumpstart

Here's the call I'm trying to make:
TerryMatula
  • 1,264
  • 2
  • 14
  • 29
3
votes
2 answers

Advantages of nuSOAP WebService?

I've been writing a demo web service in PHP using nuSOAP. I wanted to know what is the advantage of nuSOAP to SOAP PHP5 class. Also, this is a test web service to use as a model. I was wondering which were the typical scenarios (general to…
Ignacio
  • 7,947
  • 15
  • 63
  • 74
3
votes
2 answers

Problem calling webservice from Silverlight in VisualStudio 2010

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: serviceclient cl=new serviceclient(); But when I digit cl. I cannot…
Cris
  • 12,124
  • 27
  • 92
  • 159
3
votes
1 answer

Transfer File us NuSOAP

I am having a problem transferring files using NuSOAP. I understand that you can read a file and transfer it as a string, but it's not working. Here is an example: Client: require('libraries/nusoap/nusoap.php'); $url =…
user293313
  • 227
  • 1
  • 2
  • 10
3
votes
5 answers

How do I debug a php nusoap call requiring basic authentication that doesn't respond at all?

I am trying to re-write a Drupal module that has fallen behind the API of the gateway it connects to. A stripped back version of the code I think is causing the problem is as follows: $namespace = ($this->testing) ?…
Darvanen
  • 626
  • 1
  • 9
  • 19
3
votes
2 answers

Adding contact to dotmailer address book using API

I'm having a real headache adding a contact to to dotmailer using nusoap. I'm using the AddContactToAddressBook method,but I can't get it to work. The if statement returns success, but echo "
" . print_r($result, true) . "
"; returns…
noobie_woobie
  • 129
  • 11
3
votes
1 answer

Download file from Sharepoint library via web services using nusoap

I'm trying to download a file from Sharepoint library via web service with nusoap client. I'm able to connect and get List content using Lists.wsdl but I'm having trouble figuring out the parameters for Copy.wsdl methods.…
BigBob
  • 513
  • 10
  • 19
3
votes
3 answers

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 (and I don't quite understand the parameters - for…
cfeduke
  • 23,100
  • 10
  • 61
  • 65
3
votes
3 answers

Disable native Soap class in PHP5 and use nuSoap?

I've spent the last week developing code to connect to a Web Service using the nuSoap library. I just deployed the code to production, but immediately started getting error's that I hadn't seen before. I traced the problem back to a line of code…
Chris Bloom
  • 3,526
  • 1
  • 33
  • 47
3
votes
5 answers

How is the max size of a SOAP message determined?

I'm using NuSOAP on PHP 5.2.6 and I'm seeing that the max message size is only 1000 bytes (which makes it tough to do anything meaningful). Is this set in the endpoint's WSDL or is this something I can configure in NuSOAP?
Andrew Hedges
  • 21,688
  • 16
  • 67
  • 79
3
votes
1 answer

Set the value of SOAP-ENV Nusoap

How to change my Soapenv:Envelope parameter from this: to this:
Iman
  • 73
  • 3
  • 9
3
votes
1 answer

Complex type in PHP NuSoap

I am building a web service using NuSoap library in PHP. My webservice will act as a middle layer between client and an already existing web service by a vendor. So instead of client connecting to the vendor directly, they will connect to my web…
Ricky
  • 43
  • 1
  • 4
  • 9
3
votes
3 answers

SoapClient to nusoap, Server did not recognize the value of HTTP Header SOAPAction

We are running PHP 5.3.18, for some strange reasons I can't install php-soap so that I can't use the SoapClient class... I'm using now the last nusoap (should be compatible with php 5.3.18) and translating the code from SoapClient to…
Infrid
  • 723
  • 5
  • 12
  • 28
3
votes
1 answer

php consume WCF SSL SOAP Client 1.2

Im having some problems consuming a wsHttpBinding WCF from PHP. I originally tried to use SOAP1.2 but couldnt get it to specify the WS Action. I downloaded the nusoap library. I was originally getting an error saying that the webservice wouldnt…
Andrew MacNaughton
  • 783
  • 2
  • 6
  • 21