我有 GWT、RestyGWT、Widfly
独立的.xml
<security-realm name="AdminSslRealm">
<server-identities>
<ssl>
<keystore path="${env.DBO_PATH_CONFIG}/${env.ADMIN_CONSOLE}" keystore-password="console" />
</ssl>
</server-identities>
</security-realm>
</security-realms>
...
<https-listener name="httpsAdmin" socket-binding="httpsAdmin" security-realm="AdminSslRealm" enable-http2="true" />
...
<socket-binding name="httpsAdmin" port="${jboss.https.port:8553}" />
所以我有2个问题:
1)当我发送第一个 JSON 时,我有这样的错误
OPTIONS https://localhost:8443/services/v2/admin/test net::ERR_INSECURE_RESPONSE
好的,我进入浏览器https://localhost:8443/services/v2/admin/test。看看这张照片
接受此连接后一切正常我如何让客户端自动接受这样的连接???
2)在此之后,当我发送另一个 JSON 时,我遇到了 CORS 问题
XMLHttpRequest cannot load https://localhost:8443/services/v2/admin/test. Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'https://127.0.0.1:8888' is therefore not allowed access.
我可以在 WiildFy 上不包含 CORS 的情况下解决这个问题吗???
如果我可以帮助解决这些问题,证书?如果是。提示如何调整。在 Wildfly 我做到了,但我不能在 GWT SuperDev Mode=(