[appengine-java] JSP page as Warmup Servlet

2011-05-16 Thread Anders
Is it possible to use a JSP page as a warmup Servlet in Google App Engine for Java? Example: servlet servlet-namesearch/servlet-name jsp-file/search.jsp/jsp-file load-on-startup1/load-on-startup /servlet Sice JSP pages are compiled into Servlets this should work

[appengine-java] Re: Backends.xml ERROR when deploying

2011-05-16 Thread JakeP
I can't provide the exact one because that has my local paths in it. cd to your appcfg.sh directory and run appcfg.py ~/myapp/war backends update backendname once the command is finished, the backed will appear in your admin page. -Jake -- You received this message because you are

[appengine-java] ગૂગલ માં નવા દાતા કઈ રીતે ઉપ્લોઅદ કરવાંત્રીઅલ

2011-05-16 Thread vimal
હેલ્લો ઈ મારો ત્રીઅલ પોસ્ટ છે. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to google-appengine-java@googlegroups.com. To unsubscribe from this group, send email to

[appengine-java] Re: Adding the Ability to Set a Beta or Other Version of an Application To A Domain

2011-05-16 Thread Heiko Roth
+1 for that feature right now, I call my beta version just beta (beta.latest.appspot.com). And I always deploy two times in a row (beta and xxx for current version). Now our testers test with beta.latest.appspot.com (the url is used in mobile apps, Java programs and so on). I would prefer

[appengine-java] Re: Facebook Login integration with java appengine

2011-05-16 Thread Heiko Roth
We use Janrain, too. There, you can add a lot of other Logins once you have included Janrain login. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to google-appengine-java@googlegroups.com. To

[appengine-java] .svn folders deleted under webapp on application launch

2011-05-16 Thread Mauricio Aristizabal
Hello all, I'm having a really weird issue in Eclipse (actually SpringSource Tool Suite 2.6.0), and I can't tell for sure that it's something with the Google Eclipse Plugin but that is the main suspect. Whenever I launch the app locally all the .svn folders get deleted under my /webapp

[appengine-java] any way to find all the namespaces used ?

2011-05-16 Thread Prashant
hi, is there any way to find out what namespaces i have used in my app ?? thanks Prashant -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to google-appengine-java@googlegroups.com. To unsubscribe

[appengine-java] Re: Backends.xml ERROR when deploying

2011-05-16 Thread Dennis Lo
Hi Jake, Thanks for you example on how to use the appcfg with backends. I think the documentation really needs to include some solid examples on how to use appcfg. I found this to be lacking in alot of parts through the Google App Engine documentation. Now, for the apppcfg parameters: -

[appengine-java] Re: Backends.xml ERROR when deploying

2011-05-16 Thread Dennis Lo
Hi Jake, Thanks for you example on how to use the appcfg with backends. I think the documentation really needs to include some solid examples on how to use appcfg. I found this to be lacking in alot of parts through the Google App Engine documentation. Now, for the apppcfg parameters: -

[appengine-java] Re: any way to find all the namespaces used ?

2011-05-16 Thread Didier Durand
Hi, to my knowledge, app engine doesn't store used namespaces, it just uses the corresponding string as prefix to separate data structure. If you want to remember all used namespaces, it's something that you have to handle by yourself: you create your system namespace then define an entity for

[appengine-java] Re: Backends.xml ERROR when deploying

2011-05-16 Thread Dennis Lo
Hi Jake, So I finally got the backends to apper in the Admin UI. Here is my backends.xml backends backend name=sortgame classB2/class instances5/instances options dynamictrue/dynamic /options /backend /backends But I don't know how to call

[appengine-java] Re: Backends.xml ERROR when deploying

2011-05-16 Thread Dennis Lo
Hi Jake, So I finally got the backends to apper in the Admin UI. Here is my backends.xml backends backend name=spider classB2/class instances5/instances options dynamictrue/dynamic /options /backend /backends But I don't know how to call

[appengine-java] Map Reduce

2011-05-16 Thread Stephen Johnson
I have two questions on the Java version of mapreduce since the docs seem pretty sparse. 1.) Is it possible to use mapreduce over a namespace and if so, how do you configure it? 2.) Is only inputing entity keys and not the entire values supported on the Java version and if so, how do I configure

[appengine-java] Silence System.out and System.err in the logs?

2011-05-16 Thread Brian Henk
Hi all, All my logging is done through a java.util.Logger, but some not so nice libraries I'm using are writing to System.out and System.err. Is there a way to keep those out of the log (preferably using something in logging.properties)? Thanks -- You received this message because you are

Re: [appengine-java] Re: open source pdf engine for GAE

2011-05-16 Thread Erick Fleming
You can use ByteArrayOutputStream [1http://download.oracle.com/javase/6/docs/api/java/io/ByteArrayOutputStream.html], then attach that to your mail message. If you are using low-level api, then Attrachment

Re: [appengine-java] Re: Problem with Channel API

2011-05-16 Thread Erick Fleming
I had this same error yesterday, but I put a try block around the code that sends the message and it went away. On Sun, May 15, 2011 at 3:10 AM, Matthew Smalley matthew.smal...@gmail.comwrote: Oops forgot the stack trace: (this is from the google appengine log viewer): Uncaught exception

[appengine-java] Re: how to transfer request to a different servlet ?

2011-05-16 Thread Erick Fleming
One way is RequestDispatcher#forward [1http://download.oracle.com/javaee/5/api/javax/servlet/RequestDispatcher.html ] [1] http://download.oracle.com/javaee/5/api/javax/servlet/RequestDispatcher.html -- You received this message because you are subscribed to the Google Groups Google App

Re: [appengine-java] how to transfer request to a different servlet ?

2011-05-16 Thread Erick Fleming
One way is the RequestDispatcher#forward [1http://download.oracle.com/javaee/5/api/javax/servlet/RequestDispatcher.html] method [1] http://download.oracle.com/javaee/5/api/javax/servlet/RequestDispatcher.html On Sun, May 15, 2011 at 7:00 AM, Prashant antsh...@gmail.com wrote: hi, i want to

Re: Vs: Re: [appengine-java] Should JDO use be synchronized in threadsafe=true application?

2011-05-16 Thread Aaron Shepherd
I'm using this modified PMF class now and it seems to fix this problem, with the caveat that I haven't done any heavy load testing yet. public final class PMF { private static final PersistenceManagerFactory pmfInstance = JDOHelper.getPersistenceManagerFactory(transactions-

[appengine-java] Re: Getting class cast exception in BackendServersFilter after 1.5 sdk update

2011-05-16 Thread svoeller
I'm experiencing the same issue - stack trace is identical. Also using struts 2.0 and also noticed this after attempting to upgrade to 1.5. On May 13, 11:32 am, Nischal nischalshett...@gmail.com wrote: GAE team, need your help here. -- You received this message because you are subscribed to

[appengine-java] SpringMVC RESTful + JSP + GAE/J .. 404 not found on JSPs..

2011-05-16 Thread jlc488
I've implemented a site using SpringMVC RESTful approaches. I did not need any view such as JSP or Velocity and stuff at that time. For some reason, I needed views using JSPs. Somehow It is showing 404 not found on JSPs or any views include HTMLs on Google AppEngine. My requirements are 1) It

[appengine-java] Sending channel message from task queue

2011-05-16 Thread Erick Fleming
I'm have problems sending a message via Channel API from a TaskQueue Handler. Is it possible or have i missed some restriction in the docs? -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to

[appengine-java] Re: Sending channel message from task queue

2011-05-16 Thread Erick Fleming
I figured out my problem, so yes it's possible. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to google-appengine-java@googlegroups.com. To unsubscribe from this group, send email to

Re: [appengine-java] Re: Getting class cast exception in BackendServersFilter after 1.5 sdk update

2011-05-16 Thread Nischal Shetty
@Sean Let's hope someone from the GAE team helps us. They've been super busy the entire last week. Hoping someone helps us out soon. If you come across a possible solution please do update this thread, I'll do the same. On 16 May 2011 00:11, svoeller sean.voel...@gmail.com wrote: I'm

[appengine-java] Re: Backends.xml ERROR when deploying

2011-05-16 Thread JakeP
Dennis, I'm still trying to figure out the best way to call the backend programmatically from within GAE. The simplest way I know of is with urlfetch. Your backend has to be marked public for you to be able to access it via 'spider' from outside of GAE - i.e. your browser. Thanks for the link.

Re: [appengine-java] Re: any way to find all the namespaces used ?

2011-05-16 Thread Prashant
thanks :) On Mon, May 16, 2011 at 5:14 PM, Didier Durand durand.did...@gmail.comwrote: Hi, to my knowledge, app engine doesn't store used namespaces, it just uses the corresponding string as prefix to separate data structure. If you want to remember all used namespaces, it's something

Re: [appengine-java] Re: Backends.xml ERROR when deploying

2011-05-16 Thread Don Schwarz
On Mon, May 16, 2011 at 12:49 PM, JakeP jake.pier...@gmail.com wrote: Dennis, I'm still trying to figure out the best way to call the backend programmatically from within GAE. The simplest way I know of is with urlfetch. Yes, urlfetch requests from an app to one of its backends have been

[appengine-java] Re: App engine SDK jars in WEB-INF/lib. Why???

2011-05-16 Thread Philippe Marschall
On May 12, 11:56 pm, Toby Reyelts to...@google.com wrote: arjan, There are two sides to the App Engine API: the client and the server. The client side (appengine-api.jar) lives entirely in user-land. If you so chose, you could create your own version of these classes. ... But that's the

Re: [appengine-java] Re: Problem with Channel API

2011-05-16 Thread Matthew Smalley
Just tried it and of course the post now returns a 200 instead of 500 response code, but still no message is sent. When I check the logs in the dashboard, I get a neatly reported stacktrace. Just to make sure I understood you correctly, here's how I changed my sendMessage() method:

Re: [appengine-java] Re: App engine SDK jars in WEB-INF/lib. Why???

2011-05-16 Thread Paul Hammant
I don't see how you can evolve and API is affected by which classloader provides it. A config item in application admin panel could indicate which 'container version' the app should run in. That or something in the manifest file inside the WAR file. It is ultimately an arbitrary decision,

[appengine-java] basic jsp would not run

2011-05-16 Thread grigory
I am deploying simple jsp to upload files to blobstore - identical to one from the blobstore services introduction by Google: http://code.google.com/appengine/docs/java/blobstore/overview.html Apparently something is wrong with my web.xml configuration as it fails: javax.servlet.ServletContext

[appengine-java] Re: basic jsp would not run

2011-05-16 Thread grigory
I have to mention that it runs fine locally in my dev. environment (Eclipse with Google plugin). On May 16, 3:38 pm, grigory grigor...@gmail.com wrote: I am deploying simple jsp to upload files to blobstore - identical to one from the blobstore services introduction by

Re: [appengine-java] Re: Getting class cast exception in BackendServersFilter after 1.5 sdk update

2011-05-16 Thread Don Schwarz
This is very strange. Can one of you send me your war directory? On Mon, May 16, 2011 at 12:14 PM, Nischal Shetty nischalshett...@gmail.comwrote: @Sean Let's hope someone from the GAE team helps us. They've been super busy the entire last week. Hoping someone helps us out soon. If you come

Re: [appengine-java] Unable to upload a New version of a Document in Google Documents - using java api

2011-05-16 Thread Ikai Lan (Google)
In general, you should post a stack trace. That being said, this isn't the best forum to ask this message. Try asking here: http://code.google.com/apis/documents/forum.html Ikai Lan Developer Programs Engineer, Google App Engine Blog: http://googleappengine.blogspot.com Twitter:

Re: [appengine-java] Enhancement Request - AppEngine Deploy Rollback

2011-05-16 Thread Ikai Lan (Google)
You'll want to star this issue: http://code.google.com/p/googleappengine/issues/detail?id=1783q=eclipse%20rollbackcolspec=ID%20Type%20Component%20Status%20Stars%20Summary%20Language%20Priority%20Owner%20Log

[appengine-java] Can we use the bulkuploader on the local environment?

2011-05-16 Thread ruskyn
Hi All, Ive been through this article and it helps understand the concepts. http://ikaisays.com/2010/06/10/using-the-bulkloader-with-java-app-engine/ However, i do see that this is mostly for production environment. This is not exactly helpful for me when i am working on my local setup. I might

Re: [appengine-java] Re: HTTP request and response sizes have been increased to 32 MB.... NOT

2011-05-16 Thread Ikai Lan (Google)
This currently applies to outbound and inbound HTTP, not URLFetch. We're working on increasing URLFetch limits but it isn't ready yet. Ikai Lan Developer Programs Engineer, Google App Engine Blog: http://googleappengine.blogspot.com Twitter: http://twitter.com/app_engine Reddit:

Re: [appengine-java] JSP page as Warmup Servlet

2011-05-16 Thread Ikai Lan (Google)
Yes. Warmup servlets are just URL for you to hit: http://code.google.com/appengine/docs/java/config/appconfig.html#Warmup_Requests http://code.google.com/appengine/docs/java/config/appconfig.html#Warmup_RequestsThat being said, why would you want to use a JSP as a warmup servlet? The code will

Re: [appengine-java] JSP page as Warmup Servlet

2011-05-16 Thread Don Schwarz
To be clear, load-on-startup just means the servlet will be *initialized* during the warmup request (not executed). For JSPs, this means that the jspInit() method is called. If you override it to do something expensive this may provide a big benefit, but otherwise you will just get the benefit

Re: [appengine-java] Re: Backends.xml ERROR when deploying

2011-05-16 Thread Dennis Lo
Hi, I see. So a public backend would be: backends backend name=spider classB2/class instances5/instances options dynamictrue/dynamic publictrue/public /options /backend /backends Also, what is urlfetch? I haven't used these

[appengine-java] Re: unable to send a pdf as attachment in mail

2011-05-16 Thread Vik
hie anyone on this please? Thankx and Regards Vik Founder http://www.sakshum.org http://blog.sakshum.org On Mon, May 16, 2011 at 9:45 AM, Vik vik@gmail.com wrote: Hie Trying to send a pdf created using pdfJet throws the exception class javax.mail.SendFailedException:Send failure

Re: [appengine-java] Re: open source pdf engine for GAE

2011-05-16 Thread Vik
Hie Trying to send a pdf created using pdfJet throws the exception class javax.mail.SendFailedException:Send failure (javax.mail.MessagingException: Converting attachment data failed) The code is like: MimeBodyPart htmlPart = new MimeBodyPart();

Re: [appengine-java] Re: Backends.xml ERROR when deploying

2011-05-16 Thread Nischal Shetty
Here's how you GET using URLFetch : URLFetchService fetchService = URLFetchServiceFactory.getURLFetchService(); URL fetchURL = null; HTTPResponse response = null; String responseString = null; try { fetchURL = new URL(http://www.google.com;); response =

Re: [appengine-java] Re: Getting class cast exception in BackendServersFilter after 1.5 sdk update

2011-05-16 Thread Nischal
Sent the war to you. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to google-appengine-java@googlegroups.com. To unsubscribe from this group, send email to

Re: [appengine-java] JSP page as Warmup Servlet

2011-05-16 Thread Anders Lindman
Good. I thought it would be convenient to use an already existing JSP page as a warmup call. Plus, that makes it possible to ensure that the warmup call actually accesses the real logic of the application. And if/when the application changes, the warmup call will automatically reflect those

Re: [appengine-java] JSP page as Warmup Servlet

2011-05-16 Thread Anders Lindman
But if /_ah/warmup is mapped, then the documentation says that the service() method of the mapped servlet will be called: http://code.google.com/appengine/docs/java/config/appconfig.html#Using_a_Custom_Servlet Does the service() method in the compiled JSP servlet make a call to _jspService()?

[appengine-java] Re: UserService.getCurrentUser() returning null sometimes

2011-05-16 Thread Aswath Satrasala
Any ideas, on this. Why does UserService.getCurrentUser() return null sometimes. How long is user logged in status valid? In my application setting, the cookie expiration is set to 1 day. -Aswath www.AccountingGuru.in http://www.accountingguru.in/. On Sat, May 14, 2011 at 11:14 AM, Aswath

Re: [appengine-java] JSP page as Warmup Servlet

2011-05-16 Thread Anders
Oh, only jspInit(), not jspService() that renders the actual page. Hmm... Then it's perhaps better to have a separate warmup servlet instead. Overriding the jspInit() method sounds like messy coding. Alternatively to have load-on-startup1/load-on-startup for both JSP pages and a separate

Vs: Re: Vs: Re: [appengine-java] Should JDO use be synchronized in threadsafe=true application?

2011-05-16 Thread Juha K
Based on your experience it seems to be that the problem is in the access to PersistenceManagerFactory.getPersistenceManager()? If your PMF-class fixes the problem, then it seems that call to getPersistenceManager() should be synchronized in multithreaded apps. Can anyone confirm this? I found

[appengine-java] Simple Google App Engine Datastore operation taking too long: causing DeadlineExceededException/DatastoreTimeoutException

2011-05-16 Thread Ashley Schroder
I have a fairly simple App Engine Java app that has Accounts, Orders and OrderItems - nothing crazy. Just in the last 12 hours I have started getting exceptions thrown out of some fairly straight forward code that adds orders to accounts and then saves them. I created a trivial testing

Re: Vs: Re: Vs: Re: [appengine-java] Should JDO use be synchronized in threadsafe=true application?

2011-05-16 Thread Stephen Johnson
Thinking out loud...What's strange about that issue (not this current one but the one from the past) and the supposed solution is that until just recently with the introduction of the threadsafe property supposedly only one request could executing at a time and you can't create your own additional

Vs: Re: Vs: Re: Vs: Re: [appengine-java] Should JDO use be synchronized in threadsafe=true application?

2011-05-16 Thread Juha K
The datanucleus issue has a comment Then, when my tasks run in parallel, initialisation has already been done and the problem doesn't appear any more., so before the threadsafe property, only tasks were run in parallel. Probably that's why I didn't see this error before, I didn't have tasks

Re: [appengine-java] Simple Google App Engine Datastore operation taking too long: causing DeadlineExceededException/DatastoreTimeoutException

2011-05-16 Thread Stephen Johnson
Hi Ashley, This isn't the way I would go about structuring this if I'm understanding the way you've set up your classes. There are a few issues right away that I see. For one, if you have a couple thousand Order children under the Account parent and you call getOrders() in your addOrder() method

[appengine-java] Re: JSP page as Warmup Servlet

2011-05-16 Thread Anders
The documentation doesn't mention it (as far as I could see), but I take it that warmup servlets can be given admin auth-constraint. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to

Re: Vs: Re: Vs: Re: Vs: Re: [appengine-java] Should JDO use be synchronized in threadsafe=true application?

2011-05-16 Thread Stephen Johnson
Ah, I missed the point about it being tasks and didn't realize the threadsafe only applied to user requests and not tasks. If indeed that was the case. On Mon, May 16, 2011 at 10:44 PM, Juha K juha.kosk...@gmail.com wrote: The datanucleus issue has a comment Then, when my tasks run in

[google-appengine] Re: How to force immediate log writes in Java?

2011-05-16 Thread radomir
You can use LogDigger to capture application errors http://logdigger.com/logdigger-connector/java-logging-app-engine On May 15, 8:28 am, Mike Prince m...@mikeprince.com wrote: I have a servlet that works fine in development but crashes the server in production and I'm trying to figure out why.

[google-appengine] older version data showing in default version

2011-05-16 Thread Sandeep Koduri
Hello, We are facing some abnormal behavior at appengine, We have one default version, which is showing data from different version at each refresh. We made lot of work considering it as a bug in our code but could not find any flaw. I am not able to explain wt the error is to either the client

RE: [google-appengine] older version data showing in default version

2011-05-16 Thread Brandon Wirtz
All versions share a data store, if you versioned your data store you need to assign a new kind. From: google-appengine@googlegroups.com [mailto:google-appengine@googlegroups.com] On Behalf Of Sandeep Koduri Sent: Sunday, May 15, 2011 11:08 PM To: google-appengine@googlegroups.com Subject:

Re: [google-appengine] older version data showing in default version

2011-05-16 Thread Sandeep Koduri
sorry, by data i mean to say files in app like css and templates. on every refresh the the css or templates or static files of other version is showing up. this is the concern the data from the store is stable.. On Mon, May 16, 2011 at 12:36 PM, Brandon Wirtz drak...@digerat.com wrote: All

RE: [google-appengine] older version data showing in default version

2011-05-16 Thread Brandon Wirtz
Are they Static? Did you set the App.yaml to have too long an expire? Are you on HR or MS? If you put ?1234 at the end of the file do you get the wrong one? The Mark up of your page should have the version number of the file in the CSS.. Either as CacheBuster my.css?v1234 or as

[google-appengine] Re: What do you want to see answered in Greg's pricing FAQ?

2011-05-16 Thread Sylvain
Hi, With the actual prices, a very small paid app that only need 1GB above the free quota costs : $0.15 / month. With the new prices : $9 (monthly fee) + $0.15 = $9.15. Old price $2 / year - new price $110/year (+ $108) So it increases the price by x55. For these app, the increase is very

[google-appengine] Re: TypeError in urlfetch_stub.py for SDK 1.4.3?

2011-05-16 Thread IgorNovak
Hi. Recently I've faced with the same problem. It appeared in v1.4.3 firstly but since it didn't bother me a lot I did nothing hoping it would be fixed in v1.5.0. However it still isn't. The error appears in this place: urlfetch_stub.py (Version 1.5.0) 293 if payload is not None: 294

[google-appengine] any way to find all the namespaces used ?

2011-05-16 Thread Prashant
hi, is there any way to find out what namespaces i have used in my app ?? thanks Prashant -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to google-appengine@googlegroups.com. To unsubscribe from this

[google-appengine] Re: What do you want to see answered in Greg's pricing FAQ?

2011-05-16 Thread johnP
100% granular pricing is what made Appengine revolutionary. On May 16, 1:49 am, Sylvain sylvain.viv...@gmail.com wrote: Hi, With the actual prices, a very small paid app that only need 1GB above the free quota costs : $0.15 / month. With the new prices : $9 (monthly fee) + $0.15 = $9.15.

[google-appengine] Re: What do you want to see answered in Greg's pricing FAQ?

2011-05-16 Thread Marcel Overdijk
When can we expect to have the official FAQ place be available? -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to google-appengine@googlegroups.com. To unsubscribe from this group, send email to

Re: [google-appengine] How can I block bot which do not follow robots.txt ?

2011-05-16 Thread Gopal Patel
thanks for correction. On Sun, May 15, 2011 at 10:57 PM, Stephen sdeasey+gro...@gmail.com wrote: On Sat, May 14, 2011 at 6:12 AM, Gopal Patel patelgo...@gmail.com wrote: there is exabot crawler crawling my unfinished website continuouslywhat can I do to stop it ? I have disallowed

[google-appengine] Appengine Drawing Contest

2011-05-16 Thread Kaan Soral
Couldn't resist -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to google-appengine@googlegroups.com. To unsubscribe from this group, send email to google-appengine+unsubscr...@googlegroups.com. For more

Re: [google-appengine] Appengine Drawing Contest

2011-05-16 Thread Nickolas Daskalou
Lol, that is awesome! On 16/05/2011, at 9:37 PM, Kaan Soral kaanso...@gmail.com wrote: Couldn't resist -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to google-appengine@googlegroups.com. To

Re: [google-appengine] older version data showing in default version

2011-05-16 Thread Felippe Bueno
Senderrp, Are you seeing something like this ? http://groups.google.com/group/google-appengine-python/browse_thread/thread/15c2b4f8a8998ee8/cdc06e9b81849ec0?lnk=gstq=old+instances#cdc06e9b81849ec0 On Mon, May 16, 2011 at 4:27 AM, Brandon Wirtz drak...@digerat.com wrote: Are they Static? Did

Re: [google-appengine] DeadlineExceededException - how to avoid?

2011-05-16 Thread Francois Masurel
Does this still work with SDK 1.5.0 ? It doesn't seem to be the case. And why are instances restarted causing Server Error responses after these exceptions ? Thanx for your help. Francois -- You received this message because you are subscribed to the Google Groups Google App Engine group.

[google-appengine] Re: Is App Engine suddenly becoming more expensive???

2011-05-16 Thread carlosten
So, now we are paying for instances, but, Can we share for example one instance with 5 or 6 applications with low traffic? Or have one to pay 5 instances for have online 5 applications? If the second, I waste my time in learning appengine... -- You received this message because you are

[google-appengine] How can I test backends with my free app

2011-05-16 Thread Sergey
I want to test new feature - backends. As I understand it's enough to create backends.yaml and describe there parameters of my backends. I've done that: backends: - name: testbe class: B1 instances: 1 I ran this app on dev server. At admin console I see This application doesn't define any

Re: [google-appengine] Caching GeoModel requests?

2011-05-16 Thread Rodrigo Souza
You should compute the GeoBox for your location, and then query/cache the geobox. Take a look inside the geomodel source code for geoboxes. You might have to modify the geomodel source code. Thanks, Rodrigo Souza On Sat, May 14, 2011 at 8:26 PM, David Mora dla.m...@gmail.com wrote: you can

[google-appengine] Re: Getting one bill a month for the App Engine Usage

2011-05-16 Thread vinhboy
I get charged $.02 a month for appengine use. Can google please implement a minimum charge for appengine. Although I like the idea of bankrupting google via processing fees, I kind of need gmail so I don't really want that to happen. On Apr 3, 10:40 am, Brandon Wirtz drak...@digerat.com wrote:

[google-appengine] Re: What do you want to see answered in Greg's pricing FAQ?

2011-05-16 Thread J Jones
FAQ Question suggestions: - Does the Instance Hour pricing as opposed to now means GAE is now unaffordable for part time hackers e.g. college students, those working on self funded projects in their spare time? What is Google's position on this? - Did GAE provide sufficient information that

[google-appengine] Error vacuuming indexes

2011-05-16 Thread Tatarnikov Alexander
Hi i had created three indexes mistakenly(wrote some wrong queries) and now they all in error state, i'm following instructions that appcfg.py displays and use vacuum indexes but get this error: Deleting a composite index failed: ApplicationError: 1 No idea what it means/ How to remove these

[google-appengine] Help in uploading a file from Widows Mobile 6.5 device to GAE blobstore

2011-05-16 Thread Chimbu Aravind
Hi, Need some help in uploading a file from Widows Mobile 6.5 device to GAE blobstore In the GAE server, I have the following python code; (Its still crude.. ) class GetNewUploadUrlHandler(webapp.RequestHandler): def get(self): upload_url = blobstore.create_upload_url('/upload')

[google-appengine] Consolidated payment

2011-05-16 Thread PR
Hello App engine users, I would like to ask googlers, if it is possible to proceed payments in consolidated way somehow. We have more apps, which costs us about 2USD per week. For 2 apps, that means 8 invoices per month for total 16USD. Our finnancial dpt. is angry about that. Thank you for

[google-appengine] New pricing causes bizarre design

2011-05-16 Thread Bob
Hello, I've started writing GAE app that will have a 3D lattice object model with a couple of thousand nodes per user. Each request will typically need to read and analyse 1-2% of the records to walk the model in order to find the target node and half a dozen writes to update it and it's

[google-appengine] Restarting server in Eclipse won't deploy changes

2011-05-16 Thread chrism
Why is it that when I stop and restart the dev server after making and saving .jsp changes (by clicking the 'red box' icon to terminate the app and run debug as web application to restart), my changes aren't deployed. I have to actually close the project and reopen it (or close and re- launch

[google-appengine] Backends Sample does not work

2011-05-16 Thread uri twig
Hi I'm tring to work with the new backends api, I downloaded the sample code form http://backends-io.appspot.com/ and I run it on a few machines with the new appengine 1.5 sdk this is what I get when http://localhost:8080/welcome What am I'm doing wrong ?!? Traceback (most recent call last):

[google-appengine] reading an uploaded file

2011-05-16 Thread HN
Hi i have another question in app engine.U have one form where in thate one field for file upload ,i need to read the uploaded file validate it and tore it into the datastore. My question is how can i read the uploaded file ?? in django i would have used request.FILES in GAE si there anything of

[google-appengine] GAE + Django Problem

2011-05-16 Thread HN
Hi , Am using gae with django.What am doing is getting some value and storing it according to model class,when i hit the url for saving it am getting error 'str' object has no attribute 'status_code' here is full trace back -- -- -- Traceback (most recent call last): File

[google-appengine] Failing to update app - Client Error (400) The request is invalid for an unspecified reason.

2011-05-16 Thread Yoav
Hi all, Ever since yesterday I've been encountering the following error when trying to update my app: ... Cloned 1400 files. Cloned 1500 files. Uploading 1 files and blobs. Uploaded 1 files and blobs Precompilation starting. Precompilation completed. Starting deployment. Rolling back the update.

Re: [google-appengine] Re: What do you want to see answered in Greg's pricing FAQ?

2011-05-16 Thread Gregory D'alesandre
Still working on getting as many questions answered as possible, but it will likely be today or tomorrow... Greg On Mon, May 16, 2011 at 4:09 AM, Marcel Overdijk marceloverd...@gmail.comwrote: When can we expect to have the official FAQ place be available? -- You received this message

Re: [google-appengine] Consolidated payment

2011-05-16 Thread Ikai Lan (Google)
Yes, this is important to us. The pricing changes will make this feature possible. Ikai Lan Developer Programs Engineer, Google App Engine Blog: http://googleappengine.blogspot.com Twitter: http://twitter.com/app_engine Reddit: http://www.reddit.com/r/appengine On Mon, May 16, 2011 at 4:58 AM,

Re: [google-appengine] Re: How to force immediate log writes in Java?

2011-05-16 Thread Ikai Lan (Google)
I think what you're looking for is: import com.google.apphosting.api.ApiProxy; ApiProxy.flushLogs(); Ikai Lan Developer Programs Engineer, Google App Engine Blog: http://googleappengine.blogspot.com Twitter: http://twitter.com/app_engine Reddit: http://www.reddit.com/r/appengine On Sun, May

Re: RE: [google-appengine] Re: 1.5 improvements Make me less scared of Pricing

2011-05-16 Thread Dennis
Thanks for the tips, Brandon! A quick question: those scratchpad datastores are python dicts, right? We need to be aware that the dicts are not coordinated across instances so they may have stale data (which might be ok depending on the app). Just want to make sure I understand your

Re: [google-appengine] Re: Getting one bill a month for the App Engine Usage

2011-05-16 Thread Stephen
On Sat, May 14, 2011 at 5:44 PM, vinhboy vinh...@gmail.com wrote: I get charged $.02 a month for appengine use. Can google please implement a minimum charge for appengine. Under the new scheme you will be charged $9.02 per month. Problem solved... -- You received this message because you are

Re: [google-appengine] Consolidated payment

2011-05-16 Thread Paul
On a related note, is it going to be possible to be charged in other currencies? Paying transaction charges for small foreign exchanges would be a real pain! -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email

[google-appengine] Re: Charging for memory using Megabyte.hours

2011-05-16 Thread Kaan Soral
I was just thinking about this, great idea! 0.1$'s for 1 hours is already A LOT since it's 35mb/hour for python apps ( assuming a request consumes 35mb's of memory), Let's compare it to a dedicated server with 12gb's ram and 200$ monthly fee: That would make 342 instances, 0.58$ monthly for

Re: [google-appengine] New pricing causes bizarre design

2011-05-16 Thread Robert Kluin
Hi Bob, Some thoughts inline. On Fri, May 13, 2011 at 05:40, Bob bobburr...@gmail.com wrote: Hello, I've started writing GAE app that will have a 3D lattice object model with a couple of thousand nodes per user. Each request will typically need to read and analyse 1-2% of the records to

Re: [google-appengine] Backends Sample does not work

2011-05-16 Thread Greg Darke (Google)
In the dev-appserver you need to pass the '--backends' parameter. On 15 May 2011 11:07, uri twig uri.t...@gmail.com wrote: Hi I'm tring to work with the new backends api, I downloaded the sample code form http://backends-io.appspot.com/ and I run it on a few machines with the new appengine

Re: [google-appengine] How can I test backends with my free app

2011-05-16 Thread Greg Darke (Google)
To upload this backend to App Engine, you need to perform a backends up: appcfg.py backends update path/to/application/ On 12 May 2011 10:04, Sergey tvoys...@gmail.com wrote: I want to test new feature - backends. As I understand it's enough to create backends.yaml and describe there

[google-appengine] Re: TypeError in urlfetch_stub.py for SDK 1.4.3?

2011-05-16 Thread IgorNovak
Sure. This is the link to it: http://code.google.com/p/googleappengine/issues/detail?id=5060 Thanks, Igor On May 16, 7:28 pm, Robert Schuppenies schu...@google.com wrote: Mh, looks like a bug. Could you file an issue for that? thanks a lot, robert On Mon, May 16, 2011 at 1:54 AM,

[google-appengine] Re: Dynamically generating icons

2011-05-16 Thread PaulM
Thanks for the reply - for some reason I didn't receive it by email? On Apr 28, 1:02 am, Brandon Donnelson branflake2...@gmail.com wrote: As far as I know, no feature exists in the api to do this. Libraries that handle 2d libs dependencies aren't white listed yet. I'd like to see more image

Re: [google-appengine] Custom domain stopped working suddenly.

2011-05-16 Thread Ikai Lan (Google)
Both of the sites are working for me. Since you were able to make it work with a /etc/host change, this tells me something was probably wrong with your DNS cache in your browser intermittently. Ikai Lan Developer Programs Engineer, Google App Engine Blog: http://googleappengine.blogspot.com

Re: [google-appengine] Need help with My Traceback error

2011-05-16 Thread Ikai Lan (Google)
I didn't look at the issue - but that's because it'd be much more helpful to know what went *wrong*. A blind exception isn't useful for any kind of debugging. Ikai Lan Developer Programs Engineer, Google App Engine Blog: http://googleappengine.blogspot.com Twitter: http://twitter.com/app_engine

Re: [google-appengine] api method to find records within x miles of geo location

2011-05-16 Thread Ikai Lan (Google)
We do not currently support geospatial queries. You'll want to star the issues here that fit your needs: http://code.google.com/p/googleappengine/issues/list?can=2q=geocolspec=ID+Type+Component+Status+Stars+Summary+Language+Priority+Owner+Logcells=tiles Alternatively, I'm told that Fusion

Re: [google-appengine] Index Building Stuck

2011-05-16 Thread Robert Kluin
File a production issue. http://code.google.com/p/googleappengine/issues/entry?template=Production%20issue On Sun, May 15, 2011 at 23:24, PWBDecker pwbdec...@gmail.com wrote: App ID: wedarethegame.com Issue: Index Building Stuck I have uploaded an index definition file which has

  1   2   >