orbited

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 across orbited. It's pretty badly documented (I don't think that actually qualifies for documentation anyway), but these terms seems to pop up...

How to install Orbited on OS X 10.6

I am trying to get Orbited working on OS X 10.6. Installing it in Linux was simple but I have seem to run into a roadblock. After installation when I try to run orbited server I get the following error Traceback (most recent call last): File "/opt/local/bin/orbited", line 9, in <module> load_entry_point('orbited==0.7.10', 'consol...

Orbited: Serve static files

Hi, for a web application that is currently under development, I'm using Orbited to serve the static files. This works fine for .js and .css files, but it seems to have problems with displaying svg images that are embedded in html. Regardless of whether I call the svg file directly in the browser or calling the html which embeds the svg...

Javascript callbacks work in Firefox but not in Chrome or Safari

I am working with Ejabberd and Orbited and I am having a few issues with my JavaScript callback functions not being called. The following is my JavaScript file where the TCPSocket connection happens and I have two callback functions namely onSocketConnect: which is called when the Orbited established connection with port 5222 of the XMP...

Orbited proxy not closing proxied connection

I'm having trouble getting orbited to kill the connection it's proxying. I'm using it to run IRC through a web browser. When the user disconnects, I would expect the IRC server to show the "remote host closed the connection" message, but instead I get ping timeout. So the code in proxy.py (in connectionLost) isn't killing the connecti...

simple twisted receiver for orbited comet server

I have an unusual request. I've just moved to a new apartment and I won't have my internet hooked up for over a week. I'm trying to develop my application using my phone for online documentation. Before I moved I found this video (vodpod.com/watch/4071950-building-real-time-network-applications-for-the-web-with-twisted-and-orbited-part-...

Setting up orbited development environment on windows.

Hi I am developing a comet application using python orbited and django. But I don't know how to setup the development environment. Can any one please help me out? I looked at the documentations and tutorials... But I found them confusing... What I am looking is a walk-through kind of information. ...

Getting Orbited to work with my Twisted app

I can't seem to get Orbited working with my Twisted app. I have a page, served by Twisted (say localhost:8000/page) which includes Orbited.js from the orbited server (localhost:8001/static/Orbited.js). I then have a TCP chat server example running on port 7777. I try to use Orbited.TCPSocket to connect to the chat server: conn=new Orbit...

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. ...