[appengine-java] Re: Discussion for Best Practices For App Engine With Example

2010-06-28 Thread djd
This is not quite an example, but a rather complete file listing, along with specs And your question was? Sorry I don't want to be negative, but your post is so long! On Jun 27, 9:39 pm, RAVINDER MAAN rsmaan...@gmail.com wrote: Hello all     I am working on a project which has following

Re: [appengine-java] Re: Discussion for Best Practices For App Engine With Example

2010-06-28 Thread Andrés Cerezo
You can share source code with a svn from eclipse, look at http://www.youtube.com/watch?v=15jItreEX1M it's an installation and investigate about svn and google codes. 2010/6/28 RAVINDER MAAN rsmaan...@gmail.com I am sorry for long post .But i just want to know about other peoples view on this

[appengine-java] Re: Limiting the number of requests per IP each minute

2010-06-28 Thread mscwd01
I assume my idea was the best anyone can come up with? On Jun 27, 10:27 am, mscwd01 mscw...@gmail.com wrote: Hey, I am developing an app which awards users for visiting a specific link. However, I want to ensure this is not abused by people writing scripts to visit the link rather than

[appengine-java] Documentation request: JDO inequality filter matching null values

2010-06-28 Thread Ian Marshall
I refer to the discussion thread entitled jdo inequality filter matching null values of 18th May 2009: http://groups.google.com/group/google-appengine-java/browse_thread/thread/28210dae6923284b/21dede4d8c4e647c?lnk=gstq=null+value+inequality#21dede4d8c4e647c I had the same trouble as J Robert

[appengine-java] a google app engine sample with objectify

2010-06-28 Thread KeremPekcabuk
Hi, is there any google app engine sample application which use objectify ? -- 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-j...@googlegroups.com. To unsubscribe from this

Re: [appengine-java] Re: Google Plugin for Eclipse 3.6 is now available

2010-06-28 Thread Jason Parekh
On Fri, Jun 25, 2010 at 1:01 AM, Philippe Marschall philippe.marsch...@gmail.com wrote: On Jun 23, 11:14 pm, Jason Parekh jasonpar...@gmail.com wrote: Hey folks, Google Plugin for Eclipse 1.3.3 is out with support for Eclipse 3.6. Install it with Eclipse 3.6's new Eclipse Marketplace

[appengine-java] JDO delete objects

2010-06-28 Thread Lu
Hi, How can I delete all the objects existed in the database? That means I want my application to have a empty database everytime when it gets started. Is there anywhere actually we can see the content of the database? Thanks -- You received this message because you are subscribed to the

[appengine-java] Re: GAE Spring3 + Tiles 2- localhost works, appspot fail - Unable to the determine sourceType S and targetType T...

2010-06-28 Thread Pablo Henrique
I changed the repository name http://github.com/phstc/spring-gae Anyone have same problem? On Jun 17, 11:16 pm, Pablo Henrique pabloh...@gmail.com wrote: Hello everybody, I tried to create spring blank app, with Spring MVC 3 + Tiles 2 capabilities. This application is avaiable on

Re: [appengine-java] GWT Hosted Mode with App Engine

2010-06-28 Thread Jason Parekh
On Fri, Jun 25, 2010 at 1:48 PM, alexh alexanderhar...@gmail.com wrote: Hi, I am currently developing a GWT 2.0 application that will run on Google App Engine. I have chosen to use Maven and am running my application from the command line for debugging and testing. What I would like to do

[appengine-java] Another Blob to Image Question

2010-06-28 Thread nearmars
Hello I'm building a servlet to display an image - nothing new here. The problem I'm facing is that the image is being forced to download in the browser instead of being displayed on the page. I've tested in Chrome/Firefox and IE. When the image is downloaded the file size is correct, but the file

[appengine-java] Re: Any ETA for a backup/restore facility?

2010-06-28 Thread François Masurel
I really would like to have a convenient backup/restore solution on GAE too. Anybody interested, please star the following issue : http://code.google.com/p/googleappengine/issues/detail?id=776 On 28 juin, 13:16, mscwd01 mscw...@gmail.com wrote: Hey Google Employees, There has been a

[appengine-java] Java Heap Space Error, Correct Increasing Method?

2010-06-28 Thread Mike Dillon
Hello all, Im working on a project that reads GTFS archives as part of its functionality. When we are importing a particular set of data that has ~60,000 entries my dev server locks up around the 27,000 entry. The error is the java heap space error. I would like to know if anyone has successfully

[appengine-java] Re: Any ETA for a backup/restore facility?

2010-06-28 Thread Mike Dillon
Mscwd01, I'm not a google employee, but I have had success backing up our datastore and then restoring our datastore with the bulkloader utility. Currently the bulkloader is in the python sdk, so all you need to do is download that and then youll be able to do backups and restore from those

[appengine-java] Re: Bulkupload int key?

2010-06-28 Thread Nate Bauernfeind
FWIW, I've been looking for a solution to this myself. I generally need to automate and bulk uploads to my app on a daily basis. Having any manual interaction to move the data will prevent my goal from ever being reached. So, the solution that I have found that seems to work is to create your

[appengine-java] Re: Google Plugin for Eclipse 3.6 is now available

2010-06-28 Thread Arian
On Jun 23, 11:14 pm, Jason Parekh jasonpar...@gmail.com wrote: Hey folks, Google Plugin for Eclipse 1.3.3 is out with support for Eclipse 3.6.  Install it with Eclipse 3.6's new Eclipse Marketplace feature by going to Help Eclipse Marketplace, and search for Google Plugin for Eclipse.

Re: [appengine-java] Re: Java Heap Space Error, Correct Increasing Method?

2010-06-28 Thread Toby Reyelts
You need to supply --jvm_flag as a command-line argument to dev_appserver.sh (aka KickStart), not to java.exe. That should work the same way for the ant, dev_appserver/ task. (You can see this in config/user/ant-macros.xml). On Mon, Jun 28, 2010 at 3:51 PM, Mike Dillon mikedillo...@gmail.com

[appengine-java] Re: Java Heap Space Error, Correct Increasing Method?

2010-06-28 Thread Mike Dillon
Solved! Okay here is a quick format for how to increase your java heap space: If you are running your dev server by running ./dev_appserver.sh war dir then do this: #!/bin/bash # Launches the development AppServer [ -z ${DEBUG} ] || set -x # trace if $DEBUG env. var. is non-zero

[appengine-java] Re: Java Heap Space Error, Correct Increasing Method?

2010-06-28 Thread Mike Dillon
Thanks Toby, I had figured this out before you replied but didn't refresh the page before I posted my solution. I appreciate the help! On Jun 28, 3:59 pm, Toby Reyelts to...@google.com wrote: You need to supply --jvm_flag as a command-line argument to dev_appserver.sh (aka KickStart), not to

Re: [appengine-java] Re: Discussion for Best Practices For App Engine With Example

2010-06-28 Thread RAVINDER MAAN
I have set up this project at http://code.google.com/p/forumdiscussion/ Please look at it and let me know if I need to change something. 2010/6/28 Andrés Cerezo acerezoguil...@gmail.com You can share source code with a svn from eclipse, look at http://www.youtube.com/watch?v=15jItreEX1M it's

[appengine-java] Re: Another Blob to Image Question

2010-06-28 Thread nearmars
I found the problem. Doh, setCharacterEncoding != setContentType. -- 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-j...@googlegroups.com. To unsubscribe from this group, send

[appengine-java] Re: Discussion for Best Practices For App Engine With Example

2010-06-28 Thread Jake
Hey all, I've seen a lot of posts like this that are overwhelmed with getters/ setters. I wonder why more people haven't started to use lombok? http://projectlombok.org/ It is, by far, the best tool I've found when programming Java. I'm just wondering why it's not more commonly used. Jake On

[appengine-java] Re: Any ETA for a backup/restore facility?

2010-06-28 Thread mscwd01
Thanks for your replying guys, it would be great if we could get an official Google response to update us on this as well though! I'll definitely have a look at the Bulk Loader in the meantime... On Jun 28, 1:52 pm, Mike Dillon mikedillo...@gmail.com wrote: Mscwd01, I'm not a google employee,

[appengine-java] Application restart for almost every request? What happened?

2010-06-28 Thread opok
Error Message: This request caused a new process to be started for your application, and thus caused your application code to be loaded for the first time. This request may thus take longer and use more CPU than a typical request for your application. My App just read a cache string with small

[appengine-java] Re: JDO delete objects

2010-06-28 Thread Didier Durand
Hi Lu, You can see the content of the database and delete it all from the App Engine Console https://appengine.google.com/dashboard?app_id=yourappid [Adapt yourappid to yours] and then go to Datastore Viewer or Datastore Statistics regards didier On Jun 28, 4:56 pm, Lu

[appengine-java] Re: Google Plugin for Eclipse 3.6 is now available

2010-06-28 Thread Philippe Marschall
On Jun 28, 4:10 pm, Jason Parekh jasonpar...@gmail.com wrote: On Fri, Jun 25, 2010 at 1:01 AM, Philippe Marschall philippe.marsch...@gmail.com wrote: On Jun 23, 11:14 pm, Jason Parekh jasonpar...@gmail.com wrote: Hey folks, Google Plugin for Eclipse 1.3.3 is out with support for

Re: [appengine-java] Re: Discussion for Best Practices For App Engine With Example

2010-06-28 Thread RAVINDER MAAN
Hi Jake Thanks .I was not aware about this project .I watched introductory video and It seems great.Thanks . On Tue, Jun 29, 2010 at 3:48 AM, Jake jbrooko...@cast.org wrote: Hey all, I've seen a lot of posts like this that are overwhelmed with getters/ setters. I wonder why more people