Lotus Notes 与 Java Portal 平台的集成

发布于 2024-07-16 07:40:54 字数 301 浏览 6 评论 0原文

我正在使用基于 Java 的门户平台。 我需要在我的门户中显示存储在 Lotus Notes 中的信息。 考虑到安全问题,推荐的方法是什么?

是否有与 Lotus Notes 集成的开源 JSR 168 portlet?

从我的门户平台,我可以调用 Web 服务来获取此信息。 这是推荐的吗? 如果是这样,我在哪里可以找到有关可用于 Lotus Notes 的 Web 服务 API 的信息?

是否有任何 Java 组件可以安装在我的门户平台上,从而提供 Java API 来访问 Lotus Notes 信息?

I am using a Java based Portal Platform. I need to show within my portal information stored in Lotus Notes. Considering security issues, what are the recommended ways to do this?

Are there any open source JSR 168 portlets out there that integrate with Lotus Notes?

From my portal platform, I can call web services to get this information. Is this recommended? If so where can I find information about web service API´s available for Lotus Notes?

Are there any java components that I can install on my portal platform that will make available a java API to access Lotus Notes information?

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

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

发布评论

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

评论(2

鲜肉鲜肉永远不皱 2024-07-23 07:40:54

您有两个主要选择。

首先,您可以通过 IIOP 使用 CORBA java 接口直接与 Domino(Notes 是客户端,Domino 是服务器)进行通信。 这将使您能够完全访问 Domino 对象模型,并允许您编写代码来执行您在 Java 平台中需要执行的任何操作。

其次,您可以查看网络服务。 这将更容易设置,但是您必须为您想要在 Domino 服务器上执行的操作部署代码。 在 ND7 及更高版本中,Domino 将从 WSDL 或方法存根为您构建所有 Web 服务元素。

从安全角度来看,连接到该服务的用户需要通过 Domino 进行身份验证。 如果您可以通过代理登录,这可能是系统帐户或实际用户。

我看到的另一个角度是仅通过 portlet 将 HTTP 调用代理到 ​​Domino。

You have two main options.

First you can talk to Domino (Notes is the client, Domino is the server) directly using the CORBA java interface over IIOP. This will give you full access to the Domino object model and allow you to write the code to do whatever it is you need to do in your java platform.

Secondly you could go over web services. This will be much easier to set up, but you will have to deploy code for what ever it is you want to do on the Domino server. In ND7 and up Domino will build all the web service elements for you from a WSDL or method stub.

From a security point of view, the user connecting to the service will need to be authenticated with Domino. This could be a system account or the actual user if you can proxy the login through.

Another angle I've seen is to just proxy HTTP calls through the portlet to Domino.

女皇必胜 2024-07-23 07:40:54

假设您在门户网站和 domino 之间设置了 SSO,最简单的解决方案是使用门​​户网站中包含的 Notes View Portlet。 如果您需要以更自定义的格式显示数据,那么我建议使用 portlet 工厂。 如果前面的方法都不适合您,那么您应该能够使用 RAD 和 Notes java api 开发自定义 portet。

Assuming you have SSO setup between portal and domino the simplest solution is to use the Notes View Portlet included with portal. If you need to show the data in a more customized format then I would suggest to use portlet factory. If neither of the previous work for you then you should be able to develop a custom portet using RAD and the notes java api.

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