I got some problem using CustomerService.
When I send the following Post body, the server returned the error message.
Error msg:
"<soap:Envelope xmlns:soap=\"
http://schemas.xmlsoap.org/soap/envelope/\"><soap:Body><soap:Fault><faultcode>soap:Server</faultcode><faultstring>Couldn't parse stream.</faultstring></soap:Fault></soap:Body></soap:Envelope>"
Post body:
<?xml version="1.0"?>
<soapenv:Header>
<ns1:userAgent>name</ns1:userAgent>
<ns1:developerToken>token</ns1:developerToken>
<ns1:validateOnly>false</ns1:validateOnly>
<ns1:partialFailure>false</ns1:partialFailure>
</ns1:RequestHeader>
</soapenv:Header>
<soapenv:Body>
</getCustomers>
</soapenv:Body>
</soapenv:Envelope>
How could I do?
Is the xml format wrong?
Kenny