我有一个在安全通道上运行的应用程序,我想配置一个安全端口。我将以下连接器添加到我的tomcat server.xml文件
<Connector port="8443" protocol="HTTP/1.1"
maxThreads="150" secure="true"
clientAuth="false" />
当我点击
时它连接到服务器https://localhost.com:8443
在浏览器中,但我从未得到回复,它永远连接到服务器。
我真的很感激任何帮助。
感谢。
答案 0 :(得分:0)
这是因为您的配置不完整。看看这个教程: http://tomcat.apache.org/tomcat-7.0-doc/ssl-howto.html
看起来更像是这样:
<Connector
protocol="HTTP/1.1"
port="8443" maxThreads="200"
scheme="https" secure="true" SSLEnabled="true"
keystoreFile="${user.home}/.keystore" keystorePass="changeit"
clientAuth="false" sslProtocol="TLS"/>
如果没有SSLEnabled="true"
则不会加密。
答案 1 :(得分:0)
我发现问题是由于我的应用程序依赖于web服务,这就是为什么请求永远被卡住了。
但是,配置假安全端口的上述配置对我有用。