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 ...
4
votes
2answers
4k views
Inspect XML created by PHP SoapClient call before/without sending the request
The question:
Is there a way to view the XML that would be created with a PHP SoapClient function call BEFORE you actually send the request?
background:
I am new to WSDL communication, and I have a ...
3
votes
1answer
117 views
Disable certificate verification in PHP SoapClient
Summary:
Is there a way to force the built in SoapClient-class in PHP to connect over HTTPS to a server with an invalid certificate?
Why would I want to do that?
I have deployed a new application on ...
3
votes
2answers
642 views
Serializing a PHP SOAPClient object
I'm writing a PHP application which uses a number of SOAP web services to gather data.
I'm getting significant overheads in instantiating all those objects: in some cases a single line of code ...
3
votes
2answers
635 views
PHP soap problem
I'm triying to insert data a remote server via SOAP. But got the error below:
object(stdClass)#3 (1) { ["DataInsertResult"]=> string(51) "Hata : DI - Value cannot be null. Parameter name: s" }
Here ...
2
votes
1answer
310 views
PHP SoapClient - Returning attribute values in a response
I'm attempting to get values from a webservice.
The responce is formated as..
<campaign Id="200"> <name> test </name> </campaign>
PHP Code
SoapClient( "WSDL");
$return = ...
2
votes
6answers
597 views
Speeding up a soap powered website
We're currently looking into doing some performance tweaking on a website which relies heavily on a Soap webservice. But ... our servers are located in Belgium and the webservice we connect to is ...
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>
...
2
votes
3answers
2k views
How to generate a PHP soap client code?
Is there a way to generate a PHP soap client from a wsdl file?
I mean something like wsdl.exe or svcutil.exe in .net, that generates code for a class that can be the client of a service, not something ...
1
vote
1answer
21 views
PHP SOAP client data formatting issues
I'm trying to format a SOAP request with PHP. If I put the following request through with SOAPUI I get the correct results:
<urn:getCallInfoSearch>
<UserInfo>
...
1
vote
3answers
31 views
Can I use PHP's SoapClient to parse a SOAP response, without making the HTTP request?
I'm currently dealing with an archaic payment processor that makes connecting to their service as hard as possible (including a custom client SSL cert, with a password, plus basic HTTP Auth after ...
1
vote
0answers
48 views
PHP SoapClient complex parameters howto?
I'm using PHP SoapClient to consume a webservice..
Everything is working fine when service parameters are simple and something like $client->GetProductById(array('productId' => 'ID')); does the ...
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
64 views
PHP Soap function coming up as 'No such operation' even though in function list
Attempting to get SOAP calls from a wsdl working within PHP. Querying an WebCT axis server wsdl and I get back that it has the following functions:
Array
(
[0] => SessionVO login(string $user, ...
1
vote
2answers
125 views
PHP SoapClient type mapping behaves differently
I've a web-service function which is returning an array of items to a PHP-Client. Depending on the number of items, the PHP return type is differently. If the function returns one item the PHP type is ...
1
vote
1answer
414 views
PHP SoapServer and Complex Types
I am working on building a web service in PHP using the SoapServer class, but I'm running into an issue with casting of complex types.
The WSDL is completely valid, and the PHP SoapClient handles it ...
1
vote
2answers
374 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
3answers
2k views
Access Products/Category/Attribute Info from php with Magento API
Need to be able to pull Magento products into an external template. Need to be able to get all products data (description, title, attributes, categories, image, etc).
And need to be able to filter ...
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:
...
1
vote
1answer
842 views
SOAP error encoding external reference in PHP
I am trying to use a function from SOAP, which will fetch details about a specific news item. The problem is that I don't get the expected results, just a a strange error. I am using the built-in SOAP ...
0
votes
1answer
28 views
Consume a .Net web service using PHP
This is my first time with web services/SOAP...i have been trying to consume .Net web services using PHP but to no avail. I have searched and read all pages that google throws up for anything related ...
0
votes
0answers
31 views
PHP Soap Client information
At the moment I'm running a SOAP Service on PHP basis which handles logins from users. Now I am looking to find out which machine they are coming. The problem is, that I want to prevent users sharing ...
0
votes
0answers
35 views
SoapClient: faultcode WSDL
When I try to use SoapClient:
try {
$client = new SoapClient('http://someurl/somefile.wsdl');
} catch (SoapFault $e) {
var_dump($e);
}
I have catch error with:
["faultstring"] => ...
0
votes
0answers
65 views
I installed php-soap with rpm file on Centos but doesn't work [closed]
I installed php-soap on my Centos server from RPM file. Then I restarted httpd service but doesn't work SOAP client.
When I get:
yum list installed
php-soap listed here:
php.i386 ...
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
2answers
49 views
PHP SOAPClient in GWT
Can i use the php script below to connect my GWT client to SOAP?
<?php
try {
$client = new SoapClient("http://xxxx.xxxxxx.com/appserv/soap/main.wsdl",
array("location" => ...
0
votes
0answers
28 views
Can't read SOAP response results with PHP Client
I have response from the SOAP server:
<CheckEWebUserResponse>
<CheckEWebUserResult>
<Results userName="xwebuser" recordReturn="1">
<Result>
...
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
0answers
90 views
SoapClient::__soapCall returns string instead of multi-dimensional array in PHP 5.1.6 with PHP-SOAP in non-WSDL mode
I have a problem with the soapCall method of PHP's native soapClient class on PHP version 5.1.6. We're trying to integrate a local database with our websites, and it seems although working perfectly ...
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
2answers
130 views
PHP - Creating Nested Soap Headers using SoapClient
I am using the SoapClient class in PHP to make a request. I am trying to create a nested header variable to pass in my request.
Currently my request headers looks like this,
<SOAP-ENV:Header>
...
0
votes
1answer
113 views
How do I enable the SOAP module for PHP?
How I enable php soap module on my mac os x 10.5.8? php is already install but soap module isn't configured when I've installed apache/php/mysql. Thank you.
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
183 views
PHP SOAPClient, parameters and text
I am attempting to return some SOAP data and am having a bit of a problem. I am using PHP's SoapClient to make the call.
When I execute my SOAP call, I returns somewhat valid data; the data I get ...
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
0answers
108 views
How to enable client-side validation of SOAP messages using PHP SoapClient
While using PHP's SoapClient in WSDL mode, I discovered that it does not throw exceptions whenever non-existent elements are used; it merely excludes them from the outgoing request. This seems ...
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
464 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
110 views
PHP SOAP generating correct schema
Hi im having some trouble creating a schmea using PHP.
I need to generate something similar to :
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" ...
0
votes
0answers
106 views
PHP SOAP soapCall() to .NET and getting Element Attributes in the Result
I make a soapCall() using the integrated PHP soapClient to access a .NET Webservice.
In my Result, which i can see fully using the magic "__lastResponse()" method, i have this:
<RatePlan ...
0
votes
1answer
169 views
Initialize a ComplexType variable inside a Class (SoapClient)
Hey everyone, I am trying to consume a WebService using PHP SoapClient.
Now, everything is working fine until I try to use a ComplexType variable.
I am getting a NullPointerException from the web ...
0
votes
1answer
230 views
Two Easy PHP SOAP setHeaders Questions
Here's the code I'm using to generate the request headers:
$headers = array(
new SOAPHEADER($this->_ns,'username',$this->_username,false, $this->_actor),
...
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
1answer
237 views
error to connect soap server in php
i am working on shopping cart project, i need globalpay integration . i got the sample code and run in my localhost it shows me error this.
Warning: SoapClient::__construct() ...
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
1answer
129 views
I don't know where to start with WSDL and SOAP in PHP 5.2+
I'm a web services newbie and I've tried to learn it looking for tutorials in google... but I didn't found anything really helpfull...
Do you know any tutorial / web page / documentation for web ...
0
votes
2answers
651 views
How can I pass in an array as a value into a PHP soapclient request?
How can I pass in an array as a value into a PHP soapclient request?
I have a soapclient instantiated and connected already. I then try to make a call to a webservice method that expects 3 parameters ...
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" ...