up vote 89 down vote favorite
9
share [g+] share [fb]

When working with PDFs, I've run across the MIME types 'application/pdf' and 'application/x-pdf' among others.

Is there a difference between these two types, and if so what is it? Is one preferred over the other?

I'm working on a web-app which must deliver huge amounts of PDFs and I want to do it the correct way, if there is one.

link|improve this question

The answers below do talk about the two MIME types that you mention, but you mention you have seen others. Could you please mention some of these? – navjotk Jan 20 at 12:55
@navjotk, I've also seen application/vnd.pdf, and even text/pdf (which is obviously wrong, but it's out there.) – friedo Jan 20 at 21:00
feedback

2 Answers

up vote 124 down vote accepted

The standard MIME type is application/pdf. The assignment is defined in RFC 3778, The application/pdf Media Type, referenced from the MIME Media Types registry.

MIME types are controlled by a standards body, The Internet Assigned Numbers Authority (IANA). This is the same organization that manages the root name servers and the IP address space.

link|improve this answer
11  
so... why does x-pdf get used sometimes? – Kip Sep 8 '10 at 20:26
This answer is incomplete and didn't respond at all to the "is there a difference and which is it?" part of the question... – pipitas Dec 19 '11 at 19:54
1  
The use of x-pdf predates the standardization of the MIME type for PDF. MIME types in the "x-" namespace are considered experimental, just as those in the "vnd." namespace are considered vendor-specific. x-pdf might be used for compatibility with old software. – Chris Hanson Dec 23 '11 at 22:54
feedback

Kip,

This is a convention defined in RFC 2045 - Multipurpose Internet Mail Extensions (MIME) Part One: Format of Internet Message Bodies.

If another top-level type is to be used for any reason, it must be given a name starting with "X-" to indicate its non-standard status and to avoid a potential conflict with a future official name.

(Note that per RFC 2045, "[m]atching of media type and subtype is ALWAYS case-insensitive", so there's no difference between the interpretation of 'X-' and 'x-'.)

So it's fair to guess that "application/x-foo" was used before the IANA defined "application/foo". And it still might be used by folks who aren't aware of the IANA token assignment.

As Chris Hanson said MIME types are controlled by the IANA. This is detailed in RFC 2048 - Multipurpose Internet Mail Extensions (MIME) Part Four: Registration Procedures. According to RFC 3778, which is cited by the IANA as the definition for "application/pdf",

The application/pdf media type was first registered in 1993 by Paul Lindner for use by the gopher protocol; the registration was subsequently updated in 1994 by Steve Zilles.

The type "application/pdf" has been around for well over a decade. So it seems to me that wherever "application/x-pdf" has been used in new apps, the decision may not have been deliberate.

link|improve this answer
4  
"the decision may not have been deliberate" - LOL. Delicately put. – Spike0xff Jun 17 '11 at 21:27
feedback

Your Answer

 
or
required, but never shown

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