我正在使用GWT并希望在一个html页面(模块)上启用SSL。我有多个模块,并且在我的web.xml中使用以下配置保护了一个这样的模块
<security-constraint>
<web-resource-collection>
<web-resource-name></web-resource-name>
<url-pattern>/Secure.html</url-pattern>
<http-method>GET</http-method>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
我有另一个模块(登录页面),我从中调用Secure.html通过SSL传递用户的登录信息。我有以下问题:
-server :ssl
)。但是,如果我在外部服务器tomcat上部署应用程序,它可以正常工作。答案 0 :(得分:1)
1)您通过更改协议肯定违反了same-origin policy。
2)您不需要拥有嵌入式Jetty的连接器......您所看到的(和应该)与您通过HTTPS看到的相同。 SSL是将您的内容置于安全服务器之后的问题。 IMO这是一个生产问题,而不是发展问题。