Am using SoapClient (PHP) to retrieve data from a remote webservice. And I am able to communicate perfectly with this webservice. The request am sending is supposed to retrieve base64 encoded image data. It turned out that SoapClient automatically decode base64 response and the result looks like this: My question is how prevent this automatic decoding by SoapClient. My REST
Tag: wsdl
Wrong namespaces assigned by PHP SOAP Client
I have little to no experience in SOAP. And I am interacting with a third party wsdl web service. For this I use PHP’s native SoapClient. When I send the request I’m getting an error response that states the following: The relevant parts of the autogenerated XML are as follow: If I take the autogenerated XML, change the namespace alias
PHP WSDL response as object
I am sending a request for response to a WSDL in PHP (code below). The response is structured in a way that I’m not sure how to extract data from it. It comes back as an object with the XML inside. Is there a standard way of parsing the XML of this object? Here is my code: ?> Here is
Why the SOAP request is empty?
I develop the system to export some data from the client’s side using the SOAP. I have a link to their staging wsdl, and implemented some kind of the SOAP client, but unfortunately my SOAP request is empty and the response is the error one. Link to WSDL: https://rewardsservices.griris.net/mapi/OrderManagementServices.svc?wsdl Operation called: exportPendingOrder Snippet of my SOAP Client: Log information (incl.
WSDL: how to describe an element with attribute and string-value at the same time?
I can describe a structure like this: It leads to: Also I can describe a structure like this: It leads to: But how to describe a structure which leads to something like this: ??? Answer Like this: the output will be
How to parametrize a PHP Soap call – Taleo
I need to get the entities list from Taleo WS. I got a working soap xml example but I don’t know how to parametrize the php soap call. Can anyone give me a hint? The request is the following <…
Soap service with an ssl certificate with password (PHP)
I need to access a SOAP service with a certificate protected by password. I’m new in PHP (with PHP 5.4 in CodeIgniter 2) and have tried some options that doesn’t work for me. I have the following …