Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
9answers
9k views

Implement Comet / Server push in Google App Engine in Python

How can I implement Comet / Server push in Google App Engine in Python?
10
votes
1answer
233 views

Best Method of Channel Pooling in Google App Engine

It seems the only way to make the GAE Channel API financially viable is to implement some kind of pooling mechanism (one of the senior app engine product managers even told me this when I emailed them ...
6
votes
1answer
1k views

AppEngine Channel API - Best way to check if a channel is still open (server side)

I have built a social network/dating type application on the AppEngine and am currently in the process of adding a chat built on top of the Channel API. However, the problem that I have is that users ...
6
votes
5answers
1k views

Google app engine Channel API for COMET on non Javascript clients

How to use Google app engine Channel API for COMET on non JavaScript clients. I shall be writing a client in python or any other language, and can do HTTP or Socks from client. How shall I proceed, ...
6
votes
3answers
832 views

Consuming Google Channel API in C#

The official documentation doesn't mention the support, but I'm wondering if it is possible to hook up a client program instead of javascript to use the Channel API. I'm currently using the basic ...
5
votes
4answers
645 views

Is it possible to have a GAE channel-API to iphone?

I want to try using channel-API between my GAE app and the iphone. I'm not sure where to start... should I try it with UIWebView that runs a javascript?
4
votes
1answer
343 views

Force Channel API to poll

Hopefully Moishe sees this: in development mode, the channel api client (javascript) resorts to polling... and uses a very fast polling rate. After poking around I found that if I set ...
3
votes
1answer
174 views

Massive multi-user realtime application with Google App Engine

I'm building a multiuser realtime application with Google App Engine (Python) that would look like the Facebook livestream plugin: https://developers.facebook.com/docs/reference/plugins/live-stream/ ...
3
votes
4answers
652 views

Differences between XMPP and Channel API for Google App Engine

I am developing an application that doesn't reside on AppEngine and having the functionality of a chat putting in communication web clients (browser + javascript) and mobile clients (ActionScript). ...
3
votes
1answer
358 views

how is Billing for Channel API done?

I've chosen google-app-engine because of its scalability, and now I try to understand how much I will have to pay once I release the product. I've looked back and forth in the google app engine ...
3
votes
4answers
751 views

Google App Engine: Browser to Server persistent connection

I've been playing around with the Google App Engine channel API to create a real-time multiplayer game similar to http://rawkets.com/. Since this API is basically "one way" (doesn't enable a ...
3
votes
1answer
792 views

Is there a GWT library to interface with the new AppEngine Channel API

I want to use the new channel API on the appengine side. My client is written in GWT. While I could write the client side in Javascript, I wanted to know if there is already a GWT library that does ...
3
votes
2answers
380 views

is it possible to use google channel api without using rest of app engine

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 ...
2
votes
3answers
113 views

GAE two way communication with client (Channel API alternative for Java / iOS clients, or perhaps XMPP)?

I'd like to implement two way communication between a cross platform mobile client (Android, PC - written in Java and iOS written in Objective-C) and my Google AppEngine (Java) server. It should: ...
2
votes
0answers
38 views

SocketTimeoutException using URLFetch to a service that sends channel messages

We have two AppEngine (Java) apps. One of them uses URLFetch to the other to create an appointment. In the receiver, we've added a feature where we use the Channel API to see if there are any open ...
2
votes
2answers
137 views

What is the Amazon EC2 equivalent of the AppEngine Channel API?

If any. I. e. if there is something that is only roughly similar, I would appreciate if you could characterize what are the limitations and differences.
2
votes
1answer
83 views

working with new channel creation limits

Google app engine seems to have recently made a huge decrease in free quotas for channel creation from 8640 to 100 per day. I would appreciate some suggestions for optimizing channel creation, for a ...
2
votes
1answer
129 views

google app engine channel api limitations

I have been using Google app engine for ~2 years now and love it. I am tasked with making a game and I wanted to use GAE as the backend. From what I understand the Channels API is meant for this kind ...
2
votes
1answer
281 views

Channel disconnect notification in channel api in google app engine

Im using my GAE application on my phone. I face a problem in getting the disconnect notification to /_ah/channel/disconnected in channels api even if i manually close the socket by socket.close() ...
2
votes
1answer
227 views

App engine Channel API returns no messages

Problem description: channel messages no returned to ajax script. Initially, messages are delivered to clietn side, but the problem appears when I set larger timeout in js: ...
2
votes
1answer
485 views

Problem with google appengine channel API (Java)

I'm having problems with the Channel API - any help would be greatly appreciated. I've no problems with the API on the local dev server, but when I put it up on appspot, I get an esoteric exception ...
2
votes
0answers
263 views

Why GAE ChannelAPI Socket.open() fails?

We are using Channel API on our website and it works very well on desktop and mobile site (iPhone/Android). But the same code fails silently on Socket.open command in our mobile app (built with ...
2
votes
1answer
241 views

Channels and TaskQueues in Google App Engine (client debugging)

I'm trying to build and debug my first GAE application and have already benefited from the awesome support of Stackoverflowers to get where I am in having tasks being processed on the default queue. ...
2
votes
2answers
367 views

How to make a countdown timer on appengine?

I am developing an application (on GAE) that needs a countdown timer and notifies the client side when the timer reaches zero. To notify the client side i'm using GAE Channel API . any ideas? ...
2
votes
2answers
667 views

GWT Serialisation and Appengine Channel Api

I am using Google Appengine's Channel API to send events from server to the client. The problem is Channel API only sends messages of type java.lang.String So my classes in the ~.shared package ...
1
vote
0answers
29 views

JavaScript errors when using Google App Engine's Channel API and development server

I'm writing a Python GAE app that uses the Channel API, and everything works fine except that I get non-fatal browser errors in the Firefox error console when using the development server. It's ...
1
vote
1answer
43 views

Channel API /disconnect inbound service not called when tabs are closed in Chrome and FF

I create socket connection each time user logs into my application. This means if they open new tabs within same browser window multiple socket connections are established for each browser tabs. ...
1
vote
0answers
28 views

Getting Channel Client ID for RequestFactory requests

Is there any way to get the Channel ID on the server or transmit it inside a RequestFactory call? Situation: User starts the application, a channel is being opened. User persists an entity with ...
1
vote
2answers
50 views

Guarding against missed messages in AppEngine Channel API

In the AppEngine Channel API, channels automatically close after 2 hours. We are handling this by rejoining the channel in the onError event. Is there a chance the messages could get missed if they ...
1
vote
2answers
179 views

Google App Engine Channel API

I am trying to learn GAE's channel API (using Java), but I cannot figure out where to start from. I went through Channel API Overview (Java) but the code posted there wasn't complete for brevity ...
1
vote
1answer
108 views

Channel API: will presence get a disconnected notification when token expires?

I have built an app on the Channel API, using the channel presence urls to keep track of connected clients. I receive a ping at /_ah/channel/disconnected/ when clients go away. Will I receive a ping ...
1
vote
1answer
78 views

Checking client presence using Channel

I am currently developing an application on Google App Engine for one of my course project, and am now trying to come up with a side panel that will update itself whenever someone logs in and connect ...
1
vote
1answer
317 views

GWT & channel API

Anyone have experience with appengine channel api with GWT? I have been following the BRIEF "How-to" provided with the googlecode . My question is how do we get the channelKey(token variable in the ...
1
vote
1answer
162 views

App Engine Channel API's Javascript Client Isn't Using my onError Callback

I'm using App Engine's Channel API to maintain a connection between a Chrome extension and an App Engine app. You can see my Channel-related code here: ...
1
vote
2answers
122 views

Using GAE channels without browser

I want to write GAE based application that synchronizes information between computers/phones. Right now I am only querying periodically, which causes delays or requires user to click a button to ...
1
vote
1answer
131 views

Google Channel API - How to test it locally?

I want to test my application which share messages between two users using google channel api, but I manage to see messages going only from one side to the other. is it because I'm opening 2 channels ...
1
vote
0answers
407 views

Channel API closes a channel

First off, thank you @Moishe for the very useful API. I'm having a little timeout problem, maybe someone knows the answer. Here's how I open the channel: var openChannel = function () { var ...
1
vote
1answer
114 views

How to keep track of the number of active user in a Channel API chat

I'm working on a small chat using the google Channel API and appengine. Is there an easy way to know how many users are active on the chat? Thanks, David
1
vote
1answer
402 views

Google App Engine Xmpp chat how to manage the status of the users?

It is easy to play with xmpp and the channel api to obtain a chat like... http://www.dev-articles.com/article/Google-App-Engine-sending-messages-with-XMPP-393002 is an example, although I'm ...
1
vote
3answers
484 views

Google App Engine Channels API and sending heartbeat signals from client

Working on a GAE project and one requirement we have is that we want to in a timely manner be able to determine if a user has left the application. Currently we have this working, but is unreliable ...
1
vote
1answer
286 views

Google Channel API - Socket not opening on some clients

I've been developing a simple chat application using the XMPP Service and the Channel service. I've been able to get it functioning correctly at home. However, when another user tries to access the ...
1
vote
1answer
537 views

GAE/J Channel API exception even though messages go through?

I open a channel during the app initialization through a series of ajax calls: getToken = function () { xhr = new XMLHttpRequest(); xhr.open("GET", "/game?action=getChannelToken", true); ...
1
vote
1answer
133 views

Using GAE Channel's from a TaskQueue

I have been trying for some days to use the channel.send_message API in GAE (via Python) to send a message to a client when a TaskQueue process has finished. It just WON'T work. I can use ...
1
vote
1answer
187 views

Channel API socket doesn't open on first load in Firefox

I have a 2 player cardgame app that I built using App Engine and the channel API. For the most part it works great, but I'm having a weird problem in Firefox. When I enter a game in Firefox, I call ...
1
vote
1answer
170 views

trying to understand Youtube Leanback implementation

in youtube leanback new application I can control the full-screen browser on my computer, using my android phone. I'm trying to understand - how does it work? For example, when I press "play" the ...
1
vote
1answer
449 views

Google App Engine Channel API and Chrome Extensions

Over Christmas I implemented some code to open a channel to my App Engine application using the channel API and it was working fine. I recently returned to the code and find that it is broken, and ...
1
vote
1answer
386 views

Google Feed API V2 aka push vs Channel API vs WebSocket

Does anybody knows when will feed v2 leave trusted tester stage? There are some usecases of feed v2 that overlap with Google Channel API, so I don't quite get point of releasing feed v2, instead of ...
0
votes
0answers
34 views

AppEngine Channel API - NoSuchMethodError while parsing presence

When I try to switch on user tracking as described in: http://code.google.com/appengine/docs/java/channel/overview.html#Tracking_Client_Connections_and_Disconnections // In the handler for ...
0
votes
1answer
24 views

Message failure in channel api

I am running a gae web app on localhost. I have successfully generated a token from goog.channel and send it to client. Where client is able to accept the token and tries to open connection. The ...
0
votes
1answer
74 views

GAE channel API reconnect

I'm working on a chat application on top of GAE and its Channel API. I have studied the doc and the provided examples, also looked through some of the answers around here, still I don't feel like I ...

1 2