Top "Soapserver" questions

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 …

php soap wsdl soapserver
PHP SoapClient: SoapFault exception Could not connect to host

using this code I make soap requests $client = new SoapClient('http://example.com/soap/wsdl'); try { $result = $client->myMethod(); } …

php soap soap-client soapserver
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. …

php soap wsdl soapserver
Producing SOAP webservices with spring-ws with Soap v1.2 instead of the default v1.1

I am currently working on Spring soap server project. I started off with the Getting Started guide from Spring here …

soap spring-ws soapserver
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 …

php logging soap soapserver
How to send out plain XML in SOAP response?

I'm using PHP SoapServer class and try to put plain XML inside the body of the SOAP response. Case 1: My …

php soap encoding soapserver
How return custom XML response in soapServer response?

I am setting up a SOAP webservice which takes XML input and has to return custom XML output. All this …

php soap soapserver
PHP Soap Server How to know called method

In PHP I would like to know what will be the method called by SOAP. Here is a sample to …

php soap soapserver
Zend Framework 2 SOAP AutoDiscover and complex types

I'm preparing the SOAP server and generating my WSDL using the follow code: //(... Controller action code ...) if (key_exists('wsdl', $…

php wsdl zend-framework2 soapserver zend-soap
php set encoding type for soap server response

I have created a soap server in php using the native soap server class in php. The encoding I need …

php web-services soap encoding soapserver