views:

1069

answers:

5

I have a client interested in a real time chat application for a SharePoint intranet portal to enable online interview style chat sessions.

Has anyone got reccomendations for a product on the Microsoft Stack that does this? Something that is integrated into SharePoint would be prefferable, but any ASP.NET product would suffice.

The solution would need to be pretty robust as we would expect over 1000 users during a given session.

+2  A: 

Microsoft Office Communication Server is the way Microsoft intended chat for SharePoint. I dont know if its just for 1 to 1 communcation or if there is a good multi-user support.

Another way to implement chat (or IM) in SharePoint is to use Windows Live Messanger and the green precense icon which shows up to the left of all names in SharePoint. But this is probably not the way you want to use chat.

JMD
A: 

We initially turned to handy Windows Live Messanger, However we dropped it because of security concerning.

We are using Groove, which look advisable so far.

FYI

tag
A: 

There is ChatterBox. It's more of a demo app but the source code is available. The latest version is dated 2007 and is in beta with AJAX support.

As you have the source code, I'm sure you could take it and turn it into something nice.

Alex Angas
A: 

I did a little work into this but dropped it because it take alot work to implete all needed features. The easiest way looked to use IRC. IRC client software is available as asp.net, use via an iframe or make into a custom web part, there are also flash or java clients which could be imbedded.

You would need to setup a IRC server.

Will Dieterich
A: 

Hi,

I've recently published an opensource chatting application over at CodePlex. It takes inspiration from Google Talk as well as Facebook chat.

Check it out @ http://aspnetjquerychat.codeplex.com/

Ali Kazmi