instant-messaging

What's a good freeware collaborative (i.e., multiuser) instant messenger?

I'm looking for an app that my development team that is essentially an IM app, but multiple people can be in one "room." Similar to IRC. Additional requirements (that preclude hosting an IRC server myself): IM style appliction -- Download and install one app on each PC. The app lives in the tray. New messages appear in a notificati...

Do you chat online for work purposes?

I've worked with folks who are chatting online with their peers, constantly batting around ideas. I've also worked with folks who adamantly refuse and think it's a waste of time. Are online live chatting forums of particular use to you? Why or why not? Internal to your company, or external and world-wide? Does your employer encourage o...

What is the best option for running a Jabber/XMPP on Windows 2003?

I'm looking to run a Jabber server on a Windows 2003 server(web farm) and like some practical advice from anyone who has run a live environment with ~500 concurrent users. Criteria for comment: Performance Capacity (ie ~number of concurrent users) Stability ...

Distributed corporate collaboration tools

I'm looking for a corporate collaboration tool to help bring together my team, who are geographically and organisationally distributed. Some team members operate on client sites, behind corporate firewalls and similar. The restrictions I have are: Must allow creation of persistent 'channels' (i.e. not just one-to-one or one-to-many c...

Any good team-chat websites?

Are there any good team-chat websites, preferably in Python, ideally with CherryPy or Trac? This is similar to http://stackoverflow.com/questions/46612/whats-a-good-freeware-collaborative-ie-multiuser-instant-messenger#46660, but a few primary differences: 1) I very much want to host the server. 2) I don't care if Smileys are included...

What .NET libraries are available for sending instant messages?

What .NET libraries are available for sending instant messages? If you have experience with them, what were your impressions? ...

How to create an IM bot with C#

Is there an easy way to create an IM bot on multiple im networks (aim, gtalk, yim, etc) that can accept and interpet specific commands sent to it to perform a server related task? Lets say for instance I have a website for managing an rss feed. I want to send a command to an IM bot to add another feed to my collection. the IM bot would ...

Creating an IM bot

I am trying to create an IM bot and I haven't been able to find the necessary resources. UPDATE There was an issue with Imified making gtalk bots not appear online (and not responding), it works now so I'm closing this. This tutorial does work. Original question not deleted for reference purposes First, I did find a great tutori...

Which Instant Messenger services can some server side code, consume?

Hi folks, I've got an application which i want to send some alerts information. Currently, it's firing off emails -> works perfectly fine. I was hoping to intergrate this server application with one/many Instant messenger services, such as MSN Messenger or Google Chat. I'm not sure what my options are, though. Has anyone any informat...

Where can I find an ICQ library for C#?

Is there any (preferably native) C# library which allows me to send some messages via the ICQ protocol? Is there something better than just wrapping libgaim or something? ...

Instant Messaging With Priority For Developer Communication

My team communicates a lot with IM. We'll sometimes use IM to ask a question even to someone who's in the next cube over. The reason for this is that we all find that answering an IM is much less disrupting than talking. Still, I find that the blinking message window can be disrupting when I'm heads down coding. I can't help but lo...

Integrating Instant Messaging into an ASP.NET application

I was thinking about integrating some instant messaging function into an existing ASP.NET web application, e.g: the web application can display the online-status of users (are they currently logged in with their IM client) users can send messages from the web application to the IM client of other users users can initiate a IM chat from...

XMPP Client incompabilities.

I'm currently working on a project that is building a java-based desktop application to interface with a website. We want to incorporate IM capabilities, so we decided to use XMPP. The problem is our application has other features, and anyone using another client to connect to our XMPP server will cause problems with our website (e.g. ...

Email to IM gateway, and other ways to send Instant Messages programmatically.

It's very easy to send an email programmatically. For example, in Perl you can do this: open(MAIL, "|/usr/sbin/sendmail -oi -t") or die; print MAIL "From: ...\n"; print MAIL "To: ...\n"; print MAIL "Subject: ...\n"; print MAIL "\n"; print Mail "... body ..."; close(MAIL); I'd like to collect simple, self-contained snippets of code fo...

How can I get Perl's Jabber::SimpleSend to work with Gmail chat?

I'm trying to write a simple Perl script to send an Instant Message. Jabber seemed like it might be the most conducive protocol. But the following script fails: #!/usr/bin/env perl use Jabber::SimpleSend qw(send_jabber_message); send_jabber_message('[email protected]', 'CENSORED', '[email protected]', ...

Real-time chat with push notification

Hi, I am working on a private messasing functionality for my site, is there a way to get push notifications from the server, that the user has received a new message? the only technique I know is to constantly poll the server via ajax to see if there are new messages, and reload the messenger window if needed. thanks for any feedback! ...

Set instant messenger display message programmatically

Would a script that sets display messages for instant messengers be simple or complex? After some searching, there doesn't seem to be any information about this at all. For the sake of an example, if I had a text file of quotations, would it be possible to have the google talk display message change to a different quotation hourly? ...

What scenarios are enabled by scripting or automating an IM client?

What can I do with an API for an IM client? Why do I want this? What new scenarios are opened up? How can I take advantage of it? Is it something I can graft into existing apps? or are IM APIs primarily targeted at enabling new types of applications? ...

Libraries to connect to Instant Messaging (IM) services like Yahoo , MSN, AIM through Java Program

I am looking for some library that will help me connect to IM networks through a Java program. My requirement is as follows: User should be able to login, retrieve friend list, and able to send messages to his friends Messages should be delivered to offline friends too. I have done some research about lib-purple. But its not writte...

Best XMPP Book?

I'm trying to learn XMPP (Extensible Messaging and Presence Protocol), and start a project using the technology. What are some good books out there? What is the best? Is there a best book for .NET development with XMPP? I'm planning to use OpenFire as my XMPP server. If any of the books cover that, great! But not a critical require...