Questions tagged [soapserver]
154 questions
0
votes
1 answer
How to get a Response SOAP Envelope from PHP Web Service?
This is a simple question I think. I made a simple PHP web service with SoapServer and a simple client. I test this on soapUI and I get this:
I know is because of the var_dump() but I don't know how to make it respond a Response SOAP Envelope with…

Xanathos
- 598
- 3
- 15
- 31
0
votes
0 answers
PHP. SoapServer. I don’t get an attribute values
I have problem with creating a SoapServer on PHP.
The Soap client developers send me xml like this:
…

Alisa Gaponenko
- 1
- 1
0
votes
0 answers
How to pass array to SOAP in PHP
I would like pass this array by SOAP
'DeviceList'=>array('Devices'=>
array(
array('DeviceID'=>'teltec12347'),
array('DeviceID'=>'teltec12347'),
)
)
My SOAP server looks like:
…

user3267169
- 1
- 1
0
votes
1 answer
PHP DateTime not converted to xsd:datetime
I am experiencing this issue with a Soap Web Service I am creating. DateTime objects are not converted correctly and I end up with empty strings. I am using Zend Soap Server to build the service which is saving transactional data.
Is there a…

user3135639
- 25
- 1
- 5
0
votes
1 answer
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 is ISO-8859-1.
I have tried to do it while creating the soap server like this:
$server = new…

Shikhar Subedi
- 606
- 1
- 9
- 26
0
votes
2 answers
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 follow this link.
To get an account, please follow…

Sejanus
- 3,253
- 8
- 39
- 52
0
votes
1 answer
disable codeigniter session cookie for php soap server
I am creating a soap server in codeigniter using php native soap server class.
The soap server is working great but I have a problem with the codeiginter session cookie. The session cookie is being sent with every response from the soap server. I…

Shikhar Subedi
- 606
- 1
- 9
- 26
0
votes
1 answer
returning soap xml response for a soap server php
I am trying to create a soap service in php using native php soap server. I have already prepared the wsdl file.
There are basically four methods that can be called with the soap service. The input soap request for one of the request…

Shikhar Subedi
- 606
- 1
- 9
- 26
0
votes
1 answer
Soap String Can not connect to server
Below my soap information.
NAMESPACE = "http://wm.tren.com/";
URL = "http://wmc.com:80/tren/TrenService";
SOAP_ACTION = "http://wm.tren.com/gettest";
METHOD = "gettest";
Im using soap server .But I can not connect the server with my below…

santa
- 147
- 1
- 4
- 16
0
votes
2 answers
PHP SoapServer: Set port address location
I'm using PHP's builtin SoapServer class to implement a Web service. I need to set the location attribute in the following segment of the WSDL code:

Jay Bienvenu
- 3,069
- 5
- 33
- 44
0
votes
1 answer
ZF2 and implementing a SOAP server returning a complex type
I'm trying to implement a SOAP server using Zend Framework 2 in PHP5.5. I've come as far as this:
library.php

Mehran
- 15,593
- 27
- 122
- 221
0
votes
1 answer
PHP soapserver with URL parameters
I have URL-parameters on my soapserver call. Calling 'mysoapserver.php?version=1' works well, except in this case
mysoapserver.php?wsdl&version=1
Soapserver does not output the wsdl.
The code looks like this
$version = isset($_GET['version']) ?…

tok
- 909
- 1
- 10
- 21
0
votes
1 answer
How to disable parsing from parameter received in nuSOAP server
I have deployed a quick nusoap server, but some of the parameters that an operation receives will be pure XML text. (some other are strings and integers).
When the parsing takes places, it also affects the XML contained in the parameters's value,…

po5i
- 548
- 5
- 19
0
votes
2 answers
PHP SOAP server configuration/implementation
I need to implement a SOAP server that will respond to a third-party application that behaves as a SOAP client.
The server should be in PHP, so I started using nusoap and http://www.wsdltophp.com/ to generate the skeleton.
Here's the wsdl file they…

alexg
- 902
- 11
- 37
0
votes
1 answer
PHP SoapServer, how can I access my entity manager from within the class?
I have a SoapServer. This soap server has a class
$server = new \SoapServer($this->wsdl_path, array('classmap' => $this->classmap));
$server->setClass('MyNamespace\\MyBundle\\Lib\\MySoapMethods');
And I have the class MySoapMethods which actually…

Anyone
- 2,814
- 1
- 22
- 27