Re: [google-appengine] google app engine application run with ipaddress instead of localhost

2012-05-24 Thread Matthew Jaggard
Java https://developers.google.com/appengine/docs/java/tools/devserver#Command_Line_Arguments or Python https://developers.google.com/appengine/docs/python/tools/devserver#Command_Line_Arguments On 24 May 2012 12:08, anantula josna wrote: > hi all, > anybody plese tell me,i am running google app

Re: [google-appengine] Update: Two App Engine-related 'Office Hours' Hangouts - April. 25th, 9am and 4pm PDT

2012-04-25 Thread Matthew Jaggard
On the 9am event: *Event not found.* On 24 April 2012 07:26, Amy Unruh wrote: > As an update to my earlier message, we expect several App Engine PMs > (Product Managers) to join us as "special guests" for the 4pm PDT hangout. > > https://developers.google.com/events/ahNzfmdvb2dsZS1kZXZlbG9wZXJ

Re: [google-appengine] Re: DEVSERVER ERROR: regular expression code size limit exceeded

2012-04-12 Thread Matthew Jaggard
Wow, that's some crazy regex. Can you confirm that it runs correctly on your local JVM outside of the DevServer. If not, then this isn't a GAE issue - you need to find out why from your JVM provider. Maybe Google use 64bit and you use 32bit? Or different vendors (OpenJDK vs Sun vs whatever)? Mat.

Re: [google-appengine] App down due to Quotas exceeded

2012-04-07 Thread Matthew Jaggard
I'm pretty sure I'm not the only one who's now considering whether going live with an app on GAE is a bad idea. On 7 April 2012 11:36, Kwame wrote: > I'm having the exact same problem now, only for me it's been 2 days, and > still not able to edit my billing settings! Also I'm not able to edit m

Re: [google-appengine] Re: Prerelease SDK 1.5.5 available for download!

2011-10-12 Thread Matthew Jaggard
Tommy - Just to save you some time, I believe that the local server doesn't support 2.7 still. On 12 October 2011 16:08, Tommy Knowlton wrote: > Yes, although after I found the forum post stating that 2.7 was not yet > supported, I went back and worked through the 2.5 tutorial. > > I am excited

Re: [google-appengine] Re: Integration tests with Robot framework and Google App engine - problem with async nature of GAE

2011-10-12 Thread Matthew Jaggard
The question is, how are you getting past the issue in the real application? You might be able to make your tests pass in the same way. For example, do your users not care that their data doesn't appear straight away? If so, your test might not care either? If they do care, maybe you should use th

Re: [google-appengine] How the hell do you get the damn program to set points to start with

2011-10-11 Thread Matthew Jaggard
Hi Orpheus, I'm afraid I think you've posted to the wrong group. This group is about hosting applications on Google's infrastructure by programming in Java, Python or Go - nothing to do with point, mice or maps. Thanks, Mat. On 6 October 2011 09:33, Orpheus Allison wrote: > I can find no hel

Re: [google-appengine] university project

2011-10-11 Thread Matthew Jaggard
*worries about the state of university education* On 8 October 2011 17:53, karim buzdar wrote: > dear all  Google app engine user's!!! > > i am a university student, taking cloud computing course .. AS per > course requirement, i have to programm any medium scale application in > java and hav to

Re: [google-appengine] Re: Too much contention on these datastore entities. please try again.

2011-10-10 Thread Matthew Jaggard
A further option involves using pull task queues. 1. Write a task to the pull queue for each item you wish to remember. 2. Have a queue reader run periodically - reading up to 1000 tasks at a time and writing the relevant information to the datastore. Although this sounds simple, you need