in reply to Re^4: XML::Generator bad header?
in thread XML::Generator bad header?

Then your webserver does some printing also

Replies are listed 'Best First'.
Re^6: XML::Generator bad header?
by hallikpapa (Scribe) on Aug 19, 2007 at 07:34 UTC
    It;s like a default apache server. installed it just for testing. v2.0
      I guess you have a problem with your httpd.conf configuration,
      you can modify the headers apache sends with the Header directive.
      http://httpd.apache.org/docs/2.0/mod/mod_headers.html#header

      In order to debug the headers, you could telnet to your apache server:
      telnet localhost 80
      Trying 127.0.0.1... Connected to localhost. Escape character is '^]'.
      GET /now.xml
      This way you'll get the full response of apache.

      I use firefox with firebug (http://www.getfirebug.com/)
      Within firebug you can debug the headers, too.
      Michael