Tagged Questions
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
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
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
407 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
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
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
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
1answer
78 views
What does “Unexpected <import> in schema </import”> mean?
I have the following in a wsdl provdided by my service provider:
<xsd:import namespace="http://web-service-provider.com/2004/10/10" schemaLocation="ASchemas.xsd"/>
<xsd:import ...
0
votes
0answers
107 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
289 views
php SoapClient fails when passed a wsdl with relative path schemas
I have the following issue:
The instantiation of my SoapClient object fails when I pass it a wsdl that imports a schema using relative paths. (I believe this is the case anyway, based on my research)
...
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
1k views
Workaround for PHP SOAP request failure when wsdl defines service port binding as https and port 80?
I am consuming a SOAP web service using php5's soap extension. The service' wsdl was generated using Axis java2wsdl, and whatever options are used during generation result in the port binding url ...