[google-appengine] Re: alternatives to channel api?

2014-03-15 Thread Ray
Try PubNub, awesome product with great support. On Friday, March 14, 2014 1:14:03 AM UTC+8, aloo wrote: > > Has anyone found any good realtime browser push notification service that > works well with appengine? What are have your experiences been like? > > We have ~25k simultaneously connected u

[google-appengine] contact form using php and jquery

2014-03-15 Thread naoqueromaissaber
I don't know what to do to have a contact form in one page of my app. Everything is working perfectly, except the contact form. Can anyone please explain me how should I do it? I posted a question on Stack Overflow, but no answer... Here is the link with my code (this works amazinly when used i

[google-appengine] Re: getObjectByID ended abruptly...no exception; nothing

2014-03-15 Thread hartmann
Maybe there is a RuntimeException. Is your mgr null? Try to catch all types of Exceptions (or even Throwable) and look if the debugger stops in your catch block. Am Montag, 10. März 2014 20:40:32 UTC+1 schrieb j...@jwucreative.com: > > > I have a method (see screenshot) which invokes getObjectB

[google-appengine] Can Application Settings guarantee that I have exactly(!) N instances running all the time (i.e. no loading requests after the initial start)?

2014-03-15 Thread Aron Gombas
Hi all, So, I have an important, but low traffic internal app. Typically 0-2 concurrent users, the "peak" would be max 5 users. Considering the warmup requests and some cron jobs, 1 or max. 2 instances should be sufficient to easily serve these. What I'm trying to achieve is that using Applica

[google-appengine] hetting error as below after running "localhost:8080" on server where as noting appears on browser(idealy it should be "helloWorld")

2014-03-15 Thread saket pandey
File "/usr/lib/python2.7/urllib2.py", line 378, in _call_chain result = func(*args) File "/usr/lib/python2.7/urllib2.py", line 1215, in https_open return self.do_open(httplib.HTTPSConnection, req) File "/home/saket/webrtc/app_engine/google_appengine/lib/fancy_urllib/fancy_urllib/__ini

[google-appengine] Is Google App Engine supported in Iran?

2014-03-15 Thread Christer Nordvik
Can we host a backend API on GAE from an Android app and expect that the Iranian users will have access to the API? These links seems to indicate it doesn't work: http://forums.udacity.com/questions/6003451/google-app-engine-for-iranian-users https://code.google.com/p/khanacademy/issues/detail?

[google-appengine] Trying to use sax parser on local xml file, deployed version throws file permission exception

2014-03-15 Thread mfm23
Hey all, I'm relatively new with GAE but I'm having some problems with running a parser on a local xml file. I loaded the xml file in a the WEB-INF file and even changed the app-engine-web.xml file to make all xml files resource files. It works fine in development mode but on my deployed versi

[google-appengine] Re: Google Cloud Endpoints: How to parse array-style GET query string?

2014-03-15 Thread Christopher McBride
This was the 2nd google search result for "google cloud endpoints querystring" so I figured I'd throw the answer in, even if the question is old http://stackoverflow.com/questions/19804951/google-cloud-endpoints-making-calls-with-js-client-passing-params-and-json-bo/19809245#19809245 and

[google-appengine] Re: getObjectByID ended abruptly...no exception; nothing

2014-03-15 Thread hartmann
Maybe there is a RuntimeExcepiton (e.g. the simplest would be an NPE cause your mgr is null). You could change to catch all java.lang.Exceptions or even Throwable and look if you can debug into the catch block. Best regards, Stephan Am Montag, 10. März 2014 20:40:32 UTC+1 schrieb j...@jwucreat

[google-appengine] app.yaml error

2014-03-15 Thread Naved Mohammad
I have created one html site. Then i added the app.yaml file in which i mentioned my url to index.html.. Then i tried to run on app engine launcher and it worked but when i tried to open the other html pages from the site it doesn't come up, though the page name shows up in URL but it shows onl

[google-appengine] Can't load Google Cloud Endpoints on Internet Explorer 10

2014-03-15 Thread Greg Ritter
I'm working on a web site that is using the Google JavaScript Client Library to load some APIs that are exposed via Google Cloud Endpoints. Everything's working great in Chrome, Firefox and Safari, but on Internet Explorer 10 I get this error: SCRIPT5007: Unable to get property 'value' of u

[google-appengine] Is GAE memcache API thrad-safe?

2014-03-15 Thread Chen Ym
Shoud I use a lock to protect the memcached object? -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-appengine+unsubscr...@googlegroups.com. To post t

[google-appengine] Dev server using image.ServingURL and BlobKey from Google Storage issue

2014-03-15 Thread Will Prater
Im running a local dev server and using image.ServingURL to create a url from a BlobKey that is stored in Google Storage. Should this url return an image on a dev server? Im getting an error like such: "Could not find blob with key encoded_gs_file:" I've confirmed the images are on Googl

[google-appengine] Having problem deploying to Google App Engine from eclipse

2014-03-15 Thread Suhail Gupta
As I try to deploy my app to GAE, I get this message : *java.lang.RuntimeException: Cannot get the System Java Compiler. Please use a JDK, not a JRE.* This happens in spite the fact that I have set JDK as shown :

[google-appengine] Can Application Settings anyhow guarantee me exactly 2 instances?

2014-03-15 Thread Aron Gombas
Hi! I have an important, low-traffic, internal app. There are typically 0-2 concurrent users, the "peak" would be maybe 5-6. Plus, there are some cron jobs and warmup requests that are also needs to be served, but I believe 1 or 2 resident instances should be able to handle all traffic easily.

[google-appengine] Re: Spring Hibernate Configuration for Google Cloud SQL (to deploy in GAE)

2014-03-15 Thread Kevin G
Does this help? Within AppicationContext -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-appengine+unsubscr...@googlegroups.com.

[google-appengine] App Engine and Google Merchant

2014-03-15 Thread Kevin G
Having added a Google Merchant Data Feed that links to my GAE application seems to be spiking my instance hours. Does anyone know if this is will occur continuosly with Google Merchant constantly monitoring my links for valid content? Thanks, Kevin -- You received this message because you a

[google-appengine] Mobile Chess Game

2014-03-15 Thread José Santos
Hello I'm new in this stuff and I have a question for my future project ! Is It possible to use the Google Backend to implement the conditions/logics of a Chess game (in Java) and then on an Android/IOS play the game with the info stored in the Backend ? That might sound confusing, -- You

Re: [google-appengine] Can Application Settings guarantee that I have exactly(!) N instances running all the time (i.e. no loading requests after the initial start)?

2014-03-15 Thread Barry Hunter
You should be able to do it via modules https://developers.google.com/appengine/docs/java/modules/ Can choose the 'scaling' class to use. Even when just having one 'default' module. (the main drawback of this, is you only get free 8 'hours' quota, rather than 28 if leave it on the original automa

Re: [google-appengine] Can Application Settings anyhow guarantee me exactly 2 instances?

2014-03-15 Thread PK
My understanding is that you might see more than 2 but you will not be charged for more than 2 with these settings. PK http://www.gae123.com On March 15, 2014 at 5:28:11 PM, Aron Gombas (aron.gom...@gmail.com) wrote: Hi! I have an important, low-traffic, internal app. There are typically 0-2

Re: [google-appengine] Is GAE memcache API thrad-safe?

2014-03-15 Thread PK
I have been assuming that it is thread safe and have never seen an issue with the python runtime but I would like to hear the official answer too. Why don’t you put a question on stack overflow? PK http://www.gae123.com On March 15, 2014 at 5:27:55 PM, Chen Ym (chenym.al...@gmail.com) wrote: S

Re: [google-appengine] Can Application Settings anyhow guarantee me exactly 2 instances?

2014-03-15 Thread Barry Hunter
On 16 March 2014 00:59, PK wrote: > My understanding is that you might see more than 2 but you will not be > charged for more than 2 with these settings. > You wont be charged for more than 2 *idle* instances. But if the scheduler, spins up many instances, and they are serving traffic (however