Application vnd ms excel xml

I use CarlosAG-Dll which creates a XML-Excel-file for me (inside a MemoryStream).

Response.ContentType = "application/vnd.ms-excel";
Response.AppendHeader("content-disposition", "myfile.xml");
memory.WriteTo(Response.OutputStream);

My Problem here is, that I get at client side a myfile.xls (IE) or a myfile.xml.xls (FF) and therefore get an annoying security warning from excel.

I tried it as well with application/vnd.openxmlformats-officedocument.spreadsheetml.sheet (xlsx) but then it won’t even open.

So I need to either cut the .xml and send it as vnd.ms-excel (how?) or take another MIME-type (but which one?).


edit: I found a bug description here

I wonder if this is still open and why?

asked Nov 17, 2011 at 11:17

UNeverNo's user avatar

UNeverNoUNeverNo

5493 gold badges8 silver badges29 bronze badges

0

Use like this

Response.ContentType = "application/vnd.ms-excel";

Response.AppendHeader("content-disposition", "attachment; filename=myfile.xls");

For Excel 2007 and above the MIME type differs

Response.ContentType = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet";

Response.AppendHeader("content-disposition", "attachment; filename=myfile.xlsx");

See list of MIME types

Office 2007 File Format MIME Types

EDIT:

If the content is not a native Excel file format, but is instead a
text based format (such as CSV, TXT, XML), then the web site can add
the following HTTP header to their GET response to tell IE to use an
alternate name, and in the name you can set the extension to the right
content type:

Response.AddHeader "Content-Disposition", "Attachment;Filename=myfile.csv"

For more details see this link

David Moles's user avatar

David Moles

46.7k27 gold badges133 silver badges231 bronze badges

answered Nov 17, 2011 at 11:52

Prasanth's user avatar

PrasanthPrasanth

3,02930 silver badges44 bronze badges

5

If your document is an Excel Xml 2003 document, you should use the text/xml content type.

Response.ContentType = "text/xml";

Do not specifiy content-disposition.

This technichs works great with Handler, not with WebForm.

answered Jul 3, 2013 at 13:09

Franky's user avatar

The security warning is NOT about the MIME type — it is a client-side security setting you can’t disable from the server side !

Another point — change Response.AppendHeader("content-disposition", "myfile.xml"); to:

Response.AppendHeader("content-disposition", "attachment; filename=myfile.xlsx");

OR

Response.AppendHeader("content-disposition", "inline; filename=myfile.xlsx");

For reference see http://www.ietf.org/rfc/rfc2183.txt

EDIT — as per comment:

IF the format is not XLSX (Excel 2007 and up) then use myfile.xls in the above code.

answered Nov 17, 2011 at 11:22

Yahia's user avatar

YahiaYahia

69.2k9 gold badges113 silver badges144 bronze badges

3

MIME (Multipurpose Internet Mail Extensions) is a media type used to identify a type of data on the Internet or by applications. Its name contains the word «Internet» but it is not only limited to the Internet.IANA is in charge of standardizing and disseminating these MIME classifications.

There are numerous popular extensions available among them. One of them is the Excel MIME type.

Every mime type is divided into two parts, which are separated by a slash (/).

1 Type is a logical grouping of many MIME types that are similar to one another. All Excel files have an application as a type.

2 SubType is specific to a single file type within the «type«.They are unique within the «type».Some of the subtypes for excel files are: vnd.ms-excel,vnd.openxmlformats-officedocument.spreadsheetml.sheet,vnd.openxmlformats-officedocument.spreadsheetml.template,vnd.ms-excel.sheet.macroEnabled.12 etc.

There are various MIME types for Excel for various Excel-related files and their extensions such as. xls,.xlsx,.xlt,.xla, and so on.

Let’s look at Excel file MIME Type and extension used by them in table format.

Extension  MIME Type (Type / SubType) Kind of Document
.xls application/vnd.ms-excel  Microsoft Excel   
.xlsx application/vnd.openxmlformats-officedocument.spreadsheetml.sheet  Microsoft Excel (OpenXML) 
.xltx  application/vnd.openxmlformats-officedocument.spreadsheetml.template Office Excel 2007 template
.xlsm application/vnd.ms-excel.sheet.macroEnabled.12  Office Excel 2007 macro-enabled workbook
.xltm application/vnd.ms-excel.template.macroEnabled.12 Office Excel 2007 macro-enabled workbook template
.xlam application/vnd.ms-excel.addin.macroEnabled.12 Office Excel 2007 macro-enabled add-in
.xlsb application/vnd.ms-excel.sheet.binary.macroEnabled.12 Office Excel 2007 non xml binary workbook

various-format-of-excel-file

fig. various format for saving excel file

Let’s explain them in brief.

1 .xls

.xls is one of the older file extension of Microsoft Excel Spreadsheet.It is created by Excel 97 or Excel 2003. They by default generate .xls format.

MIME Type Supported by .xls file is application/vnd.ms-excel where the application of MIME type and vnd.ms-excel is subtypes and vnd here means vendor-specific which in this case vendor is Microsoft.

If you have an.xls file and want to open it in Excel before prior 2007, you can do so easily because Excel before 2007 recognizes application/vnd.ms-excel and does not require to afford to open it.

Despite the fact that the.xls file format is older, it can be opened in all versions of Excel due to backward compatibility in newer versions.

2 .xlsx

xlsx is the new file extension of the Microsoft Excel Spreadsheet. It is created by Excel 2007 and later versions.

If you create an excel file in Excel 2007 or later, it will be saved with the.xlsx extension by default; however, you can also save the same file in.xls format.xlsx is more secure and better for data storage(ie. smaller file size) than xls.

MIME type for .xlsx file is application/vnd.openxmlformats-officedocument.spreadsheetml.sheet where MIME type is application and subtype is vnd.openxmlformats-officedocument.spreadsheetml.sheet

It is a file format based on Office OPEN XML developed by Microsoft for representing spreadsheets. Because xlsx is an open standard, other software application vendors, such as Google (Google Sheets), can use it to interoperate with their spreadsheet applications.

📑 The last «x» in the xlsx file extension indicates that the file is based on the XML Standard.

You can open Xls file in excel 2007 and later and convert them to xlsx and save it.

3 .xltx 

Microsoft Excel Template files with the. xltx extensions are based on the Office OpenXML file format specifications. It is used to generate a standard template file that can be used to generate XLSX files with the same settings as the XLTX file.

MIME type for .xlsx file is application/vnd.openxmlformats-officedocument.spreadsheetml.template where MIME type is application and subtype is vnd.openxmlformats-officedocument.spreadsheetml.sheet

It is XML based file format developed by Microsoft for representing templates. An XLTX is identical to an XLSX in every way except that Excel creates a new instance of an XLSX if the file opened is an XLTX.

📓 xltx is the replacement for the old .xlt format.

4  .xlsm

An XLSM file is a macro-enabled spreadsheet created by Microsoft Excel that can also be opened with Google Sheets.XLSM files are based on the Office Open XML format, where the last «m» of an xlsm file extension indicates that the file contains macros.Macros can be stored within an xlsm file, allowing users to automate repetitive tasks.

MIME type for .xlsx file is application/vnd.ms-excel.sheet.macroEnabled.12 where MIME type is application and subtype is vnd.ms-excel.sheet.macroEnabled.12

5  .xlam

An XLAM file extension indicates an Excel Macro-Enabled Add-In file, which is used to provide additional functionality for spreadsheets.
It has the following MIME types:application/vnd.ms-excel.template.macroEnabled.12 where MIME type is application and subtype is vnd.ms-excel.template.macroEnabled.12

Because of the file’s purpose, there is built-in macro support in .xlam files.

6 .xlsb

An XLSB file is an Excel Binary Workbook file that stores data in binary rather than XML format. Because they are stored in binary, the read and write times in xlsb files are faster, and they have been found to be useful for very large and complex spreadsheets for this reason. They are also smaller in size than the XLSM format.

MIME type for .xlsx file is application/vnd.ms-excel.sheet.binary.macroEnabled.12 where MIME type is application and subtype is vnd.ms-excel.sheet.binary.macroEnabled.12

FAQ:

How to generate .xls file in C# ?

For generating a .xls file in C# code you have to mention application/vnd.ms-excel MIME types in response header as shown below.

Response.ContentType = "application/vnd.ms-excel";
Response.AppendHeader("content-disposition", "attachment; filename=sample.xls");

How to generate .xlsx file in C#?

For generating a .xls file in C# code you have to mention application/vnd.openxmlformats-officedocument.spreadsheetml.sheet MIME types in response header as shown below.

Response.ContentType = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet";
Response.AppendHeader("content-disposition", "attachment; filename=sample.xls");

If you are generating Excel file target to xlsx file then you have to use above.

What is the replacement of the xla format?

Ans: xlam is the replacement for the old .xla format.

This topic lists the most common MIME types with corresponding document types, ordered by their common extensions.

The following two important MIME types are the default types:

  • text/plain is the default value for textual files. A textual file should be human-readable and must not contain binary data.
  • application/octet-stream is the default value for all other cases. An unknown file type should use this type. Browsers are particularly careful when manipulating these files to protect users from software vulnerabilities and possible dangerous behavior.

IANA is the official registry of MIME media types and maintains a list of all the official MIME types. This table lists important MIME types for the Web:

Extension Kind of document MIME Type
.aac AAC audio audio/aac
.abw AbiWord document application/x-abiword
.arc Archive document (multiple files embedded) application/x-freearc
.avif AVIF image image/avif
.avi AVI: Audio Video Interleave video/x-msvideo
.azw Amazon Kindle eBook format application/vnd.amazon.ebook
.bin Any kind of binary data application/octet-stream
.bmp Windows OS/2 Bitmap Graphics image/bmp
.bz BZip archive application/x-bzip
.bz2 BZip2 archive application/x-bzip2
.cda CD audio application/x-cdf
.csh C-Shell script application/x-csh
.css Cascading Style Sheets (CSS) text/css
.csv Comma-separated values (CSV) text/csv
.doc Microsoft Word application/msword
.docx Microsoft Word (OpenXML) application/vnd.openxmlformats-officedocument.wordprocessingml.document
.eot MS Embedded OpenType fonts application/vnd.ms-fontobject
.epub Electronic publication (EPUB) application/epub+zip
.gz GZip Compressed Archive application/gzip
.gif Graphics Interchange Format (GIF) image/gif
.htm, .html HyperText Markup Language (HTML) text/html
.ico Icon format image/vnd.microsoft.icon
.ics iCalendar format text/calendar
.jar Java Archive (JAR) application/java-archive
.jpeg, .jpg JPEG images image/jpeg
.js JavaScript text/javascript (Specifications: HTML and RFC 9239)
.json JSON format application/json
.jsonld JSON-LD format application/ld+json
.mid, .midi Musical Instrument Digital Interface (MIDI) audio/midi, audio/x-midi
.mjs JavaScript module text/javascript
.mp3 MP3 audio audio/mpeg
.mp4 MP4 video video/mp4
.mpeg MPEG Video video/mpeg
.mpkg Apple Installer Package application/vnd.apple.installer+xml
.odp OpenDocument presentation document application/vnd.oasis.opendocument.presentation
.ods OpenDocument spreadsheet document application/vnd.oasis.opendocument.spreadsheet
.odt OpenDocument text document application/vnd.oasis.opendocument.text
.oga OGG audio audio/ogg
.ogv OGG video video/ogg
.ogx OGG application/ogg
.opus Opus audio audio/opus
.otf OpenType font font/otf
.png Portable Network Graphics image/png
.pdf Adobe Portable Document Format (PDF) application/pdf
.php Hypertext Preprocessor (Personal Home Page) application/x-httpd-php
.ppt Microsoft PowerPoint application/vnd.ms-powerpoint
.pptx Microsoft PowerPoint (OpenXML) application/vnd.openxmlformats-officedocument.presentationml.presentation
.rar RAR archive application/vnd.rar
.rtf Rich Text Format (RTF) application/rtf
.sh Bourne shell script application/x-sh
.svg Scalable Vector Graphics (SVG) image/svg+xml
.tar Tape Archive (TAR) application/x-tar
.tif, .tiff Tagged Image File Format (TIFF) image/tiff
.ts MPEG transport stream video/mp2t
.ttf TrueType Font font/ttf
.txt Text, (generally ASCII or ISO 8859-n) text/plain
.vsd Microsoft Visio application/vnd.visio
.wav Waveform Audio Format audio/wav
.weba WEBM audio audio/webm
.webm WEBM video video/webm
.webp WEBP image image/webp
.woff Web Open Font Format (WOFF) font/woff
.woff2 Web Open Font Format (WOFF) font/woff2
.xhtml XHTML application/xhtml+xml
.xls Microsoft Excel application/vnd.ms-excel
.xlsx Microsoft Excel (OpenXML) application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
.xml XML application/xml is recommended as of RFC 7303 (section 4.1), but text/xml is still used sometimes. You can assign a specific MIME type to a file with .xml extension depending on how its contents are meant to be interpreted. For instance, an Atom feed is application/atom+xml, but application/xml serves as a valid default.
.xul XUL application/vnd.mozilla.xul+xml
.zip ZIP archive application/zip
.3gp 3GPP audio/video container video/3gpp; audio/3gpp if it doesn’t contain video
.3g2 3GPP2 audio/video container video/3gpp2; audio/3gpp2 if it doesn’t contain video
.7z 7-zip archive application/x-7z-compressed

Я использую CarlosAG-Dll, который создает для меня файл XML-Excel (внутри MemoryStream).

Response.ContentType = "application/vnd.ms-excel";
Response.AppendHeader("content-disposition", "myfile.xml");
memory.WriteTo(Response.OutputStream);

Моя проблема здесь в том, что я получаю на стороне клиента файл myfile.xls(IE) или myfile.xml.xls(FF) и поэтому получаю раздражающее предупреждение безопасности от excel.

Я попробовал это также с application/vnd.openxmlformats-officedocument.spreadsheetml.sheet(xlsx), но потом он даже не откроется.

Так что мне нужно либо вырезать .xml, либо отправить его как vnd.ms-excel (как?) или взять другой MIME-тип (но какой?).


edit: Я нашел описание ошибки здесь

Интересно, это все еще открыто и почему?

17 нояб. 2011, в 13:04

Поделиться

Источник

3 ответа

Используйте это как

Response.ContentType = "application/vnd.ms-excel";

Response.AppendHeader("content-disposition", "attachment; filename=myfile.xls");

Для Excel 2007 и выше тип MIME отличается

Response.ContentType = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet";

Response.AppendHeader("content-disposition", "attachment; filename=myfile.xlsx");

См. список типов MIME

Формат MIME файлов формата Office 2007

EDIT:

Если содержимое не является собственным файлом формата Excel, но вместо этого текстовый формат (например, CSV, TXT, XML), затем веб-сайт может добавить следующий HTTP-заголовок для ответа GET, чтобы сообщить IE использовать альтернативное имя, а в имени вы можете установить расширение вправо тип контента:

Response.AddHeader "Content-Disposition", "Attachment;Filename=myfile.csv"

Подробнее см. эта ссылка

Prasanth
17 нояб. 2011, в 13:49

Поделиться

Если ваш документ является документом Excel Xml 2003, вы должны использовать тип содержимого text/xml.

Response.ContentType = "text/xml";

Не указывайте расположение содержимого.

Этот technichs отлично работает с Handler, а не с WebForm.

Franky
03 июль 2013, в 14:47

Поделиться

Предупреждение о безопасности не относится к типу MIME — это параметр безопасности на стороне клиента, который нельзя отключить со стороны сервера!

Другая точка — измените Response.AppendHeader("content-disposition", "myfile.xml"); на:

Response.AppendHeader("content-disposition", "attachment; filename=myfile.xlsx");

ИЛИ

Response.AppendHeader("content-disposition", "inline; filename=myfile.xlsx");

Для справки см. http://www.ietf.org/rfc/rfc2183.txt

EDIT — в соответствии с комментарием:

Если формат не XLSX (Excel 2007 и выше), используйте myfile.xls в приведенном выше коде.

Yahia
17 нояб. 2011, в 11:24

Поделиться

Ещё вопросы

  • 0добавить div в JQuery с кавычками в поле
  • 1Заменить снимок с определителем Tycho
  • 1Более 79 символов в строке с комментарием
  • 0Как я могу изменить свойства обещания, чтобы они были равны свойствам объекта в AngularJS?
  • 1Java итеративное углубление на дереве без рекурсии
  • 0Доступ к php global в шаблоне веток
  • 1Vue — как периодически обновлять значение в представлении с помощью фильтра
  • 0Обработка массивов
  • 0Удалить последнюю запятую из значения массива в цикле
  • 0Присвоение второго указателя объекту, указанному первым указателем
  • 0Эффективная проверка, если значение существует в базе данных
  • 1Как открыть навигационный ящик справа налево [продублировать]
  • 0Хитрая структура указатель итерация без предоставления дампа
  • 1Как автоматически получить оставшуюся память при профилировании в автономном режиме JProfiler с помощью триггеров
  • 0Массив классов структур не инициализируется должным образом
  • 1Получить Float ИЛИ целочисленное значение из строки в Java
  • 0PHP безопасная система загрузки
  • 0Проверка данных с использованием Parsley не работает
  • 1Как сгруппировать блок кода в Python, похожий на функцию, но без необходимости определения параметров?
  • 1Regex Parsing Начало строки
  • 0Пользовательский альпийский образ mysql не загружает файл init.sql из подключенного docker-entrypoint-initdb.d как том
  • 0скрытая ошибка ссылки g ++
  • 1Spring + Hibernate SQL имя объекта не разрешено
  • 1Angular: компонент из общего модуля не распознается
  • 1Android Studio не компилируется
  • 0Как получить обновления базы данных MySQL для запуска повторной аутентификации в сеансах PHP
  • 0Angularjs предел, чтобы не работать в нг-повтор
  • 0Двусторонняя сортировка / несортировка с помощью перетаскивания с помощью пользовательского интерфейса JQuery
  • 1Как конвертировать LINQ вложенные Selectmany в регулярные операторы SQL
  • 0Как сделать разрыв между строками в FlowPanel в Css в Gwt?
  • 0Защита исходного кода AngularJS
  • 0Угловая, встроенная логика привязки
  • 1Выполнить команду с правами суперпользователя в методе JNI в Android
  • 1Как я могу получить имя файла запущенного в данный момент процесса?
  • 0CodeIgniter нумерация страниц не работает с многоязычным сайтом
  • 1Почему toFixed () принимает от 0 до 20 цифр
  • 1Лучший способ инициализировать трехмерный список
  • 0Невозможно скомпилировать с собственной библиотекой
  • 0Написание перегруженного оператора присваивания
  • 1Недостатки сохранения файловых дескрипторов открыты?
  • 0Как я могу создать фиксированный заголовок таблицы
  • 1InstallUtil какая версия фреймворка использовалась для установки сервиса?
  • 0Десериализация веб-API ajax опубликовала нулевые значения в виде «нулевой» строки
  • 1Как настроить ProGuard, чтобы уважать модель Джексона?
  • 0Пользователь посещает события на Facebook с PHP API 3.2.3
  • 0jQuery — Ajax отправляет данные JSON в GET
  • 1Datagrid ComboBox связывает два значения
  • 0Скрипты Jquery на слайдах внешней страницы медленно загружаются или останавливаются. Что я делаю?
  • 0MongoDB: вставка и обновление в массиве
  • 0Экспорт заказов Magento — получение суммы скидки

Сообщество Overcoder

application/andrew-inset N/A Andrew Toolkit application/applixware .aw Applixware application/atom+xml .atom, .xml Atom Syndication Format application/atomcat+xml .atomcat Atom Publishing Protocol application/atomsvc+xml .atomsvc Atom Publishing Protocol Service Document application/ccxml+xml, .ccxml Voice Browser Call Control application/cdmi-capability .cdmia Cloud Data Management Interface (CDMI) — Capability application/cdmi-container .cdmic Cloud Data Management Interface (CDMI) — Contaimer application/cdmi-domain .cdmid Cloud Data Management Interface (CDMI) — Domain application/cdmi-object .cdmio Cloud Data Management Interface (CDMI) — Object application/cdmi-queue .cdmiq Cloud Data Management Interface (CDMI) — Queue application/cu-seeme .cu CU-SeeMe application/davmount+xml .davmount Web Distributed Authoring and Versioning application/dssc+der .dssc Data Structure for the Security Suitability of Cryptographic Algorithms application/dssc+xml .xdssc Data Structure for the Security Suitability of Cryptographic Algorithms application/ecmascript .es ECMAScript application/emma+xml .emma Extensible MultiModal Annotation application/epub+zip .epub Electronic Publication application/exi .exi Efficient XML Interchange application/font-tdpfr .pfr Portable Font Resource application/hyperstudio .stk Hyperstudio application/ipfix .ipfix Internet Protocol Flow Information Export application/java-archive .jar Java Archive application/java-serialized-object .ser Java Serialized Object application/java-vm .class Java Bytecode File application/javascript .js JavaScript application/json .json JavaScript Object Notation (JSON) application/mac-binhex40 .hqx Macintosh BinHex 4.0 application/mac-compactpro .cpt Compact Pro application/mads+xml .mads Metadata Authority Description Schema application/marc .mrc MARC Formats application/marcxml+xml .mrcx MARC21 XML Schema application/mathematica .ma Mathematica Notebooks application/mathml+xml .mathml Mathematical Markup Language application/mbox .mbox Mbox database files application/mediaservercontrol+xml .mscml Media Server Control Markup Language application/metalink4+xml .meta4 Metalink application/mets+xml .mets Metadata Encoding and Transmission Standard application/mods+xml .mods Metadata Object Description Schema application/mp21 .m21 MPEG-21 application/mp4 .mp4 MPEG4 application/msword .doc Microsoft Word application/mxf .mxf Material Exchange Format application/octet-stream .bin Binary Data application/oda .oda Office Document Architecture application/oebps-package+xml .opf Open eBook Publication Structure application/ogg .ogx Ogg application/onenote .onetoc Microsoft OneNote application/patch-ops-error+xml .xer XML Patch Framework application/pdf .pdf Adobe Portable Document Format application/pgp-encrypted .pgp Pretty Good Privacy application/pgp-signature .pgp Pretty Good Privacy — Signature application/pics-rules .prf PICSRules application/pkcs10 .p10 PKCS #10 — Certification Request Standard application/pkcs7-mime .p7m PKCS #7 — Cryptographic Message Syntax Standard application/pkcs7-signature .p7s PKCS #7 — Cryptographic Message Syntax Standard application/pkcs8 .p8 PKCS #8 — Private-Key Information Syntax Standard application/pkix-attr-cert .ac Attribute Certificate application/pkix-cert .cer Internet Public Key Infrastructure — Certificate application/pkix-crl .crl Internet Public Key Infrastructure — Certificate Revocation Lists application/pkix-pkipath .pkipath Internet Public Key Infrastructure — Certification Path application/pkixcmp .pki Internet Public Key Infrastructure — Certificate Management Protocole application/pls+xml .pls Pronunciation Lexicon Specification application/postscript .ai PostScript application/prs.cww .cww CU-Writer application/pskc+xml .pskcxml Portable Symmetric Key Container application/rdf+xml .rdf Resource Description Framework application/reginfo+xml .rif IMS Networks application/relax-ng-compact-syntax .rnc Relax NG Compact Syntax application/resource-lists-diff+xml .rld XML Resource Lists Diff application/resource-lists+xml .rl XML Resource Lists application/rls-services+xml .rs XML Resource Lists application/rsd+xml .rsd Really Simple Discovery application/rss+xml .rss, .xml RSS — Really Simple Syndication application/rtf .rtf Rich Text Format application/sbml+xml .sbml Systems Biology Markup Language application/scvp-cv-request .scq Server-Based Certificate Validation Protocol — Validation Request application/scvp-cv-response .scs Server-Based Certificate Validation Protocol — Validation Response application/scvp-vp-request .spq Server-Based Certificate Validation Protocol — Validation Policies — Request application/scvp-vp-response .spp Server-Based Certificate Validation Protocol — Validation Policies — Response application/sdp .sdp Session Description Protocol application/set-payment-initiation .setpay Secure Electronic Transaction — Payment application/set-registration-initiation .setreg Secure Electronic Transaction — Registration application/shf+xml .shf S Hexdump Format application/smil+xml .smi Synchronized Multimedia Integration Language application/sparql-query .rq SPARQL — Query application/sparql-results+xml .srx SPARQL — Results application/srgs .gram Speech Recognition Grammar Specification application/srgs+xml .grxml Speech Recognition Grammar Specification — XML application/sru+xml .sru Search/Retrieve via URL Response Format application/ssml+xml .ssml Speech Synthesis Markup Language application/tei+xml .tei Text Encoding and Interchange application/thraud+xml .tfi Sharing Transaction Fraud Data application/timestamped-data .tsd Time Stamped Data Envelope application/vnd.3gpp.pic-bw-large .plb 3rd Generation Partnership Project — Pic Large application/vnd.3gpp.pic-bw-small .psb 3rd Generation Partnership Project — Pic Small application/vnd.3gpp.pic-bw-var .pvb 3rd Generation Partnership Project — Pic Var application/vnd.3gpp2.tcap .tcap 3rd Generation Partnership Project — Transaction Capabilities Application Part application/vnd.3m.post-it-notes .pwn 3M Post It Notes application/vnd.accpac.simply.aso .aso Simply Accounting application/vnd.accpac.simply.imp .imp Simply Accounting — Data Import application/vnd.acucobol .acu ACU Cobol application/vnd.acucorp .atc ACU Cobol application/vnd.adobe.air-application-installer-package+zip .air Adobe AIR Application application/vnd.adobe.fxp .fxp Adobe Flex Project application/vnd.adobe.xdp+xml .xdp Adobe XML Data Package application/vnd.adobe.xfdf .xfdf Adobe XML Forms Data Format application/vnd.ahead.space .ahead Ahead AIR Application application/vnd.airzip.filesecure.azf .azf AirZip FileSECURE application/vnd.airzip.filesecure.azs .azs AirZip FileSECURE application/vnd.amazon.ebook .azw Amazon Kindle eBook format application/vnd.americandynamics.acc .acc Active Content Compression application/vnd.amiga.ami .ami AmigaDE application/vnd.android.package-archive .apk Android Package Archive application/vnd.anser-web-certificate-issue-initiation .cii ANSER-WEB Terminal Client — Certificate Issue application/vnd.anser-web-funds-transfer-initiation .fti ANSER-WEB Terminal Client — Web Funds Transfer application/vnd.antix.game-component .atx Antix Game Player application/vnd.apple.installer+xml .mpkg Apple Installer Package application/vnd.apple.mpegurl .m3u8 Multimedia Playlist Unicode application/vnd.aristanetworks.swi .swi Arista Networks Software Image application/vnd.audiograph .aep Audiograph application/vnd.blueice.multipass .mpm Blueice Research Multipass application/vnd.bmi .bmi BMI Drawing Data Interchange application/vnd.businessobjects .rep BusinessObjects application/vnd.chemdraw+xml .cdxml CambridgeSoft Chem Draw application/vnd.chipnuts.karaoke-mmd .mmd Karaoke on Chipnuts Chipsets application/vnd.cinderella .cdy Interactive Geometry Software Cinderella application/vnd.claymore .cla Claymore Data Files application/vnd.cloanto.rp9 .rp9 RetroPlatform Player application/vnd.clonk.c4group .c4g Clonk Game application/vnd.cluetrust.cartomobile-config .c11amc ClueTrust CartoMobile — Config application/vnd.cluetrust.cartomobile-config-pkg .c11amz ClueTrust CartoMobile — Config Package application/vnd.commonspace .csp Sixth Floor Media — CommonSpace application/vnd.contact.cmsg .cdbcmsg CIM Database application/vnd.cosmocaller .cmc CosmoCaller application/vnd.crick.clicker .clkx CrickSoftware — Clicker application/vnd.crick.clicker.keyboard .clkk CrickSoftware — Clicker — Keyboard application/vnd.crick.clicker.palette .clkp CrickSoftware — Clicker — Palette application/vnd.crick.clicker.template .clkt CrickSoftware — Clicker — Template application/vnd.crick.clicker.wordbank .clkw CrickSoftware — Clicker — Wordbank application/vnd.criticaltools.wbs+xml .wbs Critical Tools — PERT Chart EXPERT application/vnd.ctc-posml .pml PosML application/vnd.cups-ppd .ppd Adobe PostScript Printer Description File Format application/vnd.curl.car .car CURL Applet application/vnd.curl.pcurl .pcurl CURL Applet application/vnd.data-vision.rdz .rdz RemoteDocs R-Viewer application/vnd.denovo.fcselayout-link .fe_launch FCS Express Layout Link application/vnd.dna .dna New Moon Liftoff/DNA application/vnd.dolby.mlp .mlp Dolby Meridian Lossless Packing application/vnd.dpgraph .dpg DPGraph application/vnd.dreamfactory .dfac DreamFactory application/vnd.dvb.ait .ait Digital Video Broadcasting application/vnd.dvb.service .svc Digital Video Broadcasting application/vnd.dynageo .geo DynaGeo application/vnd.ecowin.chart .mag EcoWin Chart application/vnd.enliven .nml Enliven Viewer application/vnd.epson.esf .esf QUASS Stream Player application/vnd.epson.msf .msf QUASS Stream Player application/vnd.epson.quickanime .qam QuickAnime Player application/vnd.epson.salt .slt SimpleAnimeLite Player application/vnd.epson.ssf .ssf QUASS Stream Player application/vnd.eszigno3+xml .es3 MICROSEC e-Szign¢ application/vnd.ezpix-album .ez2 EZPix Secure Photo Album application/vnd.ezpix-package .ez3 EZPix Secure Photo Album application/vnd.fdf .fdf Forms Data Format application/vnd.fdsn.seed .seed Digital Siesmograph Networks — SEED Datafiles application/vnd.flographit .gph NpGraphIt application/vnd.fluxtime.clip .ftc FluxTime Clip application/vnd.framemaker .fm FrameMaker Normal Format application/vnd.frogans.fnc .fnc Frogans Player application/vnd.frogans.ltf .ltf Frogans Player application/vnd.fsc.weblaunch .fsc Friendly Software Corporation application/vnd.fujitsu.oasys .oas Fujitsu Oasys application/vnd.fujitsu.oasys2 .oa2 Fujitsu Oasys application/vnd.fujitsu.oasys3 .oa3 Fujitsu Oasys application/vnd.fujitsu.oasysgp .fg5 Fujitsu Oasys application/vnd.fujitsu.oasysprs .bh2 Fujitsu Oasys application/vnd.fujixerox.ddd .ddd Fujitsu — Xerox 2D CAD Data application/vnd.fujixerox.docuworks .xdw Fujitsu — Xerox DocuWorks application/vnd.fujixerox.docuworks.binder .xbd Fujitsu — Xerox DocuWorks Binder application/vnd.fuzzysheet .fzs FuzzySheet application/vnd.genomatix.tuxedo .txd Genomatix Tuxedo Framework application/vnd.geogebra.file .ggb GeoGebra application/vnd.geogebra.tool .ggt GeoGebra application/vnd.geometry-explorer .gex GeoMetry Explorer application/vnd.geonext .gxt GEONExT and JSXGraph application/vnd.geoplan .g2w GeoplanW application/vnd.geospace .g3w GeospacW application/vnd.gmx .gmx GameMaker ActiveX application/vnd.google-earth.kml+xml .kml Google Earth — KML application/vnd.google-earth.kmz .kmz Google Earth — Zipped KML application/vnd.grafeq .gqf GrafEq application/vnd.groove-account .gac Groove — Account application/vnd.groove-help .ghf Groove — Help application/vnd.groove-identity-message .gim Groove — Identity Message application/vnd.groove-injector .grv Groove — Injector application/vnd.groove-tool-message .gtm Groove — Tool Message application/vnd.groove-tool-template .tpl Groove — Tool Template application/vnd.groove-vcard .vcg Groove — Vcard application/vnd.hal+xml .hal Hypertext Application Language application/vnd.handheld-entertainment+xml .zmm ZVUE Media Manager application/vnd.hbci .hbci Homebanking Computer Interface (HBCI) application/vnd.hhe.lesson-player .les Archipelago Lesson Player application/vnd.hp-hpgl .hpgl HP-GL/2 and HP RTL application/vnd.hp-hpid .hpid Hewlett Packard Instant Delivery application/vnd.hp-hps .hps Hewlett-Packard’s WebPrintSmart application/vnd.hp-jlyt .jlt HP Indigo Digital Press — Job Layout Languate application/vnd.hp-pcl .pcl HP Printer Command Language application/vnd.hp-pclxl .pclxl PCL 6 Enhanced (Formely PCL XL) application/vnd.hydrostatix.sof-data .sfd-hdstx Hydrostatix Master Suite application/vnd.hzn-3d-crossword .x3d 3D Crossword Plugin application/vnd.ibm.minipay .mpy MiniPay application/vnd.ibm.modcap .afp MO:DCA-P application/vnd.ibm.rights-management .irm IBM DB2 Rights Manager application/vnd.ibm.secure-container .sc IBM Electronic Media Management System — Secure Container application/vnd.iccprofile .icc ICC profile application/vnd.igloader .igl igLoader application/vnd.immervision-ivp .ivp ImmerVision PURE Players application/vnd.immervision-ivu .ivu ImmerVision PURE Players application/vnd.insors.igm .igm IOCOM Visimeet application/vnd.intercon.formnet .xpw Intercon FormNet application/vnd.intergeo .i2g Interactive Geometry Software application/vnd.intu.qbo .qbo Open Financial Exchange application/vnd.intu.qfx .qfx Quicken application/vnd.ipunplugged.rcprofile .rcprofile IP Unplugged Roaming Client application/vnd.irepository.package+xml .irp iRepository / Lucidoc Editor application/vnd.is-xpr .xpr Express by Infoseek application/vnd.isac.fcs .fcs International Society for Advancement of Cytometry application/vnd.jam .jam Lightspeed Audio Lab application/vnd.jcp.javame.midlet-rms .rms Mobile Information Device Profile application/vnd.jisp .jisp RhymBox application/vnd.joost.joda-archive .joda Joda Archive application/vnd.kahootz .ktz Kahootz application/vnd.kde.karbon .karbon KDE KOffice Office Suite — Karbon application/vnd.kde.kchart .chrt KDE KOffice Office Suite — KChart application/vnd.kde.kformula .kfo KDE KOffice Office Suite — Kformula application/vnd.kde.kivio .flw KDE KOffice Office Suite — Kivio application/vnd.kde.kontour .kon KDE KOffice Office Suite — Kontour application/vnd.kde.kpresenter .kpr KDE KOffice Office Suite — Kpresenter application/vnd.kde.kspread .ksp KDE KOffice Office Suite — Kspread application/vnd.kde.kword .kwd KDE KOffice Office Suite — Kword application/vnd.kenameaapp .htke Kenamea App application/vnd.kidspiration .kia Kidspiration application/vnd.kinar .kne Kinar Applications application/vnd.koan .skp SSEYO Koan Play File application/vnd.kodak-descriptor .sse Kodak Storyshare application/vnd.las.las+xml .lasxml Laser App Enterprise application/vnd.llamagraphics.life-balance.desktop .lbd Life Balance — Desktop Edition application/vnd.llamagraphics.life-balance.exchange+xml .lbe Life Balance — Exchange Format application/vnd.lotus-1-2-3 0,123 Lotus 1-2-3 application/vnd.lotus-approach .apr Lotus Approach application/vnd.lotus-freelance .pre Lotus Freelance application/vnd.lotus-notes .nsf Lotus Notes application/vnd.lotus-organizer .org Lotus Organizer application/vnd.lotus-screencam .scm Lotus Screencam application/vnd.lotus-wordpro .lwp Lotus Wordpro application/vnd.macports.portpkg .portpkg MacPorts Port System application/vnd.mcd .mcd Micro CADAM Helix D&D application/vnd.medcalcdata .mc1 MedCalc application/vnd.mediastation.cdkey .cdkey MediaRemote application/vnd.mfer .mwf Medical Waveform Encoding Format application/vnd.mfmp .mfm Melody Format for Mobile Platform application/vnd.micrografx.flo .flo Micrografx application/vnd.micrografx.igx .igx Micrografx iGrafx Professional application/vnd.mif .mif FrameMaker Interchange Format application/vnd.mobius.daf .daf Mobius Management Systems — UniversalArchive application/vnd.mobius.dis .dis Mobius Management Systems — Distribution Database application/vnd.mobius.mbk .mbk Mobius Management Systems — Basket file application/vnd.mobius.mqy .mqy Mobius Management Systems — Query File application/vnd.mobius.msl .msl Mobius Management Systems — Script Language application/vnd.mobius.plc .plc Mobius Management Systems — Policy Definition Language File application/vnd.mobius.txf .txf Mobius Management Systems — Topic Index File application/vnd.mophun.application .mpn Mophun VM application/vnd.mophun.certificate .mpc Mophun Certificate application/vnd.mozilla.xul+xml .xul XUL — XML User Interface Language application/vnd.ms-artgalry .cil Microsoft Artgalry application/vnd.ms-cab-compressed .cab Microsoft Cabinet File application/vnd.ms-excel .xls Microsoft Excel application/vnd.ms-excel.addin.macroenabled.12 .xlam Microsoft Excel — Add-In File application/vnd.ms-excel.sheet.binary.macroenabled.12 .xlsb Microsoft Excel — Binary Workbook application/vnd.ms-excel.sheet.macroenabled.12 .xlsm Microsoft Excel — Macro-Enabled Workbook application/vnd.ms-excel.template.macroenabled.12 .xltm Microsoft Excel — Macro-Enabled Template File application/vnd.ms-fontobject .eot Microsoft Embedded OpenType application/vnd.ms-htmlhelp .chm Microsoft Html Help File application/vnd.ms-ims .ims Microsoft Class Server application/vnd.ms-lrm .lrm Microsoft Learning Resource Module application/vnd.ms-officetheme .thmx Microsoft Office System Release Theme application/vnd.ms-pki.seccat .cat Microsoft Trust UI Provider — Security Catalog application/vnd.ms-pki.stl .stl Microsoft Trust UI Provider — Certificate Trust Link application/vnd.ms-powerpoint .ppt Microsoft PowerPoint application/vnd.ms-powerpoint.addin.macroenabled.12 .ppam Microsoft PowerPoint — Add-in file application/vnd.ms-powerpoint.presentation.macroenabled.12 .pptm Microsoft PowerPoint — Macro-Enabled Presentation File application/vnd.ms-powerpoint.slide.macroenabled.12 .sldm Microsoft PowerPoint — Macro-Enabled Open XML Slide application/vnd.ms-powerpoint.slideshow.macroenabled.12 .ppsm Microsoft PowerPoint — Macro-Enabled Slide Show File application/vnd.ms-powerpoint.template.macroenabled.12 .potm Microsoft PowerPoint — Macro-Enabled Template File application/vnd.ms-project .mpp Microsoft Project application/vnd.ms-word.document.macroenabled.12 .docm Microsoft Word — Macro-Enabled Document application/vnd.ms-word.template.macroenabled.12 .dotm Microsoft Word — Macro-Enabled Template application/vnd.ms-works .wps Microsoft Works application/vnd.ms-wpl .wpl Microsoft Windows Media Player Playlist application/vnd.ms-xpsdocument .xps Microsoft XML Paper Specification application/vnd.mseq .mseq 3GPP MSEQ File application/vnd.musician .mus MUsical Score Interpreted Code Invented for the ASCII designation of Notation application/vnd.muvee.style .msty Muvee Automatic Video Editing application/vnd.neurolanguage.nlu .nlu neuroLanguage application/vnd.noblenet-directory .nnd NobleNet Directory application/vnd.noblenet-sealer .nns NobleNet Sealer application/vnd.noblenet-web .nnw NobleNet Web application/vnd.nokia.n-gage.data .ngdat N-Gage Game Data application/vnd.nokia.n-gage.symbian.install .n-gage N-Gage Game Installer application/vnd.nokia.radio-preset .rpst Nokia Radio Application — Preset application/vnd.nokia.radio-presets .rpss Nokia Radio Application — Preset application/vnd.novadigm.edm .edm Novadigm’s RADIA and EDM products application/vnd.novadigm.edx .edx Novadigm’s RADIA and EDM products application/vnd.novadigm.ext .ext Novadigm’s RADIA and EDM products application/vnd.oasis.opendocument.chart .odc OpenDocument Chart application/vnd.oasis.opendocument.chart-template .otc OpenDocument Chart Template application/vnd.oasis.opendocument.database .odb OpenDocument Database application/vnd.oasis.opendocument.formula .odf OpenDocument Formula application/vnd.oasis.opendocument.formula-template .odft OpenDocument Formula Template application/vnd.oasis.opendocument.graphics .odg OpenDocument Graphics application/vnd.oasis.opendocument.graphics-template .otg OpenDocument Graphics Template application/vnd.oasis.opendocument.image .odi OpenDocument Image application/vnd.oasis.opendocument.image-template .oti OpenDocument Image Template application/vnd.oasis.opendocument.presentation .odp OpenDocument Presentation application/vnd.oasis.opendocument.presentation-template .otp OpenDocument Presentation Template application/vnd.oasis.opendocument.spreadsheet .ods OpenDocument Spreadsheet application/vnd.oasis.opendocument.spreadsheet-template .ots OpenDocument Spreadsheet Template application/vnd.oasis.opendocument.text .odt OpenDocument Text application/vnd.oasis.opendocument.text-master .odm OpenDocument Text Master application/vnd.oasis.opendocument.text-template .ott OpenDocument Text Template application/vnd.oasis.opendocument.text-web .oth Open Document Text Web application/vnd.olpc-sugar .xo Sugar Linux Application Bundle application/vnd.oma.dd2+xml .dd2 OMA Download Agents application/vnd.openofficeorg.extension .oxt Open Office Extension application/vnd.openxmlformats-officedocument.presentationml.presentation .pptx Microsoft Office — OOXML — Presentation application/vnd.openxmlformats-officedocument.presentationml.slide .sldx Microsoft Office — OOXML — Presentation (Slide) application/vnd.openxmlformats-officedocument.presentationml.slideshow .ppsx Microsoft Office — OOXML — Presentation (Slideshow) application/vnd.openxmlformats-officedocument.presentationml.template .potx Microsoft Office — OOXML — Presentation Template application/vnd.openxmlformats-officedocument.spreadsheetml.sheet .xlsx Microsoft Office — OOXML — Spreadsheet application/vnd.openxmlformats-officedocument.spreadsheetml.template .xltx Microsoft Office — OOXML — Spreadsheet Template application/vnd.openxmlformats-officedocument.wordprocessingml.document .docx Microsoft Office — OOXML — Word Document application/vnd.openxmlformats-officedocument.wordprocessingml.template .dotx Microsoft Office — OOXML — Word Document Template application/vnd.osgeo.mapguide.package .mgp MapGuide DBXML application/vnd.osgi.dp .dp OSGi Deployment Package application/vnd.palm .pdb PalmOS Data application/vnd.pawaafile .paw PawaaFILE application/vnd.pg.format .str Proprietary P&G Standard Reporting System application/vnd.pg.osasli .ei6 Proprietary P&G Standard Reporting System application/vnd.picsel .efif Pcsel eFIF File application/vnd.pmi.widget .wg Qualcomm’s Plaza Mobile Internet application/vnd.pocketlearn .plf PocketLearn Viewers application/vnd.powerbuilder6 .pbd PowerBuilder application/vnd.previewsystems.box .box Preview Systems ZipLock/VBox application/vnd.proteus.magazine .mgz EFI Proteus application/vnd.publishare-delta-tree .qps PubliShare Objects application/vnd.pvi.ptid1 .ptid Princeton Video Image application/vnd.quark.quarkxpress .qxd QuarkXpress application/vnd.realvnc.bed .bed RealVNC application/vnd.recordare.musicxml .mxl Recordare Applications application/vnd.recordare.musicxml+xml .musicxml Recordare Applications application/vnd.rig.cryptonote .cryptonote CryptoNote application/vnd.rim.cod .cod Blackberry COD File application/vnd.rn-realmedia .rm RealMedia application/vnd.route66.link66+xml .link66 ROUTE 66 Location Based Services application/vnd.sailingtracker.track .st SailingTracker application/vnd.seemail .see SeeMail application/vnd.sema .sema Secured eMail application/vnd.semd .semd Secured eMail application/vnd.semf .semf Secured eMail application/vnd.shana.informed.formdata .ifm Shana Informed Filler application/vnd.shana.informed.formtemplate .itp Shana Informed Filler application/vnd.shana.informed.interchange .iif Shana Informed Filler application/vnd.shana.informed.package .ipk Shana Informed Filler application/vnd.simtech-mindmapper .twd SimTech MindMapper application/vnd.smaf .mmf SMAF File application/vnd.smart.teacher .teacher SMART Technologies Apps application/vnd.solent.sdkm+xml .sdkm SudokuMagic application/vnd.spotfire.dxp .dxp TIBCO Spotfire application/vnd.spotfire.sfs .sfs TIBCO Spotfire application/vnd.stardivision.calc .sdc StarOffice — Calc application/vnd.stardivision.draw .sda StarOffice — Draw application/vnd.stardivision.impress .sdd StarOffice — Impress application/vnd.stardivision.math .smf StarOffice — Math application/vnd.stardivision.writer .sdw StarOffice — Writer application/vnd.stardivision.writer-global .sgl StarOffice — Writer (Global) application/vnd.stepmania.stepchart .sm StepMania application/vnd.sun.xml.calc .sxc OpenOffice — Calc (Spreadsheet) application/vnd.sun.xml.calc.template .stc OpenOffice — Calc Template (Spreadsheet) application/vnd.sun.xml.draw .sxd OpenOffice — Draw (Graphics) application/vnd.sun.xml.draw.template .std OpenOffice — Draw Template (Graphics) application/vnd.sun.xml.impress .sxi OpenOffice — Impress (Presentation) application/vnd.sun.xml.impress.template .sti OpenOffice — Impress Template (Presentation) application/vnd.sun.xml.math .sxm OpenOffice — Math (Formula) application/vnd.sun.xml.writer .sxw OpenOffice — Writer (Text — HTML) application/vnd.sun.xml.writer.global .sxg OpenOffice — Writer (Text — HTML) application/vnd.sun.xml.writer.template .stw OpenOffice — Writer Template (Text — HTML) application/vnd.sus-calendar .sus ScheduleUs application/vnd.svd .svd SourceView Document application/vnd.symbian.install .sis Symbian Install Package application/vnd.syncml.dm+wbxml .bdm SyncML — Device Management application/vnd.syncml.dm+xml .xdm SyncML — Device Management application/vnd.syncml+xml .xsm SyncML application/vnd.tao.intent-module-archive .tao Tao Intent application/vnd.tmobile-livetv .tmo MobileTV application/vnd.trid.tpt .tpt TRI Systems Config application/vnd.triscape.mxs .mxs Triscape Map Explorer application/vnd.trueapp .tra True BASIC application/vnd.ufdl .ufd Universal Forms Description Language application/vnd.uiq.theme .utz User Interface Quartz — Theme (Symbian) application/vnd.umajin .umj UMAJIN application/vnd.unity .unityweb Unity 3d application/vnd.uoml+xml .uoml Unique Object Markup Language application/vnd.vcx .vcx VirtualCatalog application/vnd.visio .vsd Microsoft Visio application/vnd.visio2013 .vsdx Microsoft Visio 2013 application/vnd.visionary .vis Visionary application/vnd.vsf .vsf Viewport+ application/vnd.wap.wbxml .wbxml WAP Binary XML (WBXML) application/vnd.wap.wmlc .wmlc Compiled Wireless Markup Language (WMLC) application/vnd.wap.wmlscriptc .wmlsc WMLScript application/vnd.webturbo .wtb WebTurbo application/vnd.wolfram.player .nbp Mathematica Notebook Player application/vnd.wordperfect .wpd Wordperfect application/vnd.wqd .wqd SundaHus WQ application/vnd.wt.stf .stf Worldtalk application/vnd.xara .xar CorelXARA application/vnd.xfdl .xfdl Extensible Forms Description Language application/vnd.yamaha.hv-dic .hvd HV Voice Dictionary application/vnd.yamaha.hv-script .hvs HV Script application/vnd.yamaha.hv-voice .hvp HV Voice Parameter application/vnd.yamaha.openscoreformat .osf Open Score Format application/vnd.yamaha.openscoreformat.osfpvg+xml .osfpvg OSFPVG application/vnd.yamaha.smaf-audio .saf SMAF Audio application/vnd.yamaha.smaf-phrase .spf SMAF Phrase application/vnd.yellowriver-custom-menu .cmp CustomMenu application/vnd.zul .zir Z.U.L. Geometry application/vnd.zzazz.deck+xml .zaz Zzazz Deck application/voicexml+xml .vxml VoiceXML application/widget .wgt Widget Packaging and XML Configuration application/winhlp .hlp WinHelp application/wsdl+xml .wsdl WSDL — Web Services Description Language application/wspolicy+xml .wspolicy Web Services Policy application/x-7z-compressed .7z 7-Zip application/x-abiword .abw AbiWord application/x-ace-compressed .ace Ace Archive application/x-apple-diskimage .dmg Apple Disk Image application/x-authorware-bin .aab Adobe (Macropedia) Authorware — Binary File application/x-authorware-map .aam Adobe (Macropedia) Authorware — Map application/x-authorware-seg .aas Adobe (Macropedia) Authorware — Segment File application/x-bcpio .bcpio Binary CPIO Archive application/x-bittorrent .torrent BitTorrent application/x-bzip .bz Bzip Archive application/x-bzip2 .bz2 Bzip2 Archive application/x-cdlink .vcd Video CD application/x-chat .chat pIRCh application/x-chess-pgn .pgn Portable Game Notation (Chess Games) application/x-cpio .cpio CPIO Archive application/x-csh .csh C Shell Script application/x-debian-package .deb Debian Package application/x-director .dir Adobe Shockwave Player application/x-doom .wad Doom Video Game application/x-dtbncx+xml .ncx Navigation Control file for XML (for ePub) application/x-dtbook+xml .dtb Digital Talking Book application/x-dtbresource+xml .res Digital Talking Book — Resource File application/x-dvi .dvi Device Independent File Format (DVI) application/x-font-bdf .bdf Glyph Bitmap Distribution Format application/x-font-ghostscript .gsf Ghostscript Font application/x-font-linux-psf .psf PSF Fonts application/x-font-otf .otf OpenType Font File application/x-font-pcf .pcf Portable Compiled Format application/x-font-snf .snf Server Normal Format application/x-font-ttf .ttf TrueType Font application/x-font-type1 .pfa PostScript Fonts application/x-font-woff .woff Web Open Font Format application/x-futuresplash .spl FutureSplash Animator application/x-gnumeric .gnumeric Gnumeric application/x-gtar .gtar GNU Tar Files application/x-hdf .hdf Hierarchical Data Format application/x-java-jnlp-file .jnlp Java Network Launching Protocol application/x-latex .latex LaTeX application/x-mobipocket-ebook .prc Mobipocket application/x-ms-application .application Microsoft ClickOnce application/x-ms-wmd .wmd Microsoft Windows Media Player Download Package application/x-ms-wmz .wmz Microsoft Windows Media Player Skin Package application/x-ms-xbap .xbap Microsoft XAML Browser Application application/x-msaccess .mdb Microsoft Access application/x-msbinder .obd Microsoft Office Binder application/x-mscardfile .crd Microsoft Information Card application/x-msclip .clp Microsoft Clipboard Clip application/x-msdownload .exe Microsoft Application application/x-msmediaview .mvb Microsoft MediaView application/x-msmetafile .wmf Microsoft Windows Metafile application/x-msmoney .mny Microsoft Money application/x-mspublisher .pub Microsoft Publisher application/x-msschedule .scd Microsoft Schedule+ application/x-msterminal .trm Microsoft Windows Terminal Services application/x-mswrite .wri Microsoft Wordpad application/x-netcdf .nc Network Common Data Form (NetCDF) application/x-pkcs12 .p12 PKCS #12 — Personal Information Exchange Syntax Standard application/x-pkcs7-certificates .p7b PKCS #7 — Cryptographic Message Syntax Standard (Certificates) application/x-pkcs7-certreqresp .p7r PKCS #7 — Cryptographic Message Syntax Standard (Certificate Request Response) application/x-rar-compressed .rar RAR Archive application/x-sh .sh Bourne Shell Script application/x-shar .shar Shell Archive application/x-shockwave-flash .swf Adobe Flash application/x-silverlight-app .xap Microsoft Silverlight application/x-stuffit .sit Stuffit Archive application/x-stuffitx .sitx Stuffit Archive application/x-sv4cpio .sv4cpio System V Release 4 CPIO Archive application/x-sv4crc .sv4crc System V Release 4 CPIO Checksum Data application/x-tar .tar Tar File (Tape Archive) application/x-tcl .tcl Tcl Script application/x-tex .tex TeX application/x-tex-tfm .tfm TeX Font Metric application/x-texinfo .texinfo GNU Texinfo Document application/x-ustar .ustar Ustar (Uniform Standard Tape Archive) application/x-wais-source .src WAIS Source application/x-x509-ca-cert .der X.509 Certificate application/x-xfig .fig Xfig application/x-xpinstall .xpi XPInstall — Mozilla application/xcap-diff+xml .xdf XML Configuration Access Protocol — XCAP Diff application/xenc+xml .xenc XML Encryption Syntax and Processing application/xhtml+xml .xhtml XHTML — The Extensible HyperText Markup Language application/xml .xml XML — Extensible Markup Language application/xml-dtd .dtd Document Type Definition application/xop+xml .xop XML-Binary Optimized Packaging application/xslt+xml .xslt XML Transformations application/xspf+xml .xspf XSPF — XML Shareable Playlist Format application/xv+xml .mxml MXML application/yang .yang YANG Data Modeling Language application/yin+xml .yin YIN (YANG — XML) application/zip .zip Zip Archive

Понравилась статья? Поделить с друзьями:
  • Application vnd ms excel xls
  • Application vnd ms excel sheet macroenabled 12
  • Application vnd ms excel mime
  • Application vnd ms excel csv
  • Application visible false excel