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

How to set a namespace with NuSOAP (client side)

I asked a question like this some months ago but the problem was that the WebService was not working right. Now it is working perfectly and I'm still having problems making a simple request. First of all, I tried it with…
fedejp
  • 958
  • 3
  • 12
  • 20
0
votes
1 answer

PHP NuSOAP Web Service Error

I have a PHP web service with NuSOAP i have a complex type then same as another post on stack see below: #SERVER $server->wsdl->addComplexType('User', 'complexType','struct', 'all', '', array( 'id' => array('name' => 'id', 'type' =>…
Louwki
  • 696
  • 1
  • 9
  • 21
0
votes
1 answer

Codeigniter Nusoap Error

I'm new to Codeigniter and SOAP web services. I'm getting Error response to my below.
0
votes
1 answer

NuSoap doesn't work

i'm trying to connect my page to a webservice soap. My hosting doesn't support soap so SoapClient isn't recognized. I have a working example to connect to that ws but uses SoapClient. This is: $params = array('location'=>"www.wssite.com/test.php", …
Jayyrus
  • 12,961
  • 41
  • 132
  • 214
0
votes
1 answer

codeigniter2, nusoap, soap server and examples

A morning of googling I've learnt a few things. Many people would like to use their CI2 installs to make a soap server for other apps to talk to their app. However, each forum post I find ends in 'This doesn't work in CI2' or similar. I've found…
Beertastic
  • 691
  • 1
  • 9
  • 27
0
votes
1 answer

PHP nusoap to java complex variables

I'm trying to pass back 2 strings from my php nusoap server to my ksoap2 client but ksoap2 isn't spliting the response from nusoap into different properties. Here's my class for making the complex object in java. import java.util.Hashtable; import…
Codeguy007
  • 891
  • 1
  • 12
  • 32
0
votes
1 answer

PHP/NuSOAP Set soap:address location

I am using WAMP & CakePHP, and trying to add a NuSOAP server in the mix. I can generate a dynamic WSDL via NuSOAP, but there is a parameter at the bottom that is being set by NuSOAP, and doesn't make any sense:
Jason
  • 519
  • 5
  • 14
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
  • 7,148
  • 22
  • 73
  • 107
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
  • 7
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,272
  • 8
  • 41
  • 66
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
  • 7
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
  • 764
  • 17
  • 49
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
  • 169
  • 1
  • 6