IIS 6 + Tomcat 6.0 + ISAPI + SSL

2009-01-14 Thread Alexander Diedler
Hello,
I have some question, it is possible to make SSL with an Tomcat project, which 
will be served trough the ISAPI Filter in IIS?
Open with http Port 80 is fine, but open with https .. Page cannot be found 
will be displayed.

Greetings
Alexander


Re: IIS 6 + Tomcat 6.0 + ISAPI + SSL

2009-01-14 Thread g f
You did not mention if ssl worked with tomcat in the standalone mode(without
ISAPI).
can you access https://localhost:8084/yourwebapp?

If not:

Perhaps you need to uncomment ssl support in server.xml file
Uncomment the second block and restart.
!--
 Define a SSL HTTP/1.1 Connector on port 8443
 This connector uses the JSSE configuration, when using APR, the
 connector should be using the OpenSSL style configuration
 described in the APR documentation
--
−
!--

Connector port=8443 protocol=HTTP/1.1 SSLEnabled=true
   maxThreads=150 scheme=https secure=true
   clientAuth=false sslProtocol=TLS /

--

HTH.

On Wed, Jan 14, 2009 at 9:27 AM, Alexander Diedler adied...@tecracer.dewrote:

 Hello,
 I have some question, it is possible to make SSL with an Tomcat project,
 which will be served trough the ISAPI Filter in IIS?
 Open with http Port 80 is fine, but open with https .. Page cannot be
 found will be displayed.

 Greetings
 Alexander