以编程方式打开 IBM Sametime 聊天窗口

发布于 2025-01-05 07:46:51 字数 76 浏览 1 评论 0 原文

考虑 Sametime 聊天已在运行的场景。可以与另一个程序中的另一个人进行公开聊天吗?你能告诉我程序吗?

多谢, 奥姆卡

Consider a scenario where Sametime chat is already running. It is possible open chat with another person from another program? Can you please tell me the procedure?

Thanks a lot,
Omkar

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

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

发布评论

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

评论(3

椵侞 2025-01-12 07:46:51

我认为你的问题是可能的,但你的问题不明确。也许您可以扩展您的最终目标。 Sametime 拥有数据通道、IM 通道等各种通道,并且使用不同的工具包可以实现很多功能。

从您的问题来看,您很可能可以使用 Web 连接 API 来执行此操作,该 API 记录在 Sametime SDK 中。它将涉及从想要向 Sametime 客户端中运行的 HTTP 服务器启动聊天窗口的应用程序发出 HTTP 请求。

I think what you're asking is possible, but your question isn't clear. Perhaps you can expand on what your final goal is. Sametime has data channels, IM channels and all sorts, and lots of things are possible with the different toolkits.

Most likely from your question, you can do this using the web connect API, which is documented in the sametime SDK. It would involve making a HTTP request from your application that wants to launch a chat window to the HTTP server that is running within the Sametime client.

顾挽 2025-01-12 07:46:51

我正在扩展卡尔的答案,所以请感谢卡尔。

  1. 安装IBM Sametime 8.5或更高版本的SDK
  2. 转到Notes\framework\rcp并打开plugin_customization.ini
    设置 com.ibm.collaboration.realtime.webapi/startWebContainer=true
  3. 重新启动 Lotus Notes 和 Sametime
  4. 编写此 C# 程序

    var request = WebRequest.Create("http://localhost:59449/stwebapi/chat?userId=kt816") as HttpWebRequest;

    request.GetResponse();

如有任何问题请告诉我

I am extending carl's answer so please give credit to Carl.

  1. Install IBM Sametime 8.5 or above SDK
  2. Goto Notes\framework\rcp and open plugin_customization.ini
    Set com.ibm.collaboration.realtime.webapi/startWebContainer=true
  3. Restart the Lotus notes and sametime
  4. Write this C# program

    var request = WebRequest.Create("http://localhost:59449/stwebapi/chat?userId=kt816") as HttpWebRequest;

    request.GetResponse();

Let me know it any quesions

燃情 2025-01-12 07:46:51

请阅读本文档 。在其中,我发现了这个:

 <HEAD>  
      <TITLE>Sametime Links Sample Page</TITLE>  
      <LINK REL=STYLESHEET  HREF="http://sametime.acme.com/sametime/stlinks/stlinks.css" TYPE="text/css">  
      <SCRIPT src="http://sametime.acme.com/sametime/stlinks/stlinks.js">  </SCRIPT>
      <SCRIPT> setSTLinksURL("http://sametime.acme.com/sametime/stlinks");</SCRIPT
 </HEAD>

您可以添加这个正文:

<body>
<script>writeSTLinksApplet("","",false); </script>
<Script>writeSametimeLink("<username>", "Click here to IM Name!", true)</Script>
</body>

Please read this document. In it, I found this:

 <HEAD>  
      <TITLE>Sametime Links Sample Page</TITLE>  
      <LINK REL=STYLESHEET  HREF="http://sametime.acme.com/sametime/stlinks/stlinks.css" TYPE="text/css">  
      <SCRIPT src="http://sametime.acme.com/sametime/stlinks/stlinks.js">  </SCRIPT>
      <SCRIPT> setSTLinksURL("http://sametime.acme.com/sametime/stlinks");</SCRIPT
 </HEAD>

Which you can add this body:

<body>
<script>writeSTLinksApplet("","",false); </script>
<Script>writeSametimeLink("<username>", "Click here to IM Name!", true)</Script>
</body>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文