Tagged Questions

3
votes
3answers
470 views

Connect PHP with Orbited

After searching the web for a good Comet and also and asking you guys what my best option is, I've chose to go with Orbited. The problem is if you need a good documentation about Comet you won't find. ...
2
votes
2answers
607 views

Authentication using Orbited, STOMP, and MorbidQ

I'm using Orbited to build a Comet chat system on a PHP-based website. However, currently any user can subscribe or post to any channel. What I'm looking to do is have the browser listen for updates ...
2
votes
1answer
722 views

PHP code on orbited comet server

Where can I find the PHP sample code for orbited comet server v0.7? I think that I have to build another server together with orbited server in order to support the comet function. Am I right? If so, ...
1
vote
2answers
826 views

Orbited launch problems: “ ConfigParser.NoSectionError: No section: 'formatters' ”

I'm trying to get Orbited started, but unfortunately I'm running into more than a few problems! First, problems with easy_install (solved). Then, proceeded on with instructions from ...
1
vote
2answers
247 views

How to stress test comet server?

I would like to test how many connections it can support. I am using orbited, specifically the streaming, not long polling.
1
vote
1answer
273 views

Comet for User based Notification over a Message Queue

We trying to build application that should use Comet (AJAX Push) to send notifications to individual users. Most notifications will have a fairly low timeout. As we are running RabbitMQ, it would be ...
1
vote
4answers
531 views

Developing a high-performance, scalable Comet application

Well, the title says most of it. I'm looking to develop a chat application that will hopefully become something more, and currently I'm considering my options for what I should build it on top of. ...
1
vote
2answers
855 views

JSONP Long Polling always loading

I'm doing long-polling with JSONP and firefox continually pops up the "Loading" spinner making the page seem like it hasn't finished loading. Is there a way to suppress this? I've been told that ...
1
vote
2answers
164 views

Streaming the result of a command back to the browser using Twisted and Comet

I'm writing an application that streams the output (by this I mean both sys.stdout and sys.stderr) of a python script excited on the server, in real time to the browser. The users on the site will ...
1
vote
1answer
231 views

what framework should one use django middleware with orbit?

The Django orbit integration methods I've seen in quick google searches don't seem to carry Django abstractions, like "request.user" with them. "request.user" is particularly important, since I am not ...
1
vote
1answer
423 views

Dojo Comet + Orbited is giving 404

I have <script type="text/javascript"> function setupComet() { dojox.cometd.init("http://comet.domain.tld:8000"); dojox.cometd.subscribe("/my/calendar", cometCallback); } ...
1
vote
1answer
285 views

orbited coment server problem

i tried installing orbited on vista . but i get following errror when i try to run the orbited server.When i type on twisted cmd prompt orbited i get following o/p. C:\>orbited Traceback (most ...
1
vote
1answer
427 views

IE7 fails after reload of Orbited powered page

I am working on an Orbited-powered website and I'm experiencing some annoying behavior with IE7. Everything works fine and dandy in FF3, but in IE7, I get a recurring error if I reload the page: ...
0
votes
1answer
76 views

Comet with Django

I'm fairly new to web development. I'm currently working on a project that requires real-time update of data on a particular page. I've got my server setup with nginx and django, talking via fcgi ...
0
votes
0answers
94 views

Run the orbited server?

Odd question, but I'm trying to follow this tutorial which explains how to set up comet with django. I'm just confused about some stuff when I'm trying to do the tutorial. Firstly, where does the ...
0
votes
1answer
128 views

Stomp - multiple subscriptions each with a unique handler

I am using Stomp / Orbited for Comet functionality. In order to deal with multiple channels, I end up doing this: stomp.onmessageframe = function(frame) { if (frame.headers['destination'] == ...
0
votes
1answer
345 views

Comet on python

I am pretty new to web programming in python. I am interested to build a chat room on browser. (for prototype). I know django pretty well and have done a bit of twisted in the past. Then I came ...
0
votes
1answer
168 views

Can I use Orbited as a HTTP server for dynamic content?

Comet Server Orbited can serve static files from paths specified in it's config file under [static] section. I wonder if it's possible to serve dynamic content via orbited?