Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
498 views

Extending php SoapClient for siteminder authentication

SHORT VERSION I want to extend SoapClient so it does this internally when accessing the wsdl: curl -L -E /location/of/cert.pem -c /tmp/location/of/cookie.jar ...
3
votes
3answers
854 views

Structuring PHP array for use in SOAP with WSDL

I am writing a SoapServer with PHP 5.2 to return a list of vacancies to another application. My WSDL doc requires a complex type along the lines of: <xsd:element name="Vacancies"> ...
1
vote
2answers
33 views

Creating PHP SOAP service from given WSDL

This may come across as a terribly lazy question, but I assure you it is not. I have tried for days to get this working but I just cannot. I have been given a WSDL file and I need to create a SOAP ...
1
vote
1answer
124 views

PHP SoapServer: doesn't resolve XML (WSDL file) - no XML file - with “?wsdl” on URL

I'm having problems with my Soap Server implemented on PHP on my production server (remote one). I've implemented a simple Soap Server (native PHP class) with just on function on WSDL mode. So my ...
1
vote
1answer
100 views

How to integrate WCF and SOAP to existing server-client application?

I am new to server-client applications. I am trying to build a prototype where a Java server communicates with a .net WPF client over http. The server and client currently communicate over a ...
1
vote
1answer
233 views

PHP SoapServer Connection Authentication implementation

Searched Google and cannot seem to find a definite solution to this... I am implementing a PHP SOAP Server to handle requests from a particular user of our systems. I need it to authenticate the ...
1
vote
1answer
414 views

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

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

Transfer File us NuSOAP

I am having this problem transferring files using NuSOAP. I understand that you can read a file and transfer it has a string but its not working. Here is an example Client: ...
1
vote
1answer
189 views

Is PHPs SoapServer affected by the maximum execution time?

I recently created a Java frontend for a PHP web-service which uses PHPs SoapServer. My application is performing a long-running data synchronization and from what I know from PHP I prepared myself ...
1
vote
2answers
3k views

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

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 <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" ...
0
votes
0answers
22 views

how to return custom types with php soap server?

I'm in with PHP SoapServer working in non-wsdl mode. I have the server set up to handle the data and return a response using setClass(). I tried returning an associative array, but that translates ...
0
votes
0answers
13 views

Soap_Server setPersistence doesn't work correctly

I have Soap_Server and SoapClient and i what to use session. But on every request the session_id is different? This is the server: ini_set('soap.wsdl_cache_enabled', '0'); ...
0
votes
2answers
136 views

Execute curl using php

I can call a soap server using java like this Call call = new Call(); URL url = new URL("http://soap-something.dash.com/servlet/rpcrouter"); ...
0
votes
0answers
86 views

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

Returning an array of string from PHP SoapServer

I am trying to build a soap service in PHP. The WSDL that I am using for the webservice was autogenerated by Visual Studio 2010 (I just used Visual Studio to create the WSDL, the actual server is ...
0
votes
0answers
14 views

Validate XML(possess some form data) using WSDL definition in PHP SOAPSERVER

I want to validate a XML in PHP SOAPSERVER using wsdl definition. please help me.
0
votes
2answers
129 views

php SoapServer not print any xml document

all I create a soap server use below code. I found it is a little hard to create wsdl document in PHP .so I decide use non-wsdl mode. $soapServer = new ...
0
votes
0answers
164 views

Can a PHP5 SoapServer be built in a CodeIgniter 2.0+ Framework?

I've seen so many conflicting posts about PHP5 SoapServer and CodeIgniter that I'd figured I'd just come ask the experts here. I've got an old nu-soap server working in CodeIgniter 2.0+, but I would ...
0
votes
0answers
40 views

Adding properties to XML output from PHP SoapServer

I'm running a PHP SoapServer using the standard PHP SOAP library (http://www.php.net/manual/en/class.soapserver.php) I want to be able to add the xsi:nil="true" property to the output for NULL ...
0
votes
0answers
27 views

Treat soap xml with php

I'm trying to deal with soap. I'm receiving xml report in raw data on tcp port. i have the wsdl corresponding but i don't know exactly what to do. $server = new ...
0
votes
1answer
434 views

PHP SoapServer always calls the same function despite calling different ones

My SOAP server is (intended to be) setup with three operations: login, logout, and version. The login function's code is currently "faking" it at the moment, accepting two parameters, a username and ...
0
votes
2answers
321 views

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). ...
0
votes
1answer
214 views

PHP - SOAP-ENV:ClientBad Request after SoapServer->Handle() - Help

I got a PHP web service that had been running great for a long time, but somewhere a long the way it some how stopped working, and I just can't get it to work again. I got some php page in which all ...
0
votes
0answers
287 views

SOAP encoding problem with complex types in WSDL mode with multiple parts - server

I have problem with this bug: http://bugs.php.net/bug.php?id=31832 . This is solution: http://www.php.net/manual/en/ref.soap.php#83410 but I Have this problem in server. I did it this way but it is ...
0
votes
2answers
352 views

SOAP PHP server-side debugging

I was landed a project to debug a PHP SOAP server (SoapServer) written by an unknown party. It is being used by a c# SOAP client, which I don't have access to the source code to (in other words, I ...
0
votes
0answers
270 views

How to set xmlns:ns1 in a PHP SoapServer response

I'm trying to build a Drupal 7 module that uses Soap server and Services to intregrate with Quickbooks Web Connector (QBWC). QBWC sends SOAP requests to the target server in order to authenticate and ...
0
votes
2answers
284 views

Soap server return string

When i sending request by __doRequest (xml) method on return from soap server i get string string(490) " 0Message0000 " when i pass array by __soapCall i get exactly that i want, xml object ...
0
votes
0answers
626 views

Zend Soap Server - complextype

I'm using the Zend Framework's Soap Server module and I'm looking to return a complex type that looks like the below, but for the life of me, I can't figure out how to do this... Desired Output ...
0
votes
2answers
523 views

PHP SOAP client and SOAP server errors

I have a web server which is acting as a SOAP client to communicate with a third party SOAP server. My client is implemented in PHP using php::soapclient. What is the best way to verify the SOAP ...
0
votes
1answer
168 views

PHP SOAP server is sending back a partial response

I've written a SOAP service so my Silverlight application can add entires into my database. The server is written in PHP, and in order to test everything, I've written a PHP client. My client seems ...
0
votes
2answers
163 views

SOAP url in browser

When you enter soap servers url in browser, normally it produces blank page. But if memory serves me I saw somewhere something like Hello, this is our soap service. For documentation please ...
0
votes
1answer
652 views

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: <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" ...