How to send xml file for asp.net webservice using php soap -
i have send xml file asp.net based webservice. using php soap client.
here code:
$request = file_get_contents('myfile.xml'); $result = $soap->__dorequest($request, 'location_url', 'action_url', soap_1_2);
and xml file looks like:
<ns1:header xmlns:ns1="http://something.com"> <ns1:timestamp>2014-01-01t13:20:00.000-05:00</ns1:timestamp>
but, every time return blank response. didn't clue side.
any welcome.
Comments
Post a Comment