The Channel API creates a persistent connection between your application and Google servers, allowing your application to send messages to JavaScript clients in real time without the use of polling.

learn more… | top users | synonyms

1
vote
0answers
14 views

Google App Engine. Channel API. The provided token is invalid.

I've been trying to make an application for calling browser to browser using WebRTC. I wrote a simple servlet for creating channel: PrefClubChannelServletServlet extends HttpServlet { public ...
0
votes
2answers
25 views

How can I use Channel API in service without setting $rootScope variable

My issue is that I can't figure out how to receive a message from the channel api without referencing the message in $rootScope. Here's a snippet of the service: myapp.factory('myService', ...
0
votes
1answer
24 views

When is it better to use polling instead of the channel api?

I have an application where users can collaborate on photo albums. I currently use polling on the client to check for new content every 30 seconds. There can be any number of people uploading and ...
0
votes
0answers
27 views

Google App Engine Channel API Same Origin Policy

I want to write a little chat application using Google App Engine (GAE) and the Channel API. Therefore, the Java Script Clients should be embedded in some web sites. The Java backend is hosted on GAE. ...
2
votes
0answers
49 views

Can you reopen GAE Channels in the browser without leaking memory?

I can't seem to be able to reopen channels in my browser without a memory leak on production. The dev_appserver version of the channel doesn't leak. channel.js appears to create an iframe which then ...
0
votes
1answer
26 views

Close GAE channel from server side Python

In the client side is possible close the socket with connection.close(), but its possible close it from the server side?
0
votes
1answer
27 views

How many clients are connected to channel

I have a process that is running from a task queue that periodically sends messages through a channel to the client. Is it possible to check if the client is still connected to see if the task queue ...
-4
votes
0answers
59 views

Google Channel API (Java) simple chatting application [closed]

I am new to GAE. I need to implement a real time chatting application in Java. Still I can't understand the documentation in Google developer's site well about the Channel API. Can anybody please give ...
1
vote
1answer
41 views

Use Channel API to receive messages from task in Task Queue

I am trying to figure out the Task Queue and Channel API. I have a process that is expected to run >60 seconds added to the task queue when the user submits a form. This process should then send ...
0
votes
0answers
33 views

GAE Channel API Java - Unit Testing

I would like to be able to run the Channel API in my unit tests. (https://developers.google.com/appengine/docs/java/channel/) Ideally I want to test if a message has been sent, if this is not ...
0
votes
1answer
83 views

In GAE Channel API the onmessage is not called

I am building an app for GAE using python API. It is running here. It is a multi-player game. I use the Channel API to communicate game state between players. But in the app engine the onmessage ...
0
votes
1answer
46 views

What's wrong with my channel api code?

I've been working on getting a website together with GAE and the channel api to display and process real time data from a robot I'm working on. I'm pretty new to web development, and python in ...
1
vote
0answers
61 views

Need help making a live data stream with channel api

I'm new to app engine, and quite frankly web development in general, and I'm sure that what I'm trying to do is very simple, but I just can't figure out the channel api. I'm building a website to ...
0
votes
1answer
50 views

Google App Engine Channel presence handler throwing exceptions

I'm experiencing this with the SDK running locally on my Mac. I am trying to establish presence handling. I've created a simple servlet that does nothing but logging. However, I'm getting the ...
2
votes
2answers
133 views

GAE Channel API - Check if the socket is alive from Javascript

I have an application that uses channel API. The connections should be always alive (24x7) and I have implemented it in such a way that every time a channel gets disconnected, a new channel is created ...
0
votes
3answers
136 views

Google Channel API sending message with token

In documents it says 'client_id' part can actually be the token, however it doesn't work. Anyone know why? https://developers.google.com/appengine/docs/python/channel/functions If the client_id ...
0
votes
1answer
48 views

Channel API and server affinity

As GAE instances are added and removed how does the Channel API work to maintain a connection between a server and a client browser. That is, does a single server maintain the connection and is solely ...
0
votes
2answers
91 views

Cannot parse json sent from a channel

Ok in my python code. I have this foo = "aaa"; //foo and bar are variables that change, just an example here bar = "bbb"; json = {"here": foo, "there": bar} //also tried single quotes ...
0
votes
1answer
84 views

can xmpp on google app engine push message to javascript client

I am creating a website on google app engine and I want to allow users to chat with each other just like gmail.I have read that there are 2 options - xmpp and channel api. Now I want to know,can the ...
0
votes
0answers
119 views

Can't deploy to App Engine. Error appengine-web.xml with channel_presence directive

I'm having trouble deploying my java app to app engine after having added this 3 lines to appengine-web.xml: <inbound-services> <service>channel_presence</service> ...
0
votes
2answers
161 views

Google App Eninge Channel API usable for broadcasting JSON-Data to multiple clients?

I was reading about the Google App Engine Channel API. I want to know, if i can use this API to create message and send it as a broadcast to all clients who want to read it. (They are connected). ...
1
vote
1answer
105 views

How to deal with channel api rate limit?

I need to implement real time notification system like stackoverflow(when someone adds answer/comment to a question) to my website. I came to know that channel API is the easiest way to implement that ...
1
vote
1answer
65 views

App engine channel successfully created but unusable

I have been getting an intermittent problem using the App Engine channel API. For the most, maybe 90% of the time, everything works fine. But the remaining 10% of the time I get a channel that is ...
1
vote
1answer
109 views

python Channel API expiry and usage in google app engine

I want to use the channel api to push updates to open pages, What I have done so far is to store the page client ids in ndb - I have included a code summary My question is: How do I manage closed ...
3
votes
2answers
166 views

Intermittent error code 400, description “” on client connecting to channel

My Google App Engine app, which uses the Channel API works well some of the time. Intermittently, though, the js code connecting to the channel generates an error. In socket.onError, the error code is ...
0
votes
0answers
79 views

Ongoing connection to Appengine Channel API

I would like to come up with a definitive solution on how to keep a ongoing connection to Appengine's Channel API. I understand tokens expire and they must be refreshed, however there seems to be ...
0
votes
1answer
138 views

Appengine Channel Api presence _ah/channel/connected not working

I'm using the channel API in Java runtime. The servlet I have mapped to /_ah/channel/connected does not appear to be running. I am creating a channel, passing the token, and opening it on the ...
2
votes
0answers
90 views

GAE channel api parsing onmessage

I am building an app with gae, and using the channel api. String message ="<data><title>newMessage</title><message>Hello</message></data>"; ...
1
vote
1answer
109 views

How do I send a Channel API token created in a backend on a push queue to the front end in Python?

I am trying to send Channel API messages from a GAE python backend push queue to a client. The answer to this question says that the channel must be created within the back-end process in order to be ...
0
votes
2answers
203 views

Real time notification system on Google App Engine(GAE)

How to implement facebook like real time notification system on Google App Engine(GAE)? Basically my site contains articles on various topics. Users can comment on them. So now I need to notify all ...
2
votes
1answer
60 views

Message format in Channel API (GAE)?

I'm working on a HTML5 collaborative canvas drawing tool on GAE. Essentially people draw, send their coordinates and their motion to GAE through channel API and then other people receive the updates. ...
4
votes
1answer
173 views

Google App Engine Channel API pricing: $0.01 or $0.001 for 100 channels? [closed]

I found two different prices for Google's Channel API. https://developers.google.com/appengine/docs/billing says: Channel opened $0.00001 ($0.001/100 channels) ...
0
votes
4answers
187 views

getting started

I want to create an app like https://apprtc.appspot.com/?r=04188292. I know a little bit about webrtc but cannot get a hold of google app-engine.How to set it up for javascript and start coding??I ...
0
votes
2answers
310 views

Google App Engine Channel API with iOS client?

I'm looking into using the Channel API to push messages to my iOS client. I haven't completely wrapped my head around it, but the only way would be to use a hidden UIWebView that triggers an ...
1
vote
1answer
142 views

How can I get the Python Task Queue and Channel API to send messages and respond to requests during a long-running process?

This is a probably basic question, but I have not been able to find the answer. I have a long-running process that produces data every few minutes that I would like the client to receive as soon as ...
0
votes
1answer
238 views

How to properly wrap GAE Channel API in Angular.js service and push updates out to the entire app?

So I'm trying to use the GAE Channel API with Angular.js to do real-time data-bound updates (which would be really cool, right!?). I'm told the correct way to do this is to wrap the Channel API ...
0
votes
1answer
297 views

How to write a Webapp2 Request Handler to Allow Client to Get Data after receiving Channel API message

As a follow up to another question I asked, I have a basic question about the easiest way to get a webapp2 python server to provide json data that is too large (about 100 kb) to send as a Channel API ...
1
vote
0answers
77 views

In the GAE channel API, how high can duration_minutes be set?

I am implementing a Google App Engine app for which I need to create channels at a high rate. To avoid incurring excessive costs owing to the relatively stingy quota for channels, I am going to use ...
0
votes
2answers
185 views

Sitebricks and Channel Presence Service (GAE); Also having trouble with normal servlets

In my Java Google App Engine server application, I would like to enable Channel Presence servlets in order to track connections/disconnections to/from my channels using the Channel API (as described ...
1
vote
2answers
992 views

HTTP Get with 204 No Content: Is that normal

Is it a normal occurrence for an HTTP GET Request to have a response with status code 204 - No Content? Like, is this semantically correct with respect to what an HTTP GET is supposed to accomplish? I ...
0
votes
1answer
152 views

How do I get GWT to receive the token created by the Python GAE Channel API?

I would like to use the GAE Channel API (Python 2.7) with my GWT app (using GWT-GAE-Channel), and I am having trouble figuring out how to get the token created on the server side Python into my GWT ...
2
votes
1answer
144 views

How to unit test code relying on Channel API (Google App Engine, Java)

I have Java servlets that rely on the Channel API, from Google App Engine. I am trying to write unit tests for that code, but I am quite stumped with how to write a stub client to receive a response ...
1
vote
2answers
199 views

Google Channel API sends a message to all clients

I created a working Google Channel AP and now I would like to send a message to all clients. I have two servlets. The first creates the channel and tells the clients the userid and token. The second ...
2
votes
1answer
137 views

Google App Engine Channel API Javascript Client: Set Poll Timer Manually

I am writing a web client that supports messages sent from a Google App Engine Java server, by using Google's official GAE Channel API Javascript client. I would like to know if it is possible for me ...
0
votes
3answers
213 views

Google Channel API message from JavaScript client to server

After a while I got the first part of the Google Channel API working. Now I have some problems with sending a message from the JavaScript client to the server. Here is the servlet for the Google ...
1
vote
2answers
356 views

Google App Engine Channel API reconnect after token expiration

I'm using Channel API (GAE Java SDK + GWT) and I'm trying to create a workaround for the problem regarding the re-creation of a channel (after the expiration date and also after an error is thrown). I ...
1
vote
3answers
415 views

Use Appengine Channel API with DART

Is it possible to use Google Appengine Channel API with DART language? It would be great if you can point to some examples and pitfalls if any.
0
votes
1answer
236 views

Google App Engine UserServiceget.CurrentUser() returns null in servlet handling channel connect at /_ah/channel/connected/

I use Google Channel api and registered servlet at adreess /_ah/channel/connected/ to handle user channel connects. When connection happens in post message handler I find out that ...
2
votes
1answer
271 views

how google channel api pricing works? [closed]

I read on the official doc that to open a new channel it will cost $0.01. and it will last 2 hours. so if I have 1000 concurrent users who use my site daily for 2 hours. total cost will be ...
0
votes
1answer
81 views

Google App Engine APIs that are irrelevant when using GWT? [closed]

I've been reading up on both GAE and GWT, and it seems that if you are deploying GWT apps to GAE then the following APIs are unnecessary: PageSpeed Channel API Since GWT is already ...

1 2 3