10.07.2015 Views

Lotus Instant Messaging/ Web Conferencing ... - IBM Redbooks

Lotus Instant Messaging/ Web Conferencing ... - IBM Redbooks

Lotus Instant Messaging/ Web Conferencing ... - IBM Redbooks

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Figure 13-13 Offline Messenger Bot welcome message►Next, we implement sendOfflineMessage (see Example 13-5). This code isresponsible for sending the server application the message and the username of the target offline user.Example 13-5 sendOfflineMessage classvoid sendOfflineMessage(STUser user, String message) {NdrOutputStream outStream = new NdrOutputStream();try{user.getId().dump(outStream);outStream.writeUTF(user.getName());outStream.writeUTF(message);}catch(IOException e){e.printStackTrace();return;}Channel channel =m_channelService.createChannel(SERVICE_TYPE, 0, 0,EncLevel.ENC_LEVEL_ALL,outStream.toByteArray(), null);channel.open();►Finally, we handle the message received from the user in order to resolve thetarget user name and the message to be sent.Chapter 13. Visioning scenario: Sametime enterprise integration 389

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!