I'm having trouble getting xml from the healthdata.gov data service (http://healthindicators.gov/Developers/). Below, I use php CURL to make a POST request, with my request being an xml string. I am expecting to retrieve xml data back. I'm getting an error back from the service that is saying that I did not set the content-type to "application/xml" which I did!
Healthdata.gov is a huge and important data source but strangely their documentation is not easy (for me) to understand. Has anyone succeed in pulling data from this service?
Thanks in advance
(code below, application is here: http://cd47ddcc.dotcloud.com).
#index.php
//set URL
$url = 'http://services.healthindicators.gov/v2/REST.svc/Indicators/Filter';
//set xml request
$xml = '
<SearchQuery xmlns="http://schemas.datacontract.org/2004/07/S3.Common.Search" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Mode>And</Mode>
<Elements>
<SearchElement i:type="SearchParameter">
<Name>IndicatorDescriptionID</Name>
<Operator>Equal</Operator>
<Value>15</Value>
</SearchElement>
<SearchElement i:type="SearchParameter">
<Name>LocaleID</Name>
<Operator>Equal</Operator>
<Value>39</Value>
</SearchElement>
</Elements>
<Page>1</Page>
</SearchQuery>
';
// Get the curl session object
$session = curl_init($url);
// set url to post to
//curl_setopt($session, CURLOPT_URL,$url);
// Tell curl to use HTTP POST;
curl_setopt ($session, CURLOPT_POST, true);
// Tell curl that this is the body of the POST
curl_setopt ($session, CURLOPT_POSTFIELDS, $xml);
// Tell curl not to return headers, but do return the response
curl_setopt($session, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, Array("Content-Type: application/xml; charset=utf-8"));
curl_setopt($session, CURLOPT_RETURNTRANSFER, true);
// allow redirects
//curl_setopt($session, CURLOPT_FOLLOWLOCATION, true);
$response = curl_exec($session);
//print_r ($response);
echo "<h1>Health Data</h1><br />";
echo $response;
echo "<hr />";
curl_close($session);
$chto$sessionI presume :) – Wrikken Jul 28 '11 at 0:42$chnot being an existing variable ;) – Wrikken Jul 28 '11 at 0:50