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

link|improve this question

Do you mean as a plugin for Sametime? Or as a separate application which is using the Sametime API? – Simon O'Doherty Feb 13 at 19:49
Separate application which will use Sametime API... – Linquacious Feb 13 at 19:53
Or another way is interprocess communication with Sametime.. Is it posssible? – Linquacious Feb 13 at 19:56
feedback

2 Answers

up vote 3 down vote accepted

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.

link|improve this answer
Thanks Carl.. I will give example. If I am logged in on samtime on my comp and say I want to chat with Jack. I should open that window using another program. Thanks a lot. – Linquacious Feb 13 at 21:45
OK in that case I'm correct, your other program can communicate with the running Sametime connect client using the Sametime Web Connect API. You can find the documentation for the API in the Sametime SDK, which is here: epil.io/744k0 For example, if the user has sametime connect running, a call to the following URL: localhost:59449/stwebapi/chat?userId=john@acme.com would open a Sametime IM window to john@acme.com – Carl Tyler Feb 13 at 22:29
Hi Karl, I could not find localhost:59449 running on my machine. How can I find which port is being used by SameTime chat? – Linquacious Feb 15 at 18:20
Hi Carl, Thanks I could manage to open the chat window.. But along with that I get log of the chat and windows asks me to save that chat log. How to stop that? Thanks – Linquacious Feb 29 at 6:06
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.