php - Need Help in ResumeParsing Web Service -


i using webservice resume parsing webservice returns error. kindly view code , let me know asap. trying last 1 day failed time.

$client = new soapclient("http://services.resumeparsing.com/resumeservice.asmx?wsdl"); $data = 'post /resumeservice.asmx http/1.1 host: services.resumeparsing.com content-type: text/xml; charset=utf-8  soapaction: "http://services.resumeparsing.com/parseresume" <?xml version="1.0" encoding="utf-8"?> <soap12:envelope xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xmlns:xsd="http://www.w3.org/2001/xmlschema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:body>  <parseresume xmlns="http://services.resumeparsing.com/">  <request> <accountid>36463356</accountid>                     <servicekey>70zgh1vzztlwiqnmbydnkjmimokhs060kpjiobwp</servicekey> <filebytes>'.$contents.'</filebytes> </request>  </parseresume> </soap12:body> </soap:envelope>'; $result = $client->parseresume($data); print_r($result); 

but response

stdclass object ( [code] => missingrequestparameter [message] => missing request parameter: required parameter named 'request' missing. [usesremaining] => 0 )

i cant understand missed in request, have done in .net , working fine in php not work....


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -