Tagged Questions
23
votes
7answers
13k views
PHP SOAP tutorial?
I need to write a SOAP client using PHP 5.3. The WSDL for the service is reasonably complicated.
I can't find a PHP SOAP tutorial anywhere that walks through how to do this - I haven't found any that ...
2
votes
0answers
421 views
How to add an arbitrary namespace with PHP SoapClient?
How does one add an arbitrary namespace using PHP SoapClient? The namespace does not actually get used in the request, but I think it is preventing my message from being properly consumed.
The WSDL ...
2
votes
2answers
911 views
Custom header using PHP soap functions
I am having a problem getting a custom soap header to work with PHP5. Can anybody guide me please.
What I require is something like this
<SOAP-ENV:Header>
<USER>myusername</USER>
...
1
vote
1answer
66 views
How to stop PHP SoapClient converting s1:char arguments to 0 or 1 in request
PHP's Soap client appears to be handling arguments with type s1:char incorrectly when building the request. The Soap API requires either 'Y' or 'N' but in the request XML I get '0'. (Passing Bool true ...
1
vote
0answers
135 views
PHP SoapClient SoapParam sub variable?
i have a question about one my PHP SoapClient request...
how to make sub params? I give example for more information
This is my xml:
...
<ns1:GetPackInfo>
<UserName ...
1
vote
2answers
373 views
Calling Moodle functions from PHP over SOAP
I am having difficulty getting started with interfacing my PHP script to Moodle 2.0 over the SOAP Web Service provided. Not knowing much about SOAP, I figured I would simply connect and go from ...
1
vote
1answer
267 views
How to cache php soapclient responses?
I know that you can cache the WSDL but is there a way to cache the soap responses through configuration of the php soapclient?
Obviously, we could "cache" ourselves by constructing some tables in a ...
1
vote
1answer
1k views
Soapclient query a Sharepoint web service
I successfully query a service with the following code from here
<?php
$authParams = array("login" => "username", "password" => "password");
$listName = ...
1
vote
1answer
1k views
PHP SoapClient() function returning a single XML string
I am having difficulty with the PHP SoapClient() function. The SOAP request is successful, but the response is returned as an object containing a single XML string with the key "any". For example:
...
0
votes
2answers
53 views
Problems in using PHP Soap Client
I have this web service to access with this kind of configuration:
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
0
votes
1answer
39 views
Unable to consume WCF wshttpBinding service from phpClient
i can consume basichttp binding, but i am unable to consume services with ws-addressing.
These is how my request looks like.
<s:Envelope ...
0
votes
0answers
79 views
Sending SOAP parameters to a .NET SOAP webservice
Server: .NET
Client: PHP
Doing a SoapClient::__getTypes() reveals:
Array ( [0] => struct VerifyTxn { anyType obj1; anyType obj2; anyType obj3; anyType obj4; } [1] => struct VerifyTxnResponse { ...
0
votes
1answer
77 views
PHP SoapClient and creating header
I'm trying to create custom header using PHP SOAP CLient which will looks like
<soap:Header>
<AuthorizationToken xmlns="http://www.avectra.com/OnDemand/2005/">
...
0
votes
2answers
65 views
How to read data from SOAP header in client side
I have SOAP response which looks like
<soap:Envelope>
<soap:Header>
<AuthorizationToken soap:mustUnderstand="1">
...
0
votes
2answers
130 views
Very weird SoapClient problem
try
{
$client = new \SoapClient($wsdlUrl, array(
'cache_wsdl' => 0, 'exceptions' => true, 'trace' => true));
$client->getPage($parameter);
}
catch(\Exception $e)
{
...
0
votes
1answer
218 views
PHP SoapCLient, Soap call giving an error in Drupal
I am getting the following error, when I try making a SOAP call.
warning: SoapClient::__doRequest() [soapclient.--dorequest]: php_network_getaddresses: getaddrinfo failed: Name or service not known in ...
0
votes
0answers
139 views
When calling a SoapClient function I get the “DTD are not supported by SOAP” error
This is the php code:
$client = new SoapClient("http://localhost/wsdl/index/pages?wsdl", array("soap_version"=>SOAP_1_2, 'cache_wsdl' => WSDL_CACHE_NONE, "trace"=>true));
...
0
votes
1answer
135 views
PHP SoapClient creating error: “Namespace must not match the enclosing schema”
I'm getting "Namespace must not match the enclosing schema" error when trying to create SoapClient object. Code is simple:
<?php $client = new \SoapClient('http://www.server.com/Service?wsdl');
...
0
votes
1answer
463 views
PHP SoapClient with SuperPages API (complete SOAP n00b)
So I'm completely new to SOAP and the whole idea behind it, but I am forced to figure it out in order to work with the SuperPages API. For now, I am just trying to wrap my head around it, and how to ...
0
votes
1answer
385 views
Differences between PHP 5.2.x and 5.3.x with respect to the SOAP library
I have developed a PHP site using PHP 5.3.4 and deployed it to a server that has PHP 5.2.6 installed. I am not doing anything fancy; in fact, the only major library I am using is PHP's native SOAP ...
0
votes
1answer
490 views
Why is PHP's SoapClient creating a different namespace for the header than the body?
I'm trying to communicate with the eWay server and had everything working until we ended up needing to switch to a different API. The problem is that SoapClient is creating a different namespace for ...
0
votes
1answer
255 views
PHP SOAP web service call help
I'll start out by saying that I've never used SOAP before.
Anyway, Here's the code I'm trying to create.
<soapenv:Body>
<Circuits xmlns="http://www.qpricer.com/Services/Pricing">
...
0
votes
2answers
2k views
PHP SOAP Transfering Files
I am new to SOAP and I am trying to learn how to transfer files (.zip files) between a client and server using PHP and SOAP. Currently I have a set up that looks something like this:
...
0
votes
2answers
1k views
PHP - how to create this SOAP XML request?
I'm trying to figure out how to structure data properly in PHP in order to make a SOAP XML request like this:
<typ:saveRequest locationName="example.com">
<typ:datatype owner="ME" ...
0
votes
3answers
1k views
How do I consume a webservice returning complexTypes in PHP?
I am using PHP 5.2.10 and I am trying to consume a webservice which returns complex data types using the standard SOAP extension.
The problem is that SoapClient does not populate objects which are ...
0
votes
1answer
338 views
SoapClient save request to file instead of sending it
Is there a way to save the soap request SoapClient sends when calling __soapCall to a file instead of sending it to the actual server?
I'm trying to save the soap requests to a queue and then send ...