What is MIME type "application/vnd.enliven"?

A MIME type is a string that tells browsers and other tools how to handle a particular kind of file.

application/vnd.enliven is a vendor-specific MIME type. It marks files created by a specialized application for multimedia or interactive content. These files often carry the NML extension.

This MIME type tells your operating system and software that the file contains structured data, instructions, and assets meant for a specific processing environment. It is not a general document or image format but a container for elements like graphics, animations, and interactive commands.


For more on how vendor-specific MIME types work, see the IANA Media Types page.

Associated file extensions

Usage Examples

HTTP Header

When serving content with this MIME type, set the Content-Type header:


    Content-Type: application/vnd.enliven    
  

HTML

In HTML, you can specify the MIME type in various elements:


    <a href="file.dat" type="application/vnd.enliven">Download file</a>    
  

Server-side (Node.js)

Setting the Content-Type header in Node.js:


    const http = require('http');    
    
    http.createServer((req, res) => {    
      res.setHeader('Content-Type', 'application/vnd.enliven');    
      res.end('Content here');    
    }).listen(3000);    
  

Associated file extensions

FAQs

What is the application/vnd.enliven MIME type used for?

The MIME type application/vnd.enliven is used to identify multimedia files created for the Enliven environment, which typically use the .nml extension. These files contain interactive presentations, animations, and structured data specific to the vendor's software.

How do I open an .nml file associated with this MIME type?

Files with the application/vnd.enliven type are proprietary and usually require specific Enliven authoring or viewing software. They are not standard text or media files, so attempting to open them in a generic text editor or media player will likely result in unreadable data.

How do I configure Apache to serve .nml files correctly?

To ensure your Apache server sends the correct header for Enliven files, add the following line to your .htaccess file or main configuration: AddType application/vnd.enliven .nml. This prevents browsers from misidentifying the content as generic binary data.

Why does my browser download the file instead of displaying it?

Modern web browsers like Chrome, Firefox, and Edge do not have native support for application/vnd.enliven. When the browser encounters this MIME type, it defaults to downloading the file because it does not know how to render the interactive content internally.

What does the 'vnd' prefix mean in this MIME type?

The vnd prefix stands for vendor-specific. It indicates that application/vnd.enliven is not a public standard managed by a standards body, but rather a format controlled by a specific organization (in this case, for Enliven products).

Are files with the application/vnd.enliven type safe to open?

Because these files can contain scripts and interactive commands, they pose a potential security risk if they originate from untrusted sources. You should only open .nml files if you trust the sender and have the appropriate, up-to-date software installed.

How do I add support for this MIME type in Nginx?

For Nginx servers, you can register the type by editing your mime.types file or adding a types block in your server configuration: types { application/vnd.enliven nml; }. Restart Nginx to apply the changes.

General FAQ

What is a MIME type?

A MIME (Multipurpose Internet Mail Extensions) type is a standard that indicates the nature and format of a document, file, or assortment of bytes. MIME types are defined and standardized in IETF's RFC 6838.

MIME types are important because they help browsers and servers understand how to process a file. When a browser receives a file from a server, it uses the MIME type to determine how to display or handle the content, whether it's an image to display, a PDF to open in a viewer, or a video to play.

MIME types consist of a type and a subtype, separated by a slash (e.g., text/html, image/jpeg, application/pdf). Some MIME types also include optional parameters.

How do I find the MIME type for a file?

You can check the file extension or use a file identification tool such as file --mime-type on the command line. Many programming languages also provide libraries to detect MIME types.

Why are multiple MIME types listed for one extension?

Different applications and historical conventions may use alternative MIME identifiers for the same kind of file. Showing them all helps ensure compatibility across systems.