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
115 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
492 views

Extending php SoapClient for siteminder authentication

SHORT VERSION I want to extend SoapClient so it does this internally when accessing the wsdl: curl -L -E /location/of/cert.pem -c /tmp/location/of/cookie.jar ...
3
votes
2answers
640 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
633 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
2answers
259 views

SoapClient error fallback in PHP

In PHP, if you try to instantiate a new SoapClient, and the WSDL is not accessible (server down or whatever), a PHP fatal error is thrown: Fatal error: SOAP-ERROR: Parsing WSDL: Couldn't load ...
2
votes
0answers
419 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
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
2answers
505 views

How to pass an array into a PHP SoapClient call

Using PHP and SoapClient. I need to pass the following XML into a soap request - i.e. multiple <stay>'s within <stays>. <reservation> <stays> <stay> ...
2
votes
3answers
2k views

simple php SoapClient example for paypal needed

Could I get a simple example of using PHP's SoapClient class to make an empty call to Paypal with nothing but the version number? I have the correct WSDL url and server url, so that's not what I need ...
2
votes
6answers
596 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
907 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
20 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
30 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
1answer
105 views

Problem submitting data to Soap Server with PHP

I am unable to pass the header to the WSDL for credencials: this is the code: $soapClient = new SoapClient("https://www.em-sender.com/ws/InwiseWebServices.asmx?WSDL"); $header = ...
1
vote
3answers
120 views

How Can I Prevent PHP SoapClient From Converting Double Value to Scientific Notation?

I'm using the PHP SoapClient and passing a credit card number as one of the values. This number is getting converted to exponential format by the soapCall method. I'm passing 4321432143274321 and ...
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
0answers
353 views

Authenticate a IIS Hosted WCF Service from a PHP Soap Client?

I have a wcf service that is hosted in IIS 7. I have a php soap client that I want to use to access this service. It works fine with no security, but I want to be able to pass the username and ...
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
372 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
2k views

Soap client, how to call a function over HTTPS with Basic HTTP Authentication

This problem has been killing me for the entire day. I have a client web service https://*.asmx?WSDL, with Basic HTTP Authentication.. If I use SoapUI to connect to the webservice, everything works ...
1
vote
2answers
331 views

Can I use the PHP SOAP library in PHP 5.1.1?

I have developed a PHP site with PHP 5.3, and would like to deploy it to a server running PHP 5.1.1. My site depends heavily on the PHP SOAP library, since pretty much everything that isn't a ...
1
vote
2answers
294 views

any alternative for the php function dl()

I need to use soapClient in my php script it works fine in localhost but when I put it on the remote server It says dl() has been disabled for security reasons so is there any other way to load php ...
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
214 views

WSDL using soapclient

Need to access a webservice using soapclient.I have the following settings. ini_set('default_socket_timeout', 120); $client = new SoapClient( "http://example.com/OnlineOrderProcessingWS.asmx?WSDL", ...
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
841 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
2answers
35 views

Using Preg Match to line break full row of text by timestamp

I'm not sure how to explain this but I'll try my best. I have a full line of text that I'm reading from an API using SoapClient with PHP. When I'm getting the data it's putting all of the data on one ...
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
32 views

using classmap to structure a soap call with duplicate elements

I am connecting to a WSDL service and passing an array of parameters. The problem I am having is that some of the parameters I need to pass need to be repeated. When I create a named array the last ...
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
22 views

How could I change tags from XML request to SoapClient?

I have this XML to access a SoapClient <env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope" xmlns:ns1="http://localhost/I9ProWebService"> <env:Body> ...
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
78 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
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
76 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
64 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
0answers
89 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
0answers
146 views

PHP SoapFault Exception - Value cannot be null for parameter inputUri

PHP page calling a .Net web service. The web service and the call from the PHP page had been working. Client requested a new feature, which involves grabbing some info from an XML file. The web ...
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
131 views

PHP SOAP Client throwing error while loading WSDL from paypal

$wsdl = "https://www.sandbox.paypal.com/wsdl/PayPalSvc.wsdl"; $soap = new SoapClient($wsdl); throws the error: SOAP-ERROR: Parsing Schema: unexpected in sequence Tried on PHP versions 5.3.4, ...

1 2