4

I am looking for something similar to Olark. Such as reall time chat on a website with customers where you can use an IM client. I would also like it to be white label. Does anyone know of any free alternatives or a library you can drop into a project?

PeeHaa
  • 71,436
  • 58
  • 190
  • 262
Dappy
  • 251
  • 1
  • 2
  • 8

3 Answers3

4

Take a look to SignalR framework which exactly allows what you want.

Here's an article from Scott Hanselman who has made a chat in 12 lines of code and another one with more details about the technology.

Finally, a sample chat application.

Stéphane Bebrone
  • 2,713
  • 17
  • 18
  • This is open source, it has a [MIT license](https://github.com/SignalR/SignalR/blob/master/LICENSE.md). See this [link](http://www.opensource.org/licenses/mit-license.php) for details about MIT. – Stéphane Bebrone Dec 08 '11 at 07:00
0

Can't you build an alternative with framework likes :

http://www.ape-project.org/

a demo can be found here :

http://www.ape-project.org/demos/1/ape-real-time-chat.html

Or by using the Html 5 websockets ?

Djoul6
  • 309
  • 1
  • 7
0

I'm not sure it's what you want, but tale a look on : https://www.frozenmountain.com/websync/

Amir978
  • 857
  • 3
  • 15
  • 38