vote up 1 vote down star

I'm using tomcat 6.0 and struts2.

When I try to click on a link to download a .msi file on IE, the page loads up text from the .msi file instead.

Has anyone encountered this before? What can be done?

Thanks...

flag

2 Answers

vote up 0 vote down

AddType application/octet-stream .msi in Tomcat

link|flag
where do you add that? I saw the .htaccess solution, but not sure where to place it? Do I have to restart Tomcat? – April Jul 3 at 14:40
vote up 2 vote down check

Another guru told me to add this to tomcat/conf/web.xml:

<mime-mapping>
    <extension>msi</extension>
    <mime-type>application/x-msi</mime-type>
</mime-mapping>

And that works :)

link|flag

Your Answer

Get an OpenID
or

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