jnlp mime-type -web host responsiveness

I just wrote to my webhost http://www.webhosting.dk and asked them to set the mime type for jnlp files.
Within 6 minutes! I got an answer saying they had forwarded my mail to the technical department, and that was 9:27 pm :slight_smile: I’ll probably see tomorrow if they’ll change it, but it sure is a fast answer…

I would like to hear other people’s experiences asking their host to set jnlp mime type.

I was able to set it by myself via “.htaccess”.

AddType application/x-java-jnlp-file .jnlp

And that’s it :wink:

I don’t have permission to read or write that file, but they fixed it :slight_smile:

HTTP/1.1 200 OK
Date: Thu, 30 Sep 2004 12:24:35 GMT
Server: Apache/1.3.29 (Unix) PHP/4.3.9 FrontPage/5.0.2.2636 mod_ssl/2.8.16 OpenS
SL/0.9.7d
Last-Modified: Thu, 30 Sep 2004 10:26:53 GMT
ETag: "1376be-1a7-415bdf6d"
Content-Length: 423
Content-Type: application/x-java-jnlp-file

<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+"
codebase="http://www.javaengines.dk/test/"
>
<information>
  <title>Time Check</title>
  <vendor>Java Developer Connection</vendor>
  <description>Demonstration of JNLP</description>
</information>
<offline-allowed/>

<resources>
  <j2se version="1.2+" />
  <jar href="testbug.jar"/>
</resources>
<application-desc main-class="TestBug" />
</jnlp>