Should the webserver add "Content-Type: text/xml header" to the requested XML file?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • K Viltersten

    #1

    Should the webserver add "Content-Type: text/xml header" to the requested XML file?

    I've been informed that a webserver sending a
    XML file is supposed to add "Content-Type:
    text/xml header".

    I'm not questioning that infromation but i'm
    unsure what was ment by it. The XML i get on
    my screen when i type in the url to it looks
    as follows.

    <?xml version="1.0" encoding="UTF-8"?>
    <tag-uno>uno</tag-uno>
    <tag-duo>duo</tag-duo>

    I can't see any line containing "text/xml"
    but perhaps it's not supposed to show in the
    requested file. Please advise.

    --
    Regards
    Konrad Viltersten
    --------------------------------
    sleep - a substitute for coffee for the poor
    ambition - lack of sense to be lazy

  • Bjoern Hoehrmann

    #2
    Re: Should the webserver add &quot;Conten t-Type: text/xml header&quot; to the requested XML file?

    * K Viltersten wrote in comp.lang.javas cript:
    >I've been informed that a webserver sending a
    >XML file is supposed to add "Content-Type:
    >text/xml header".
    This is a reference to information in the HTTP header. There are various
    tools to inspect the HTTP header, for an example see The W3C web service
    <http://cgi.w3.org/cgi-bin/headers?url=htt p://cgi.w3.org/cgi-bin/headers>.
    This information isn't visible if you "View Source" in your web browser.
    You have to configure your web server to generate this header, how to do
    that depends on your server software and how you store the XML on it. It
    would be better, to use "applicatio n/xml" instead of "text/xml" by the
    way.
    --
    Björn Höhrmann · mailto:bjoern@h oehrmann.de · http://bjoern.hoehrmann.de
    Weinh. Str. 22 · Telefon: +49(0)621/4309674 · http://www.bjoernsworld.de
    68309 Mannheim · PGP Pub. KeyID: 0xA4357E78 · http://www.websitedev.de/

    Comment

    • K Viltersten

      #3
      SV: Should the webserver add &quot;Conten t-Type: text/xml header&quot; to the requested XML file?

      >>I've been informed that a webserver sending a
      >>XML file is supposed to add "Content-Type:
      >>text/xml header".
      >
      This is a reference to information in the HTTP
      header. There are various tools to inspect the
      HTTP header, for an example see The W3C web
      service <http://cgi.w3.org/cgi-bin/headers?
      url=http://cgi.w3.org/cgi-bin/headers>.
      This information isn't visible if you "View
      Source" in your web browser.
      Thanks for the answer. I believe i'm starting
      to grasp the cause of the issue now. Still,
      there are two things i'm unclear about.
      You have to configure your web server to
      generate this header, how to do that depends
      on your server software and how you store the
      XML on it.
      The server is something that MS VWD starts
      automatically when i choose to view a HTML in
      the browser. I really, really have no clue how
      to configure it. Is it something specific to
      MS SQL Server?
      It would be better, to use "applicatio n/xml"
      instead of "text/xml" by the way.
      Why? (I'm not arguing against the statement.
      Just want to understand.)

      --
      Regards
      Konrad Viltersten
      --------------------------------
      sleep - a substitute for coffee for the poor
      ambition - lack of sense to be lazy

      Comment

      • Bart Van der Donck

        #4
        Re: Should the webserver add &quot;Conten t-Type: text/xml header&quot; to therequested XML file?

        Bjoern Hoehrmann wrote:
        ...
        You have to configure your web server to generate this header, how to do
        that depends on your server software and how you store the XML on it. It
        would be better, to use "applicatio n/xml" instead of "text/xml" by the
        way.
        In the OP's case, 'text/xml' should be used when offering an XML-file
        to the browser, regardless of how the XML-data itself was generated at
        the server.

        http://www.ietf.org/rfc/rfc3023.txt says:

        | If an XML document -- that is, the unprocessed, source XML document
        | -- is readable by casual users, text/xml is preferable to
        | application/xml.

        Nevertheless Apache seems to prefer 'application/xml' when nothing
        else is specified.

        --
        Bart

        Comment

        Working...