Questions tagged [soapserver]
154 questions
0
votes
0 answers
Access XML parameters via PHP's SoapServer
I am trying to receive a SOAP packet using PHP's SoapServer object. I have success with the basic setup of having the request handled by SoapServer, as such:
$server = new SoapServer(null, array('uri' =>…

Umbrella
- 4,733
- 2
- 22
- 31
0
votes
1 answer
how to send post data from SoapServer function
I implemented SoapServer with one function which should just forward received variable with post request and get response from it. than just return response.
Whatever I try (curl, file_get_contents, ...) ,I just can't do post request from that…

rat
- 51
- 6
0
votes
2 answers
Returning a JSON object from PHP SoapServer
How can I force my PHP SoapServer to send a JSON object as a response instead of an XML doc?
Thanks.

gipouf
- 1,221
- 3
- 15
- 43
0
votes
1 answer
php soapserver returning better readable associative array
I'm using PHP SOAPSERVER class.
As a response I'm sending associative php array:
function getItems()
{
...
$items[] = Array("itemID" =>$itemID,"itemName"=>$itemName);
return $items;
}
SOAP return is like this:
...
-

user1463822
- 837
- 9
- 24