Questions tagged [soapserver]

154 questions
3
votes
2 answers

PHP SoapServer: How to disable 'Response' appending

I am creating a SOAP server (in Symfony using ckWebservicePlugin) which needs to comply with the following structure of request and response (I was given this as an already agreed specification). Request:
poisson
  • 1,324
  • 11
  • 20
3
votes
0 answers

By default use default value check box is checked in magento catalog inventory

I tried this below code to add product to magento catalog inventory, but the check box is still in check, how can i uncheck " Use Default Values" check box in magento catalog inventory, any one please help me. catalogInventoryStockItemUpdateEntity…
Devi Prasad
  • 829
  • 1
  • 11
  • 33
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
1 answer

Process SOAP Headers in PHP

I am building (in PHP) a SOAP server that is configured by its WSDL to accept messages that look like this:
benjy
  • 4,664
  • 7
  • 38
  • 43
3
votes
1 answer

PHP SoapServer classmap object creation

I am building a web service with PHP's SoapServer class. Using the classmap feature works fine and the WSDL types are correctly mapped to the PHP types. However, I am not able to figure out how the instances of the mapped classes are created. Is…
joconja
  • 361
  • 1
  • 5
3
votes
1 answer

SoapFault in PHP Soap Server (Error Handling)

I'm working on a new Soap Web Service. The previous Web Service used to return an array('error'=>"Please login first"); when an error was encountered. From what I've read, its better to use a SoapFault instead. The following line is used to call a…
Xethron
  • 1,116
  • 9
  • 24
3
votes
2 answers

PHP SoapServer ampersand is encoded

I'm working on a webservice using SoapServer in PHP. Previously, I made another webservice using exactly the same technique. My new project is on the same server, but in another subdirectory. In the url of the service and the soapserver is a…
harmjanr
  • 930
  • 2
  • 11
  • 27
3
votes
2 answers

How populate composite message and return as SoapServer response XML?

I am setting up a SOAP web service, that should return a composite message. A valid instance of this message would be the following:
Maestro13
  • 3,656
  • 8
  • 42
  • 72
3
votes
1 answer

Modifying sent XML on server side with PHP's SOAP

A question about PHP's SoapClient and SoapServer, WSDL mode. I need, let's say, create a digest of a certain part of XML with the data in it. With SoapClient it's easy. I overload __doRequest() method from class SoapClient, make hash of certain…
user1590072
3
votes
3 answers

Returning a PHP Array from a PHP SoapServer

I'm relatively new to Soap on the "creating the service side", so appologies in advance for any terminology I'm munging. Is it possible to return a PHP array from a Remote Procedure Soap Service that's been setup using PHP's SoapServer Class? I have…
Alana Storm
  • 164,128
  • 91
  • 395
  • 599
2
votes
1 answer

SoapServer send response without envelope

I would like to send a soap response which is pure xml i.e without a soap envelope. This is my current response
mikedhart
  • 413
  • 2
  • 4
  • 14
2
votes
0 answers

String values returned by PHP SoapServer not received by .Net client

I am using the WSDL document automatically generated by Visual Studio 2010 (ie. from the "HelloWorld" application that is created when you create a new web service application in Visual Studio.) But I am needing to develop the web service in PHP, so…
BruceHill
  • 6,954
  • 8
  • 62
  • 114
2
votes
1 answer

PHP SoapServer and Complex Types

I am working on building a web service in PHP using the SoapServer class, but I'm running into an issue with casting of complex types. The WSDL is completely valid, and the PHP SoapClient handles it flawlessly, but there seems to be an issue with…
Skudd
  • 684
  • 2
  • 12
  • 28
2
votes
1 answer

Python Soap Server for the Quickbooks Webconnector

I'm writing a Soap Server to interact with the quickbooks webconnector, and I really don't even know where to start. I have the wsdl file, and a list of all the functions and arguments that the web connector needs, but I really just don't know where…
Hoopdady
  • 2,296
  • 3
  • 25
  • 40
2
votes
1 answer

How to set Header while registering SOAP web service?

I am creating SOAP web service for client using nusoap lib(in PHP). Below is my code:
Mak_091
  • 187
  • 1
  • 2
  • 14
1
2
3
10 11