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

653 questions
0
votes
1 answer

using soap client in model

I should get the available products list and their prices from another server by WSDL (and NuSOAP). No views is needed (and no controllers I think); So I create a model with no tables (because I don't want to store server data) And use…
mrdaliri
  • 6,594
  • 21
  • 67
  • 101
0
votes
1 answer

SOAP web services over HTTPS is not working

I am currently working in sugarcrm which has url in https. Soap is not working on https url, my code is running perfectly in http url . What are the changes that requires to run the same code in https mode? i use this code. username, password and…
0
votes
0 answers

Error occurs with while Loop PHP / MySQL NuSOAP

I have created a PHP / MySQL based web service. I wrote client.php as mentioned here and server.php as below:
Prash278
  • 59
  • 1
  • 6
0
votes
1 answer

how to build a SOAP api in php

I'm new to SOAP, still learning the syntax. I work in Php. I have to build a SOAP application in Php. Searched everywhere for tutorials,examples..If someone know a good way of learning it, please help me.
mano
  • 113
  • 2
  • 2
  • 6
0
votes
1 answer

Developing a flexible SOAP Server/Client with lists of name value pairs?

Problem: I'm trying to find a better way to manage changes to several SOAP Clients/Servers that are shared across multiple Web sites (domains/ips). Luckily, I have control of all SOAP servers/clients, but I need to occasionally add a new field or…
jjwdesign
  • 3,098
  • 7
  • 34
  • 63
0
votes
3 answers

PHP: call a function from another function (out of scope?)

I'm having a problem creating webservices through nuSOAP (although i believe my problem has nothing to do with it) What i'm trying to do: function loadActiveItems() { $list = Item::loadActive(); $ret = array(); foreach ($list as $val){ …
Atekon
  • 43
  • 6
0
votes
1 answer

Upload zip file by Nusoap in PHP and C#

I want to upload file with C# client app and Nusoap webservice. How i can do this? I use Nusoap webservice for insert in database but for upload files i don't have any idea. Please help me. Thanks.
Hajitsu
  • 687
  • 16
  • 43
0
votes
3 answers

Why is ALL my XML being escaped?

Long time listener, first time caller. Here is what I got going on... Created a PHP webservice, no problem with sending simple data types like string, int... No problem returning string or int. Now I want to return data in XML. So I created a…
user1441213
  • 137
  • 1
  • 6
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
  • 2,956
  • 5
  • 26
  • 41
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
  • 493
  • 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,596
  • 10
  • 39
  • 57
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.
gopivignesh.m
  • 1,103
  • 2
  • 11
  • 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
  • 745
  • 2
  • 10
  • 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
  • 271
  • 5
  • 14
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,690
  • 7
  • 34
  • 53
1 2 3
43
44