* The <tt>Content-Type</tt> header of the request is set to <tt>application/xml</tt>.
* @param xml the XML
* @return the Fake Request
*/
public FakeRequest withXmlBody(InputSource xml) {
return withAnyContent(new AnyContentAsXml(scala.xml.XML.load(xml)), "application/xml", this.fake.getMethod());
}