我有独立的 Java 客户端(在 eclipse 中运行),我希望连接到外部服务器。如果服务器是本地主机,那么我根本看不到任何问题。但是,每当我尝试连接到外部服务器时,我总是会遇到以下异常
- JBREM000200: Remote connection failed: javax.security.sasl.SaslException: Authentication failed: all available authentication mechanisms failed
- Could not register a EJB receiver for connection to remote://10.160.148.61:4447
java.lang.RuntimeException: javax.security.sasl.SaslException: Authentication failed: all available authentication mechanisms failed
我已尝试使用 JNDI 从远程客户端执行提到的 EJB 调用的步骤
异常告诉我与身份验证相关的配置文件中有问题。这是我的 ejb_client_properties 文件
remote.connectionprovider.create.options.org.xnio.Options.SSL_ENABLED=false
remote.connections=default
remote.connection.default.host=10.160.148.61
remote.connection.default.port = 4447
remote.connection.default.connect.options.org.xnio.Options.SASL_POLICY_NOANONYMOUS=false
remote.connection.default.username=tan
remote.connection.default.password=f2b1c3c7d3f1e224cbf6508494cf0418
注意:用户 tan 已添加到服务器上的我的 mgt.user.properties 文件中。我使用 add-user.bat 在服务器中添加用户。我还添加了一个应用程序用户。我使用相同的凭据传递给服务器。我想不出别的了。
我的 ejb 调用如下:
final Hashtable jndiProperties = new Hashtable();
jndiProperties.put(Context.URL_PKG_PREFIXES, "org.jboss.ejb.client.naming");
InitialContext aJNDI = new InitialContext(jndiProperties);
Ppi handle = (Ppi) aJNDI
.lookup("ejb:PPIEAR/PService/PConnect!com.gem.p.PConnection?stateful");
我看到许多与异常相关的线程但无法修复它:(有人可以帮忙吗?
我还在服务器上安装了合法的 SSL 证书。我需要做一些额外的事情来解决这个问题吗?
另请注意:我的服务器在独立模式下运行。