Adobe LiveCyle - 何时在 WebLogic 中使用 ServiceClientFactory 的连接属性?

发布于 2024-12-07 05:12:29 字数 1434 浏览 1 评论 0原文

从 Java 连接到 Adob​​e LiveCycle ES 2.5 时,设置连接属性页面列出了您应根据您的服务器类型使用的默认连接属性。

对于WebLogic,是这样的:

Properties ConnectionProps = new Properties();
connectionProps.setProperty(ServiceClientFactoryProperties.DSC_DEFAULT_EJB_ENDPOINT, "t3://localhost:7001");
connectionProps.setProperty(ServiceClientFactoryProperties.DSC_TRANSPORT_PROTOCOL,ServiceClientFactoryProperties.DSC_EJB_PROTOCOL);
connectionProps.setProperty(ServiceClientFactoryProperties.DSC_SERVER_TYPE, "WebLogic");
connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_USERNAME, "administrator");
connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_PASSWORD, "password")

...
ServiceClientFactory myFactory = ServiceClientFactory.createInstance(connectionProps);

我的问题是这样的:在我们的WebLogic服务器上,上面的方法失败,但出现以下异常:

Caused by: java.net.ConnectException: t3://localhost:7001: Destination unreachable; nested exception is:

但是,如果我只是忽略connectionProps,它就可以工作:

ServiceClientFactory myFactory = ServiceClientFactory.createInstance();

那么,这里发生了什么? Adobe 是否错了,并且您没有使用 WebLogic 的 connectionProps,或者我们是否缺少某些 WebLogic 配置?当我使用 ServiceClientFactory.createInstance() - 没有 connectionProps 时,这意味着什么?

感谢您的任何建议!

抢 :)

When making a connection from Java to Adobe LiveCycle ES 2.5, the Setting connection properties page lists the default connection properties you should use depending on your server type.

For WebLogic, it is this:

Properties ConnectionProps = new Properties();
connectionProps.setProperty(ServiceClientFactoryProperties.DSC_DEFAULT_EJB_ENDPOINT, "t3://localhost:7001");
connectionProps.setProperty(ServiceClientFactoryProperties.DSC_TRANSPORT_PROTOCOL,ServiceClientFactoryProperties.DSC_EJB_PROTOCOL);
connectionProps.setProperty(ServiceClientFactoryProperties.DSC_SERVER_TYPE, "WebLogic");
connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_USERNAME, "administrator");
connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_PASSWORD, "password")

...
ServiceClientFactory myFactory = ServiceClientFactory.createInstance(connectionProps);

My problem is this: on our WebLogic server, the above fails with the following exception:

Caused by: java.net.ConnectException: t3://localhost:7001: Destination unreachable; nested exception is:

However, if I simply ignore connectionProps, it works:

ServiceClientFactory myFactory = ServiceClientFactory.createInstance();

SO, what is going on here? Is Adobe wrong, and you don't use connectionProps for WebLogic, or is there some WebLogic configuration that we are missing? What does it mean when I use ServiceClientFactory.createInstance() - without connectionProps?

Thanks for any advice!

Rob
:)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

゛清羽墨安 2024-12-14 05:12:29

Answer given on the this Google Group Post: only need the configuration values if you are connecting to a LiveCycle running in a different JVM.

Rob

:)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文