Joined: 12 May 2011 |
Posts: 1 |
|
|
 |
Posted: Thu May 12, 2011 8:45 am |
|
 |
 |
 |
 |
Pablo Cecere <pcecere@gmail.com>
Problem using NuSOAP ... I can use some help. Thanks!
I am trying to invoke a web service.
No matter what I do in the parameters, it shows the same error.
$result = $client->call('SubmitApplication', array(
'SubmitApplicationRequestsss' => 'test'));
the parameter is called SubmitApplicationRequest, but I change it to anything, and the SOAP message is still the same. Looks like it's not recognizing what I do in the call statement.
What am I doing wrong?
Thanks for your help!
Request
POST /Admissions/StudentAdmissions//ProxyServicesApplicationPS HTTP/1.0
Host: myserver:7001
User-Agent: NuSOAP/0.7.3 (1.114)
Content-Type: text/xml; charset=ISO-8859-1
SOAPAction: "http://myserver/application//SubmitApplication"
Content-Length: 458
<?xml version="1.0" encoding="ISO-8859-1"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns2760="http://tempuri.org">
<SOAP-ENV:Body>
<SubmitApplicationRequest xmlns="http://myserver/enterprise/application/"/>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
|