I have this xml: <myxml> <body> <p xmlns="http://www.w3.org/1999/xhtml">Test</p> </body> </myxml> Firefox will attempt to render this as html. <myxml> <body> <p>Test</p> </body> </myxml> Firefox will attempt to parse this as xml. The response type has no affect on Firefox behavior. Is there any method to force the first file to be parsed as xml and not rendered as xhtml with the namespace include? Any information appreciated... |