【问题标题】:JBOSS Standalone InterfacesJBOSS 独立接口
【发布时间】:2015-10-05 15:05:21
【问题描述】:

在 JBOSS 6.4 的standalone.xml 文件中有接口部分,显示的不安全部分是什么,何时使用?

   <interfaces>
    <interface name="management">
        <inet-address value="${jboss.bind.address.management:127.0.0.1}"/>
    </interface>
    <interface name="public">
        <inet-address value="${jboss.bind.address:127.0.0.1}"/>
    </interface>
    <!-- TODO - only show this if the jacorb subsystem is added  -->
    <interface name="unsecure">
        <!--
          ~  Used for IIOP sockets in the standard configuration.
          ~                  To secure JacORB you need to setup SSL
          -->
        <inet-address value="${jboss.bind.address.unsecure:127.0.0.1}"/>
    </interface>
</interfaces>

【问题讨论】:

    标签: java networking jboss server


    【解决方案1】:

    RMI/IIOP(远程方法调用,Internet inter-orb 协议)与 JacORB 子系统一起使用,以提供对部署在 JBoss 应用程序服务器中的企业 bean 的 CORBA/IIOP(远程)访问,如 EJB 规范所定义。

    参考:http://jbossiiop.jboss.org/

    使用 IIOP,客户端(Java 和其他符合 CORBA 的实现)可以通过此协议访问您的 EJB。

    参考:http://docs.oracle.com/javase/7/docs/technotes/guides/rmi-iiop/index.html

    简单教程:http://docs.oracle.com/javase/7/docs/technotes/guides/rmi-iiop/tutorial.html

    它可以通过 SSL 保护,请参阅保护 JBoss 服务: https://www.redhat.com/promo/summit/2010/presentations/jbossworld/optimize-secure-manage/thurs/rbroeckelmann-310-security/JBossWorldPresentation--Security-JBoss-Services-v1_10.pdf 或谷歌了解更多信息。

    如果您不直接使用 JacORB/IIOP,那么您可能可以删除对 j​​acorb 的模块和子系统引用以及不安全的接口,而不会产生负面影响。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2021-05-04
      • 2013-06-25
      相关资源
      最近更新 更多