[google-appengine] Java: Hanging on scanning for JSPs

2012-04-09 Thread Robert Fischer
Using 1.6.4 SDK, JRE build 1.6.0_29-b11-402-10M3527. When I run appcfg.sh, I get to "5% Scanning for jsp files", and then it hangs forever. Anyone else have this experience? Any idea what might be causing it? Any way to circumvent it so that I can get my app uploaded? ~~ Robert. -- You received

Re: [google-appengine] Will we be able to buy discounted instance-hours for B1 backends?

2012-07-06 Thread Robert Fischer
Hi, It's been some time since this post and I've been wondering the same thing. Are there any plans to apply purchased discounted hours toward B1 (or other B#) instance hours? Thanks, Robert On Friday, September 16, 2011 2:54:47 PM UTC-7, Greg D'Alesandre wrote: > > We don't plan to provide i

Re: [google-appengine] Should developers pay for the useless instances? Can we set max instances to 1?

2012-07-10 Thread Robert Fischer
I can see how this feature would be useful -- especially for testing. I have an app I haven't released yet that once a minute sucks in new data and spawns many (maybe up to 200/minute max) requests using the task queue to process that data. When using frontends I was often spinning up 2-3+ instanc

[google-appengine] Creating a new instance of an entity using ndb has previously interacted with entity's data stored

2012-07-28 Thread Robert Fischer
Hi, I'm creating a new instance of a model and it's getting the data from the previous model I created. Any idea what could be happening here? class Keyword(ndb.Model): user_owner = ndb.UserProperty() description = ndb.StringProperty(indexed=False) time_created = ndb.DateTimeProperty

Re: [google-appengine] Re: Creating a new instance of an entity using ndb has previously interacted with entity's data stored

2012-07-28 Thread Robert Fischer
y of initializing the value. > Maybe you cna just use a repeated string property? > > > On Saturday, July 28, 2012 11:56:46 AM UTC-7, Robert Fischer wrote: >> >> Hi, >> >> I'm creating a new instance of a model and it's getting the data from the >&

Re: [google-appengine] Dynamic Backend Instance Scaling

2012-08-06 Thread Robert Fischer
I also thought that backends were single threaded, it was hard to find documentation saying one way or the other but after analysis of my logs I indeed confirmed I was running a number of concurrent requests on my B1 python27 runtime backend. -Robert On Mon, Aug 6, 2012 at 9:18 PM, Amy Unruh wro

Re: [google-appengine] how can I do a GAE project without .appspot.com

2012-08-08 Thread Robert Fischer
Is it acceptable to have it hosted on both addresses? If not you could always check the url attribute on the request and redirect requests to the non appspot.com name. I run www.dealscorcher.com (dealscorcher.appspot.com) and www.uripis.com ( uripaddress.appspot.com) which are set up using the ins

Re: [google-appengine] Why the number of instance is always?

2012-08-08 Thread Robert Fischer
By default I believe instances are on-demand. If there is no traffic to your app it won't spin up any instances. -Robert Sent from my Android device On Aug 8, 2012 7:00 PM, "韩俊毅" wrote: > I've deployed an application on the app engine although the application > works well, the number of instan

Re: [google-appengine] Hosting static files on GAE and using own domain.

2012-08-15 Thread Robert Fischer
You could check the url on the request and serve a redirect to the custom domain though if you didn't want appid.appspot.com to be shown. -Robert On Wed, Aug 15, 2012 at 12:48 PM, Joshua Woodward wrote: > there will always be* your-app-id*.appspot.com though > > > On Wed, Aug 15, 2012 at 12:45 P

Re: [google-appengine] python27 helloworld application doesn't work when application id is changed

2012-08-18 Thread Robert Fischer
Changing the appid in the app.yaml should work fine to upload the app. You can also use appcfg.py --application=... to override the "application:" line specified in the app.yaml. More info here: https://developers.google.com/appengine/docs/python/tools/uploadinganapp -Robert On Sat, Aug 18, 2012

Re: [google-appengine] Re: Hosting static files on GAE and using own domain.

2012-08-19 Thread Robert Fischer
HomepageHander(webapp2.RequestHandler): def get(self): if (self.request.url.lower() is not 'http://www.dealscorcher.com' or self.request.url.lower() is not 'http://localhost:'): self.redirect('http://www.dealscorcher.com')

Re: [google-appengine] Re: Hosting static files on GAE and using own domain.

2012-08-19 Thread Robert Fischer
orcher.com') is -1 and self.request.url.lower().find('localhost') is -1): self.redirect('http://www.dealscorcher.com') return -Robert Fischer www.DealScorcher.com On Sun, Aug 19, 2012 at 8:14 PM, Robert Fischer wrote: > Hi Omne

Re: [google-appengine] Problem with Deploy to App Enigne, worked in localhost, internal server Error when deploy

2012-08-21 Thread Robert Fischer
What is the error recorded in the logs? https://appengine.google.com/logs?&app_id=*APPID* -Robert Fischer www.DealScorcher.com On Tue, Aug 21, 2012 at 7:35 PM, forNightmare TF wrote: > Hi, everyOne : > i wrote A web app on GAE, inside of code, may visit otherAddress function, > S

Re: [google-appengine] App Engine Development on a Budget (With a $35 Raspberry Pi computer)

2012-08-25 Thread Robert Fischer
chmark the raspberry pi dev_appserver vs the production stack. -Robert Fischer www.DealScorcher.com On Sat, Aug 25, 2012 at 10:05 PM, Bryce Cutt wrote: > Some of you are probably aware of the Raspberry Pi single board > computer<http://www.raspberrypi.org/faqs> that > runs Li

Re: [google-appengine] Python 2.7 and SQLite on Windows 7: unable to open database file

2012-08-28 Thread Robert Fischer
I know this probably isn't what you're looking to hear but I had the same problem and was able to "solve" it by running the dev server as administrator. Another benefit to this is being able to run on :80. I'd love to hear about a better solution though... -Robert Fis

Re: [google-appengine] Python 2.7 and SQLite on Windows 7: unable to open database file

2012-08-28 Thread Robert Fischer
What I mean to say is I gave up on a proper "fix" so that I could work, but would love find out why it's not working when it's running as the same user who owns and also has permission to the database. -Robert Fischer www.DealScorcher.com On Tue, Aug 28, 2012 at 10:54 PM, R

Re: [google-appengine] How to run 2 versions (go & java) of the same app at the same time in dev?

2012-11-04 Thread Robert Fischer
Could you create additional loopback adapters and bind to the different interfaces with two instances of the dev app server and specify which local loopback adapter (via IP address) to make the calls to to talk to the other version? This sounds like it might be more trouble than just using differen

Re: [google-appengine] Getting started

2012-11-10 Thread Robert Fischer
Hi Kevin, The sample apps are a pretty good starting place. Python: https://developers.google.com/appengine/docs/python/gettingstartedpython27/helloworld Java: http://googcloudlabs.appspot.com/ -Robert Fischer www.DealScorcher.com On Fri, Nov 9, 2012 at 12:19 AM, Kevin wrote: > I,m new

Re: [google-appengine] AppEngine Java multi-modules sample error on gcloud preview app run

2015-02-11 Thread Robert Fischer
Hi Avanish, Have you tried specifying a port (host) explicitly [something like --host localhost:]? I see that it should run on :8080 by default though: https://cloud.google.com/sdk/gcloud-app If that fails, does it work running as administrator? Best, Robert On Wed, Feb 11, 2015 at 2:07 PM,

Re: [google-appengine] cannot deploy my code..?

2015-03-02 Thread Robert Fischer
Do you need to update the app_id in your app.yaml? It doesn't look like the application hello-udacity exists per the error, "This application does not exist (app_id=u'hello-udacity')." Are you sure this is the correct app_id? Do you see it in your applications at https://appengine.google.com? Bes