I request Google Places API and would like to get the response in XML.I do this:\[code\]def http = new HttpURLClient( )def resp = http.request(url:uRL)render(text: resp.getData(), encoding:"UTF-8", contentType:"text/xml")\[/code\]It returns the data, but without the XML tags. So the plain data as string. I am 100% sure, that I get XML formatted data back from Google. The response from Google looks like (this shows the browser): \[code\]<PlaceSearchResponse><status>OK</status><result><name>Beth-El Synagogue</name><vicinity>Elizabeth Av & Downing, St. John's</vicinity><type>synagogue</type><type>place_of_worship</type><type>establishment</type><geometry><location><lat>47.5799640</lat><lng>-52.7172920</lng></location></geometry><icon>http://maps.gstatic.com/mapfiles/place_api/icons/worship_jewish-71.png</icon><reference>CnRwAAAAH3oJJ3PaJPk5kesLiioompBTCh2NUBDxAh-wUKwZkFeolqoDCOEoOTYe9UpUdhVhkqMoL9mPPd-C0PuIvkyqBwfvdli1zHvaaEfJklQBHd-haHfMceF4vlPxV5r9kaSyWTwOAGSJWQhT6pkXmmoMCBIQbP457ZvQWJsX0JIEc-DnORoU_NRRZIlZN08azb3UL_X-xpqS6N4</reference><id>b61e059f04e643fce7f4750a42c686901096bab3</id></result><html_attribution>Listings by <a href="http://www.yellowpages.ca/">YellowPages.ca</a></html_attribution></PlaceSearchResponse>\[/code\]I just want to render the response again. So, what is wrong with the code on the top?Thx.