Tagged Questions

23
votes
7answers
14k 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
5k 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
182 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
545 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
719 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
700 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
0answers
33 views

How send an object from PHP to Java web service using SOAP?

I have a running web service (using EclipseLink as JPA provider) and would like to call the methods that updates data in the database from PHP using SOAP. A method in the web service may look ...
2
votes
2answers
323 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
489 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
332 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
563 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
633 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
955 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
26 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
54 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
56 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
77 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
78 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
124 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
147 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
144 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
371 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
148 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
423 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
343 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
317 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
2answers
270 views

Why does the order of SOAP parameters matter in PHP SOAP, and how to fix it?

A comment on the PHP manual states: If you are using this method, remember that the array of arguments need to be passed in with the ordering being the same order that the SOAP endpoint ...
1
vote
1answer
279 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
220 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
864 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
27 views

Error fetching http headers in SoapClient

I'm trying to invoke a WS over https on a remote host:remote port and I get: Error fetching http headers using PHP5 SoapClient; I can get the list of functions by doing ...
0
votes
1answer
41 views

PHP Parse Soap Reponse Issue - SimpleXMLElement

I'm having problems using PHP SimpleXMLElement and simpleSMLToArray() function to parse a SOAP Response. I'm getting the SOAP response from my SOAP Server just fine. I'm writing both the SOAP Client ...
0
votes
1answer
29 views

Amazon ItemSearch Request is “Valid” but No Results Returned using PHP SoapClient

I posted this in the Amazon Product Advertising forum but noone is responding, so maybe someone here can help me out. I'm trying to get a few items to display based on a keyword, so far I have this ...
0
votes
1answer
88 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
2answers
45 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
41 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
60 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
48 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
94 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
29 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
60 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
62 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
93 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
34 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> ...

1 2