for example if i have a remotely hosted site, can I use google's new channel api? http://code.google.com/appengine/docs/python/channel/

If I have a site elsewhere, and I want to get google to create new channels, send data, etc, without being hosted on GAE, or do I have to be hosted on GAE?

If it's possible, please point me in the right direction.

Thanks.

link|improve this question

Similar one: stackoverflow.com/questions/9334738/… – vishal.biyani Feb 27 at 21:27
feedback

2 Answers

up vote 2 down vote accepted

A clever engineer could write a service in App Engine that exposes the two Channel API methods as RESTful methods.

Services not written in App Engine that wanted to use this service could, instead of calling the Channel API directly, proxy those calls via REST to the above service.

Clients that receive messages would use the extant javascript library.

Security, privacy, throttling, abuse detection, etc. are left as an exercise for the reader.

link|improve this answer
feedback

No. The Channel API communicates with Google infrastructure to do its magic. There are plenty of non-Google alternatives, though - just do a search for 'comet'.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.