将 MS Office Communicator 状态指示器添加到 JSP 中
我想将 MS Office Communicator 状态指示器添加到我的 Java 应用程序 (jsp) 中。
I want to add MS Office communicator presence indicator into my Java Application(jsp).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的目标是 Windows 平台,最简单的方法是在客户端完成所有操作。
只要客户端运行 IE、Office 2003 或更高版本以及 Communicator 2007 或更高版本,您就可以使用 NameCtrl 随 Office 一起分发的 ActiveX 对象。
以下代码应该可以帮助您入门:
对于现实世界的解决方案,您只需要实现一个根据返回的在线状态而变化的图像(即与每个用户名一起显示的在线气泡),以及一组sip uri 到图像,以确保您可以将传入状态更改映射到相关图像。
If you're targeting the windows platform, the simplest way is to do everything client-side.
As long as the clients are running IE, Office 2003 or above, and Communicator 2007 or above, you can use the NameCtrl ActiveX object that gets distributed with Office.
The following code should get you started:
For a real world solution, you'd just need to implement an image that changes depending on the presence state that gets returned (i.e. a presence bubble to display alongside each users name), and a collection of sip uris to images, to ensure you can map an incoming status change to the relevant image.