以编程方式打开 IBM Sametime 聊天窗口
考虑 Sametime 聊天已在运行的场景。可以与另一个程序中的另一个人进行公开聊天吗?你能告诉我程序吗?
多谢, 奥姆卡
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
考虑 Sametime 聊天已在运行的场景。可以与另一个程序中的另一个人进行公开聊天吗?你能告诉我程序吗?
多谢, 奥姆卡
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
我认为你的问题是可能的,但你的问题不明确。也许您可以扩展您的最终目标。 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.
我正在扩展卡尔的答案,所以请感谢卡尔。
设置 com.ibm.collaboration.realtime.webapi/startWebContainer=true
编写此 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.
Set com.ibm.collaboration.realtime.webapi/startWebContainer=true
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
请阅读本文档 。在其中,我发现了这个:
您可以添加这个正文:
Please read this document. In it, I found this:
Which you can add this body: