从一个应用程序访问另一个应用程序中的 ADF 组件
我确实在耳朵中部署了一些 ADF BC 组件。我想从另一只耳朵访问这些内容。这可能吗?
例如:我确实在应用程序 (A.ear) 中定义了 TestAM(应用程序模块),并且我想从另一个应用程序 (B.ear) 中的 servlet 访问 TestAM
谢谢 吉乔伊
I do have some ADF BC components deployed in an ear . I want to access those from another ear. Is that possible ?
eg : I do have a TestAM ( application module ) defined in application ( A.ear) and I wan to access TestAM from a servlet in another application ( B.ear )
Thanks
Jijoy
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您将 TestAM 作为 EJB 公开,那么您可以远程调用它。
也可以将其包装为 Web 服务并以这种方式调用。
查看 JDev 中 AM 上的“服务接口”和“EJB 会话 Bean”选项卡。
if you expose the TestAM as an EJB then you can call it remotely.
Also possible to wrap it as a web service and call that way.
Look at Service Interface and EJB Session Bean tabs on the AM in JDev.