chat in RoR

3 views
Skip to first unread message

Ivan Sas

unread,
Apr 18, 2007, 5:12:53 AM4/18/07
to rubyonra...@googlegroups.com
hello,
is it possible in easy way to do chat in RoR.
i mean something similar to http://www.lingr.com/
Maybe there is some plugin or library, which can do the chat in easy
way.
if not, how to do it directly in the RoR?
BR.

--
Posted via http://www.ruby-forum.com/.

Pratik

unread,
Apr 18, 2007, 7:20:01 AM4/18/07
to rubyonra...@googlegroups.com
May be just use http://www.lingr.com/developers ;-)


--
rm -rf / 2>/dev/null - http://null.in

Dont judge those who try and fail, judge those who fail to try..

Ivan Sas

unread,
Apr 18, 2007, 7:39:22 AM4/18/07
to rubyonra...@googlegroups.com
> May be just use http://www.lingr.com/developers ;-)

It is an option, but lingr can be used only like a service, there is no
lingr code to download.
I'm rather looking for something which can be included directly to
application.

Pratik

unread,
Apr 18, 2007, 7:54:14 AM4/18/07
to rubyonra...@googlegroups.com
Well, you can always use some easy to use comet solution like
http://juggernaut.rubyforge.org/ and write your own code.

On 4/18/07, Ivan Sas <rails-mai...@andreas-s.net> wrote:
>

hemant

unread,
Apr 18, 2007, 8:51:42 AM4/18/07
to rubyonra...@googlegroups.com
On 4/18/07, Pratik <prati...@gmail.com> wrote:
>
> Well, you can always use some easy to use comet solution like
> http://juggernaut.rubyforge.org/ and write your own code.
>

But be warned that, this juggernaut thing, won't work from machines
behind firewall and NAT.

The reason is, Juggernaut uses XMLSocket from flash, which talks to
the push server through a separate port. Now flash imposes lots of
security restrictions on programs opening sockets.

Couple of Juggernaut folks suggest, run this push server on port 443,
which is very strange solution in my opinion, because normally you
would like to bind your web server on that, if your application wants
to use https.

Until, they come with a better solution , Juggernaut can't be used in
anything serious. Traditional comet, through Javascript has been tried
before by folks, but rails not being thread safe, it is hard to
process one controller asynchronously on a mount point(which would be
URL of your chat app.)

So you are stuck with Ajax polling. :(

Rick Olson

unread,
Apr 18, 2007, 9:10:46 AM4/18/07
to rubyonra...@googlegroups.com
> So you are stuck with Ajax polling. :(

This is what campfire does. It's nice when my wireless connection
flakes out and returns. Campfire doesn't miss a beat. IRC and Adium
both drop and reconnect.

Also, yes Rails is not threadsafe and may not be a good candidate for
frequent polling or javascript. But you can easily write a custom
mongrel handler to do that stuff.

--
Rick Olson
http://lighthouseapp.com
http://weblog.techno-weenie.net
http://mephistoblog.com

hemant

unread,
Apr 18, 2007, 11:13:19 AM4/18/07
to rubyonra...@googlegroups.com
On 4/18/07, Rick Olson <techno...@gmail.com> wrote:
>
> > So you are stuck with Ajax polling. :(
>
> This is what campfire does. It's nice when my wireless connection
> flakes out and returns. Campfire doesn't miss a beat. IRC and Adium
> both drop and reconnect.
>
> Also, yes Rails is not threadsafe and may not be a good candidate for
> frequent polling or javascript. But you can easily write a custom
> mongrel handler to do that stuff.
>


Thats correct, I saw mongrel handler code, posted on mongrel mailing
list, long back. But apparently the idea didn't pan out. May be its
time, I should take it for a ride. :)


--
gnufied

hemant

unread,
Apr 18, 2007, 11:16:02 AM4/18/07
to rubyonra...@googlegroups.com


Can't help feeling a bit impressed with this:

http://www.lukas-renggli.ch/smalltalk/seaside/videos/comet.mov

:P

--
gnufied

Chris Boone

unread,
Apr 18, 2007, 12:47:23 PM4/18/07
to rubyonra...@googlegroups.com
>> May be just use http://www.lingr.com/developers ;-)
>
> It is an option, but lingr can be used only like a service, there is no
> lingr code to download.

Well. We don't offer up the code of the app, but we do provide a Ruby
library for the API. Which allows your app to use our servers etc. to
power your chat, on your site.

Still might not be what you're looking for, but it might save you a lot
of time and work.

More info on our wiki:

http://wiki.lingr.com/dev

--
Chris Boone
Design Director, Lingr
http://www.lingr.com

Ivan Sas

unread,
Apr 19, 2007, 4:52:07 AM4/19/07
to rubyonra...@googlegroups.com
thanks for all comments.

i want to use the chat via standard http port, so from the previous
comments the best option for me, looks to code it with ajax polling.

Pratik

unread,
Apr 19, 2007, 8:05:03 AM4/19/07
to rubyonra...@googlegroups.com
Reply all
Reply to author
Forward
0 new messages