我想为EJB调用实现SSL。我尝试了以下链接,但它不像预期的那样工作。enable SSl in jboss如何在Jboss 7.0.0.GA中为EJB调用启用SSL。
rjzwgtxy1#
尝试WildFly 10 -http://middlewaremagic.com/jboss/?p=2783的本教程您需要更改的服务器配置是:
示例CLI:
/core-service=management/security-realm=ApplicationRealm/server-identity=ssl:add(keystore-path=server.keystore, keystore-relative-to=jboss.server.config.dir, keystore-password=123456) reload /subsystem=undertow/server=default-server/https-listener=https:add(socket-binding=https, security-realm=ApplicationRealm) /subsystem=remoting/http-connector=https-remoting-connector:add(connector-ref=https, sasl-protocol=remote, security-realm=ApplicationRealm) /subsystem=ejb3/service=remote:write-attribute(name=connector-ref,value=https-remoting-connector) reload
然后,您应该在EJB客户机配置中使用正确的端口(8443)。
1条答案
按热度按时间rjzwgtxy1#
尝试WildFly 10 -http://middlewaremagic.com/jboss/?p=2783的本教程
您需要更改的服务器配置是:
示例CLI:
然后,您应该在EJB客户机配置中使用正确的端口(8443)。