I'm able to install Entrust SSL in Tomcat running Windows 2008 server via port 8443.

Users can login securely with problems except that they can't download any *.zip or *.exe or *.pdf files. it will just refresh the same page.

Even right-click save on the link will prompt to save the page only.

using the same app on port 8080 (with ssl), the downloads works fine.

Is there any specific settings on the server.xml or web.xml that can solve this?

Below is my entry in server.xml

<Connector protocol="org.apache.coyote.http11.Http11Protocol"
           port="8443" 
           maxHttpHeaderSize="8192" 
           maxThreads="150" 
           minSpareThreads="25"
           maxSpareThreads="75" 
           enableLookups="false" 
           disableUploadTimeout="true" 
           acceptCount="100" 
           scheme="https" 
           secure="true" 
           SSLEnabled="true" 
           clientAuth="false" 
           sslProtocol="TLS" 
           keyAlias="tomcat"
           keystoreFile="C:\Program Files (x86)\Java\jdk1.6.0_13\bin\tomcat"
           keypass="aaaaaa"> 

Thanks.

link|improve this question
1  
Sounds like an application issue.. Failing to set MIME header application/octet-stream somewhere? – Tom O'Connor Nov 21 '11 at 11:32
feedback

migrated from stackoverflow.com Nov 21 '11 at 11:24

This question came from our site for professional and enthusiast programmers.

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown