This is more of a general question about the difference between text/xml and application/xml. I am fairly new to writing webservices (REST - Jersey). I have been producing application/xml since it is what shows up in most tutorials / code examples that I have been using to learn, but I recently found out about text/xml and was wondering what is different about it and when would you use it over application/xml?

link|improve this question

feedback

3 Answers

up vote 12 down vote accepted

From the RFC (3023), under section 3, XML Media Types:

If an XML document -- that is, the unprocessed, source XML document -- is readable by casual users, text/xml is preferable to application/xml. MIME user agents (and web user agents) that do not have explicit support for text/xml will treat it as text/plain, for example, by displaying the XML MIME entity as plain text. Application/xml is preferable when the XML MIME entity is unreadable by casual users.

(emphasis mine)

link|improve this answer
So reading the part that you quoted, reckon what a non-human-readable XML looks like, since XML is pretty much text. I suppose if you embedded binary or base64 encoded data ... – jcolebrand Jan 28 '11 at 19:51
@drachenstern - I think non descriptive elements and attributes more likely (<a1 d="" g="">, for example as unreadable by casual users). – Oded Jan 28 '11 at 19:53
1  
I'm guessing that by "human" they mean "computer nerd". :) – biziclop Jan 28 '11 at 20:03
So if I am creating the xml myself and producing it as a response, is it up to ME to use non-descriptive elements and attributes then if I am using application/xml? – Mike Jan 28 '11 at 20:07
1  
@Mike Of course. Some XML files are basically a list of records, like this: msdn.microsoft.com/en-us/library/ms762271%28v=vs.85%29.aspx This is more likely to be read and processed by an application. Others are basically text with markup, like a HTML page. Using text/xml for them sounds more appropiate. – biziclop Jan 28 '11 at 20:44
show 6 more comments
feedback

According to this article application/xml is preferred.

link|improve this answer
+1 for the link. In your own words, what is the basic conclusion reached in the article? Maybe "the article states that file encoding is ignored, which means you can't send utf-8 and binary data in a file with a text/xml header" also is this verified? – Shanimal Apr 26 at 14:47
feedback

They are both defined on RFC 3023. Take a look

link|improve this answer
1  
Can you expound on that anymore? I don't understand either from what you provided. – jcolebrand Jan 28 '11 at 19:50
That is the specification of both text/xml and application/xml. There you can find all answers of differences of whch one to use and the differences between them – Diego Dias Jan 28 '11 at 20:18
@drachenstern it seems to also be that application/xml supports various charsets / encoding – Mike Jan 28 '11 at 20:26
@Will any reason to have deleted this post? – Diego Dias Feb 2 '11 at 21:25
1  
@diego sorry, I just checked your account and I don't appear to have deleted anything of yours... If I did, it was an accident (which is why it's here). You might have gotten flagged for spam; lots of people flag questions with links to other sites without much thought. I might have tried to clear the flag, but hit the wrong bit of UI. Done it before, might do it again... – Will Feb 3 '11 at 19:22
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.