SSL Enabling: Tomcat in Windows 7 -


when try enable ssl (editing server.xml enable port:8443 https) in windows 7, not getting enabled. shows (connected localhost..) , remains hanged. i'm using windows 7 64-bits/4gb ram tomcat 6.0(netbeans bundle), jre 1.6(64-bit).

i made work on case, problem protocol used. in file server.xml change connector option protocol="http/1.1" protocol="org.apache.coyote.http11.http11nioprotocol"

the section should following.

<connector  port="8443" protocol="org.apache.coyote.http11.http11nioprotocol" sslenabled="true"     maxthreads="150" scheme="https" secure="true"     clientauth="false" sslprotocol="tls"     keystorefile="c:\pathtocert\cert.bin"     keystorepass="****" /> 

Comments

Popular posts from this blog

javascript - Enclosure Memory Copies -

php - Replacing tags in braces, even nested tags, with regex -