0
votes
2answers
13 views

how to get value soap response in PHP?

Please help me guys... I'm struggling with this.. Problem How to get FirstName value from this ... in PHP GetReportResponse Object ( [GetReportResult] => MBPeopleSearchRs_Type Object ( ...
1
vote
1answer
40 views

Getting value from SOAP response in php

I am getting a SOAP response for a SOAP call perfectly using SOAP ui but when I call the same in php, I am not able to traverse to the desired element(CreditId in this case), which I want. The ...
0
votes
0answers
28 views

Adding simpleContent using nusoap

My problem seems to be very simple, but I just can't find any solution. I use nusoap for webservice, and I need to produce a structure like this (from php arrray): <ns0:measurementUnitList> ...
0
votes
0answers
23 views

How can I describe choice element using nusoap?

I use nusoap to generate wsdl and I'm stuck at the point trying to describe choice element (xsd:choice). The required xsd part looks like this: <xsd:complexType ...
0
votes
2answers
56 views

Sending XML input to WSDL using SoapClient

I have this WSDL: https://secure.softwarekey.com/solo/webservices/XmlCustomerService.asmx?WSDL I am trying to use SoapClient to send a request to the CustomerSearch method. The code I'm using is as ...
0
votes
1answer
25 views

Is it possible to map element name to php class (SoapClient)

Using SoapClient, is it possible to map an element name (as opposed to a type) to a php class? In the php manual: http://www.php.net/manual/en/soapclient.soapclient.php classmap is defined thus: ...
0
votes
0answers
22 views

windows phone, wsdl function “not found” error

I am programming a little windows phone 7 application. It should consume webservices. I tested sucessfully the code in a xammp (local) environment, but if on a free webhoster I get an error ...
0
votes
1answer
95 views

Soap request using cURL and PHP

I'm trying to send a SOAP post via Curl in PHP but I always get a couldn't connect to host problem. But when i trie to use the same URL in a web based client like hurl, a got the correct response : ...
0
votes
1answer
32 views

PHP native Soap, NuSoap or Zend Soap? [closed]

Being relatively new to Soap in PHP, I have created a small extend on the Native PHP Soap classes for an set of commands based on wsdl. This code is pretty ugly. I have used a generator I have found ...
0
votes
0answers
25 views

nusoap wsdl connection error but in telnet test everything is OK

I use nusoap to connect to an URL, But I cannot connect and I didn't get any error in $soapclient->getError() . I can connect to that URL via SSH commant and telnet, that URL show an XML data on ...
0
votes
0answers
37 views

PHP SOAP ISSUE / XORA.COM WSDL API

I am having trouble with XORA.com WSDL API (Field Force Manager - http://www.xora.com/developer/ffmdev/ffm_dev_home.html). Since you have to have a username / company id / password to access, I have ...
0
votes
0answers
27 views

Sending attributes to soap envelope request

I am trying to implement an email send function on php. The wsdl structure looks like this: <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" ...
0
votes
0answers
18 views

SoapClient Strictly Follow WSDL (Like .NET)

Is there a way to make PHP's SoapClient strictly follow the declaration in the WSDL? In other words, if a method is not defined, it will through an error, etc. My problem is that on my PHP ...
0
votes
0answers
25 views

how to construct the WSDL with array structure

How can I construct the WSDL with the array structure? For example if I want to send following XML to server, how can I construct the array element type in WSDL file? I use Apache server and PHP ...
-3
votes
0answers
28 views

translate portion of from c# to php for a wsdl response [closed]

i need a help for translate an example of code written in c# that retrieve the response (OK or KO) of creation of a new customer. this is the wsdl ...
0
votes
0answers
18 views

Retrieve value from WSDL using SOAP - PHP

I have a very poor, in structure, WSDL file and I can't understand how I can retrieve information from it. VM is not accessible from an outside network so I can't share the whole WSDL file I ...
0
votes
0answers
18 views

php soapClient request with sequence of Structures [duplicate]

This may be somewhat of a duplicate, so mods please delete if you feel it is a duplicate of PHP soapClient and Sequences issue. I figured I would just simplify what I was asking in my previous ...
0
votes
0answers
100 views

SoapClient(): SSL operation failed with code 1

I have a problem to invoke a web service with SoapClient and https. Code : $config = array('trace' => 1, 'exceptions' => 0); $soap_client = new ...
0
votes
0answers
59 views

Soap Request through php (envelope)

I'm currently working on getting information (availability of product from a manufacturer) from a soap web-service using WSDL. I'm stuck on getting the actual request through to the service, I tried ...
1
vote
4answers
216 views

Connection of PEAR SOAP with WSDL to C# standalone .exe

I am trying to create a Web Service where parameters chosen from a web-page are sent to a standalone.exe written in C# which controls a CAD package installed on the server. The CAD package then ...
0
votes
1answer
83 views

Array response in WSDL - SOAP PHP

In my wsdl code, i get an integer and i want to return result in array. Why in my input i have only one integer and i need result in array because in my php function i want to return information from ...
0
votes
1answer
81 views

executing a webservice created in progress with php

hello I have a webservice created in Progress, and I need to create a client in php. I have this example created in Progress to create the client: //connect CREATE SERVER hWebService. ...
1
vote
1answer
91 views

PHP/SOAP dont create desired xml request

I am trying to use a WSDL web service with php/soap. And it always gives a deserializing error which is exactly: Error in deserializing body of request message for operation 'Test'. ...
0
votes
0answers
31 views

Should i send the variables that WSDL asks or the ones the WebMethod asks?

If i have a C# WebService (it was not me who coded it), that has the following WebMethod: public string getObjetivos(int intUnidadeID, string strMascara, string strdtInicial, string strdtFinal){... ...
0
votes
1answer
40 views

PHP SOAP WSDL cache not working

i'm troubled with soap wdl cache directory where i set to save my soap object. I've set the soap.wsdl_cache_dir="/tmp" in php.ini. I don't know how it's not saving any files in /tmp folder after i ...
0
votes
0answers
85 views

Debug SOAP call in PHP: An exception has been raised as a result of client data

I am working with the UPS api and am having a difficult time debugging. I am getting the following stack trace: Details Type: SoapFault Message: An exception has been raised as a result of client ...
1
vote
0answers
48 views

getting soap type names with namespaces

<?php $silverpop = new SoapClient('SoapApi.xml'); print_r($silverpop->__getTypes()); That returns the SOAP type names as defined by the WSDL but it's not returning them with the namespace ...
0
votes
0answers
71 views

PHP5 SoapClient consumes WCF - But the returned object is empty with no errors

The goal: To consume a simple WCF4 service. The WCF takes 2 parameters, DateStart & DateEnd as yyyy-MM-dd.The returned result should contain objects with about 16 property values each.The WCF ...
0
votes
1answer
132 views

PHP SoapClient constructor very slow

I am new to Web Services. I am experiencing inexplicably random SoapClient constructor execution times. Usually the call takes about 10 seconds. Sometimes it takes less than one second, but this ...
0
votes
0answers
194 views

Fedex Shipping Labels API not sending Address 2

THE SOAP REQUEST AS SENT <?xml version="1.0" encoding="UTF-8"?> <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://fedex.com/ws/ship/v12"> ...
0
votes
1answer
397 views

Parse error: syntax error, unexpected 'string' (T_STRING), expecting variable (T_VARIABLE when casting class properties [closed]

LocalSoapClient.php <?php class LocalSoapClient { private string $clientPath; private SoapClient $soapClient; public CtSourceInfo $sourceInfo; public function ...
0
votes
0answers
61 views

Having problems with passing Array of arrays to a web method using php

Here is my problem: I have a wsdl file that explains the types of parameters and web methods served by a web service. <s:element name="ActivateVouchers"> <s:complexType> ...
0
votes
1answer
33 views

Need to sort large amount of data via a WSDL return

I have a complex problem that I need some guidance on. We are a non-profit that certifies factories throughout the world as ethical or not. We have a WSDL web service that returns the names and ...
0
votes
1answer
118 views

best way to generate wsdl in php for java axis client

I am consuming a web service written in PHP. I am using axis to generate client jar on my side but when i generate client code from WSDL and make request, request xml contains multiRef tag and the php ...
0
votes
1answer
96 views

Getting fatal-error on Calling WCF in PHP using SoapClient over https

I am newbie to services, i am currently calling .net WCF service in PHP using SoapClient object. Code is as follows: ...
0
votes
1answer
134 views

Switched from Ubuntu Server to RHEL php SoapClient stopped sending BasicAuth. (was Fatal error: SOAP-ERROR: Parsing WSDL: Couldn't find <definitions>)

So it turns out our issues were all because php was not sending our BasicAuth credentials and choking on the 401-Unauthorized page. Does anybody know what might be causing this issue? We've tried ...
1
vote
0answers
154 views

PHP SoapClient + Zend_Soap_Autodiscover + VersionMismatch

I am building an application which uses soap. I am using Zend_Soap_Autodiscover for WSDL generation, and SoapClient and SoapServer for handling the requests. The problem that i am having is that ...
1
vote
0answers
109 views

how to respond to wsdl policies using php nusoap

I wish to consume a webservice described in a wsdl file. I am using php and nusoap library. I am not sure how to correctly respond to the following policy requests: <wsp:Policy ...
3
votes
2answers
54 views

KeyValuePairOfstringanyType, how do I declare and format this?

I have a data object in php generated from a WSDL. One variable in this data object is named " KeyValuePairOfstringanyType" of type KeyValuePairOfstringanyType[] great. How do I declare that and ...
0
votes
1answer
65 views

wsdl connection in PHP

I have a bizarre situation where I can get the URL $wsdl = 'https://www.connectwebservice.com/sandbox1_test/services/IR?wsdl over a normal web browser URL buy putting the path into the URL bar, but I ...
0
votes
0answers
133 views

PHP passing parameters to WSDL - wrong structure (functions and types)

First of all sorry for my bad English. Im trying to get some information from wsdl by still getting: [__last_response_headers] => HTTP/1.1 500 Internal Server Error [__last_response] => ...
0
votes
1answer
68 views

Am I doing something wrong with the PHP SOAP_CLIENT?

I have a very basic knowledge about SOAP, for me I think of SOAP as a translator for two different people, which both speaks different languages, trying to communicate with each other. I am trying to ...
0
votes
0answers
91 views

Decoding error Flex 4.6 and Zend Soap Server

I am attempting to retrieve data from a Zend Soap server into a Flex application. I am able to get access to the service, but a fault event is generated when I call the method 'returnUser' with the ...
0
votes
1answer
128 views

Issuing SOAP request through PHP to WSDL generated from C#, struggling with syntax

I've got a web service which was written in C#. I am calling this web service's methods from PHP. All of the methods which expect primitive parameters work great. I'm receiving exceptions when ...
0
votes
0answers
59 views

Send Customized SOAP Header in SOAP Request in PHP

I have to call functions of third party API. I am having their WSDL File and I have to call functions in that using SOAP call. In order to successfully communicate they require to include one header ...
0
votes
0answers
142 views

Issue in passing parameters in soap call to wsdl in php

I having a wsdl file which look like in the below structure <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:not="http://notification.ws.api.com/"> ...
0
votes
0answers
31 views

soap throws function name error in php

I am calling the below wsdl url from soap using PHP $response = new SoapClient("http://192.168.1.8:8080/myAPI/ws/TESTWS?wsdl"); I am checking the function name from soapclient return values using ...
0
votes
1answer
267 views

How to send parameters to wsdl file using soap in php

I have a wsdl file with location, i want to send the request value through soap, i am trying the below scenario. But its not calling the wsdl function. Kindly help me how to send soap request ...
0
votes
1answer
300 views

Uncaught SoapFault Exception [Http] Internal Server Error

I'm developing an API(PHP) to communicate using SOAP with other client, connecting with the client is perfectly fine but when i call a function i receive this error message: "Uncaught SoapFault ...
0
votes
1answer
84 views

How I can describe wsdl choice element in my service class using Zend\Soap\AutoDiscover?

I use \Zend\Soap\AutoDiscover class to generate wsdl of soap service from service class. I described type of properties in doc blocks. However, I have to describe choice element (xsd:choice) but I ...

1 2 3 4 5 11