[appengine-java] Re: Maven

2009-08-24 Thread Marcel Overdijk
Thanks Alexei, I just don't understand why Google has not pushed it to http://code.google.com/p/google-maven-repository Should be part of there release plan! On Aug 24, 5:56 am, Alexei Vidmich ale...@vidmich.com wrote: I managed to setup maven descriptor so that I can build and enhance

[appengine-java] Re: Request to update jars in http://google-maven-repository.googlecode.com

2009-08-25 Thread Marcel Overdijk
+1 On Aug 25, 8:00 pm, Philippe Marschall philippe.marsch...@gmail.com wrote: On Aug 25, 6:37 pm, David david.yu@gmail.com wrote: Hi, 1.2.2 had been released more than a month ago but was not uploaded on the repository. The latest in there is 1.2.1 +1

[appengine-java] Re: selective deployment to GAE

2009-09-10 Thread Marcel Overdijk
I'm really wondering what you use case is... Sounds like you want some branching, so indeed use a version control system like Toby mentioned. On Sep 10, 8:14 pm, Vik vik@gmail.com wrote: hie.. the concern is: In my app say i change 2 files and click on deploy then as u said it will

[appengine-java] Re: Expression Language does not get evaluated in JSP

2009-09-10 Thread Marcel Overdijk
This is a known issue. See http://code.google.com/p/googleappengine/issues/detail?id=1478q=isELIgnoredcolspec=ID%20Type%20Status%20Priority%20Stars%20Owner%20Summary%20Log%20Component Cheers, Marcel On Sep 10, 8:25 pm, Java_GAE next.is@gmail.com wrote: Hi, When I use EL in JSP, I am

[appengine-java] Cascade delete

2009-09-21 Thread Marcel Overdijk
I have a Drinks entity which just contains a key which holds a String to indicate the drink. Like Coca Cola, Pepsi, etc. In my User entity I like to connect one or more favourite drinks of the user. I'm wondering if I delete a Drink if it will be removed from the users automatically?

[appengine-java] Re: subquries example

2009-09-22 Thread Marcel Overdijk
Aggregate functions are not supported. You should compute aggregate values during write time. (don't shoot the messenger ;-) On Sep 22, 11:38 am, rams hookr...@gmail.com wrote: hi i want to know that does java app engine has a support for subqueries in jdo ? does java app engine has a

[appengine-java] Re: My recommendation: Use Low-Level API instead of JDO/JPA

2009-09-23 Thread Marcel Overdijk
I think the docs about low level api is rather limited. Some examples would be nice. On Sep 23, 4:33 pm, Clay Lenhart c...@lenharts.net wrote: +1 We're having a similar discussion here: http://groups.google.com/group/google-appengine-java/browse_thread/th... Andy, My view is that there

[appengine-java] Re: My recommendation: Use Low-Level API instead of JDO/JPA

2009-09-24 Thread Marcel Overdijk
@Diana Currently there is only real docs for JDO. I think same documentation should be available for JPA and low-level API. Concentrating on practical exmaples. On Sep 24, 7:09 am, Diana Cruise diana.l.cru...@gmail.com wrote: Could you supply some briefs on your findings?  This is exactly the

[appengine-java] Re: My recommendation: Use Low-Level API instead of JDO/JPA

2009-09-24 Thread Marcel Overdijk
The best example I could find was: // Get a handle on the datastore itself DatastoreService datastore = DatastoreServiceFactory.getDatastoreService(); // Lookup data by known key name Entity userEntity = datastore.get(KeyFactory.createKey(UserInfo, email)); // Or perform a query Query

[appengine-java] Re: Java vs. Python X-AppEngine-Estimated-CPM-US-Dollars

2009-10-20 Thread Marcel Overdijk
Is there any other way to keep an instance warm? Startup of instance just takes to much time to have an effective GAE/J application... On 19 okt, 22:58, Jason (Google) apija...@google.com wrote: To answer your question, no, having a cron job run every minute to keep an instance warm will not

[appengine-java] Re: How to view log file locally?

2009-10-20 Thread Marcel Overdijk
my log4j config files, one for main, and one for test.  When I do a build maven only includes the stuff from the tree named main; the tree test never sees the light of day, as it were.  http://www.sonatype.com/documentation/books  http://www.maestrodev.com/better-build-maven Marcel

[appengine-java] Re: Spring MVC + Sitemesh problem

2009-10-24 Thread Marcel Overdijk
I'm successfully using Spring 3.0.0 RC1 with Sitemesh 2.4.2. I'm currently developing the app, but after I red this post I tried on GAE infra with simple decorator. Works well for m. On 23 okt, 19:00, Jason (Google) apija...@google.com wrote: Yes, please try changing the log levels to .INFO or

[appengine-java] Re: Is there a recommended way to differentiate between production and dev GAE environments?

2009-11-24 Thread Marcel Overdijk
Or use a Listener as described here http://marceloverdijk.blogspot.com/2009/10/determining-runtime-environment-on.html On 23 nov, 15:58, Nacho Coloma icol...@gmail.com wrote: To answer my own question, this has been my best shot this far: SecurityManager sm = System.getSecurityManager();

[appengine-java] Import/export for Java

2009-11-25 Thread Marcel Overdijk
I'm wondering how the Java utility for exporting/importing data is making progress. It's already available for Python but not for Java SDK. -- 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: Import/export for Java

2009-11-25 Thread Marcel Overdijk
://blog.notdot.net/2009/9/Advanced-Bulk-Loading-Part-5-Bulk-Loadi... http://appengine-cookbook.appspot.com/recipe/using-the-python-bulk-ex... On Wed, Nov 25, 2009 at 6:50 AM, Marcel Overdijk marceloverd...@gmail.comwrote: I'm wondering how the Java utility for exporting/importing data is making

[appengine-java] Serving images from datastore or jar?

2009-12-17 Thread Marcel Overdijk
My application contains approx 5000 images related to teams (each team has it's own logo). I was thinking about serving them from a jar file. I'm wondering if it would be better to serve them from the datastore and possible store/retrieve most used logos in memcache. What would a better solution

[appengine-java] Meassuring Loading Request

2009-12-18 Thread Marcel Overdijk
On http://code.google.com/intl/nl/appengine/kb/java.html#performance there is info how to write a listener to log loading requests. Would it also be possible to log how much time a loading request caused? -- You received this message because you are subscribed to the Google Groups Google App

[appengine-java] Re: Web.xml 2.5 Includes

2009-12-22 Thread Marcel Overdijk
Im wondering the same. Did you solve this problem? On 11 dec, 02:35, laserjim laser...@gmail.com wrote: Hello, I'm trying to include some tag library descriptors at the top of all my jsps.         jsp-config                 jsp-property-group                        

[appengine-java] Re: web.xml version=2.5 is not supported

2009-12-22 Thread Marcel Overdijk
Does the proposed solution works? Do el-ignored and include-prelude work then? I'm feeling a little bit uneased about doing this. I'm afraid I will be running in different unexpected errors. I'm also wondering what Google's statement on this would be? Cheers, Marcel -- You received this

[appengine-java] Re: web.xml version=2.5 is not supported

2009-12-22 Thread Marcel Overdijk
, 12:31 pm, Marcel Overdijk marceloverd...@gmail.com wrote: Does the proposed solution works? Do el-ignored and include-prelude work then? I'm feeling a little bit uneased about doing this. I'm afraid I will be running in different unexpected errors. I'm also wondering what Google's

[appengine-java] --enable_jar_splitting

2009-12-22 Thread Marcel Overdijk
I have a jar file which is to big so I got this message while uploading my app: Unable to update app: Found a jar file too large to upload: D:\Users \MOVERD~1\AppData\Local\Temp\appcfg5433596470093952667.tmp\WEB-INF\lib \footdex-resources.jar. Consider using --enable_jar_splitting. See the

[appengine-java] Re: --enable_jar_splitting

2009-12-22 Thread Marcel Overdijk
the deployment tool do this itself, but this can cause problems with some libraries (e.g. if it expects to find a resource file and a class file in the exact same jar) so I would recommend trying it manually yourself. On Tue, Dec 22, 2009 at 10:01 AM, Marcel Overdijk marceloverd

[appengine-java] 500 Server Error with Spring 3.0 application

2009-12-22 Thread Marcel Overdijk
Just deployed a very simple Spring 3.0 application successfully. At least the deployment process was successfull, but when I navigate to it (http://footdex-www.appspot.com/) I get a 500 Server Error. The log files don't show anything useful, so I'm wondering what the next step would be to

[appengine-java] Domain setup using Google Apps

2009-12-22 Thread Marcel Overdijk
I own the footdex.com Google Apps domain. I've bought this some time ago to host a GAE application on it. I now finally added the domain using in GAE admin console, but all I can do is attach it to a subdomain of footdex.com. I just want footdex.com to be the GAE app not a subdomain. Is this

[appengine-java] Re: 500 Server Error with Spring 3.0 application

2009-12-22 Thread Marcel Overdijk
Never my for now. I was looking at the admin logs instead of the normal logs. I see now exceptions now and will have a look at them. On 22 dec, 22:00, Marcel Overdijk marceloverd...@gmail.com wrote: Just deployed a very simple Spring 3.0 application successfully. At least the deployment process

[appengine-java] Re: 500 Server Error with Spring 3.0 application

2009-12-22 Thread Marcel Overdijk
Just want to say it was a stupid mistake in my app. My very basic Spring 3.0 app now runs on GAE together with SiteMesh and UrlRewrite. Great! On 22 dec, 22:11, Marcel Overdijk marceloverd...@gmail.com wrote: Never my for now. I was looking at the admin logs instead of the normal logs. I see

[appengine-java] Re: 500 Server Error with Spring 3.0 application

2009-12-22 Thread Marcel Overdijk
Now works, perhaps some synch going on as I had to remove Google sites from my Apps domain. Thanks anyway. On 22 dec, 22:31, Marcel Overdijk marceloverd...@gmail.com wrote: Just want to say it was a stupid mistake in my app. My very basic Spring 3.0 app now runs on GAE together with SiteMesh

[appengine-java] Re: GAE roadmap for 2010

2009-12-27 Thread Marcel Overdijk
I agree a new 2010 roadmap would be really needed. Current roadmap page only contains: 1. Support for mapping operations across datasets 2. Cursors for continuing results of Datastore queries past the 1000 entity limit 3. Alerting system for exceptions in your application 4. Datastore dump and

[appengine-java] Testing mail service in development mode

2009-12-28 Thread Marcel Overdijk
As GAE does not send out mails in development server, I'm wondering how others are testing this. Just go live and hope it works? -- 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: Spring TimerFactoryBean and ScheduledTimerTask not working on AppEngine??

2009-12-30 Thread Marcel Overdijk
Are those Spring classes creating threads? This is not allowed on GAE. On 30 dec, 22:17, Juri juri.strumpfloh...@gmail.com wrote: Hi, I configured a TimerFactoryBean through my Spring configuration file which launched a ScheduledTimerTask in given time intervals for performing some work.

[appengine-java] Re: Testing mail service in development mode

2009-12-30 Thread Marcel Overdijk
project. On Mon, Dec 28, 2009 at 12:55 PM, Marcel Overdijk marceloverd...@gmail.comwrote: As GAE does not send out mails in development server, I'm wondering how others are testing this. Just go live and hope it works? -- You received this message because you are subscribed to the Google

[appengine-java] Re: Domain setup using Google Apps

2009-12-30 Thread Marcel Overdijk
It's was related to Google Sites within Google Apps. I had www configured there some time ago. After deleting it everything works fine. On 30 dec, 10:30, Daniel Louis jair...@gmail.com wrote: Yeah, it is possible... 2009/12/23 Marcel Overdijk marceloverd...@gmail.com I own

[appengine-java] Maven

2010-01-06 Thread Marcel Overdijk
Is GAE 1.3.0 available in central maven repo? Would be nice if Google GAE team could create a subpage on the GAE docs homepage with information for maven. Many users would appreciate this. Thanks, Marcel -- You received this message because you are subscribed to the Google Groups Google App

[appengine-java] Re: javax.annotation.Resource Spring 3.0.0.Release declarative DI on Google App Engine

2010-01-12 Thread Marcel Overdijk
Just read your post carefully now and notices that some parts of JSR-250 are supported. I'm wondering now the same why @Resource is not supported. Maybe GAE team can shed some light on this. Cheers, Marcel On 2 jan, 12:27, Ralf Sigmund ralf.sigm...@gmail.com wrote: Hi, i am a newbie to App

[appengine-java] Serious problem with DataNuclues and JPA EntityManager in Eclipse

2010-01-12 Thread Marcel Overdijk
I'have a serioud problem to het DataNuclues and JPA EntityManager to work in combination with Spring 3. I have this exception: Error creating bean with name 'entityManagerFactory' defined in ServletContext resource [/WEB-INF/ spring.xml]: Invocation of init method failed; nested exception is

[appengine-java] Re: Serious problem with DataNuclues and JPA EntityManager in Eclipse

2010-01-12 Thread Marcel Overdijk
, but I think that's another mis configuration on my side. On 12 jan, 16:45, Marcel Overdijk marceloverd...@gmail.com wrote: I'have a serioud problem to het DataNuclues and JPA EntityManager to work in combination with Spring 3. I have this exception: Error creating bean with name

[appengine-java] Ant and --enable_jar_splitting

2010-01-14 Thread Marcel Overdijk
target name=update description=Uploads the application to App Engine. appcfg action=update war=war options arg value=--enable_jar_splitting / /options /appcfg /target I'm using the target as above but I get message: Found a jar file

[appengine-java] Ant and providing email / password

2010-01-14 Thread Marcel Overdijk
target name=update description=Uploads the application to App Engine. appcfg action=update war=war options arg value=--enable_jar_splitting / /options /appcfg /target I have above ant target to update the app. But when run I get

[appengine-java] Re: Objectify-Appengine, a typesafe data persistence tier for App Engine

2010-01-20 Thread Marcel Overdijk
This really looks great! On 13 jan, 18:28, Jeff Schnitzer j...@infohazard.org wrote: http://code.google.com/p/objectify-appengine/ I probably should have called this project Goldilocks, because it's a little bit how I feel.  Despite being a longtime Hibernate user (since the 1.0 days), the

[appengine-java] Re: Ant and --enable_jar_splitting

2010-01-22 Thread Marcel Overdijk
bump; anyone? On 14 jan, 21:23, Marcel Overdijk marceloverd...@gmail.com wrote:     target name=update description=Uploads the application to App Engine.         appcfg action=update war=war             options                 arg value=--enable_jar_splitting /             /options

[appengine-java] Re: javax.annotation.Resource Spring 3.0.0.Release declarative DI on Google App Engine

2010-02-10 Thread Marcel Overdijk
Larry, Check out https://jira.springsource.org/browse/SPR-6679 and please vote. On Feb 10, 7:11 pm, Larry Cable larry.ca...@gmail.com wrote: Not sure if this  helps or not but you cannot use the Spring context:annotation-config / markup in your GAE Spring applications ... This will of

[appengine-java] Re: Google Plugin for Eclipse 1.3 plans

2010-02-11 Thread Marcel Overdijk
SDK 1.3.1 was released today, so I was wondering if the 1.3 plugin is also released, and more importantly if it contains better support for maven as described in Keith's post. On Feb 9, 10:11 pm, Hannu Leinonen hlein...@gmail.com wrote: Allright, As I've stated before on the list, Maven + GAE

[appengine-java] Re: Will a solution to the Java load latency come in Q2?

2010-02-23 Thread Marcel Overdijk
What means 'keeping at least one instance hot'? In USA, Europe, ...? There can be no guarantee a new user will use the 1 hot instance. On Feb 23, 4:30 pm, Locke locke2...@gmail.com wrote: I plan on going live with my app in Q2, however, I can't subject my users to App Engine's Java loading

[appengine-java] RemoteVersionFactory

2010-05-27 Thread Marcel Overdijk
Yesterday I had the bad luck my internet connection was not working. While starting up App Engine dev server ik took more than 1 minut to startup and it gave me the following exception: May 26, 2010 8:26:01 PM com.google.appengine.tools.info.RemoteVersionFactory getVersion INFO: Unable to access

[appengine-java] system properties

2010-05-27 Thread Marcel Overdijk
Is it possible to define system properties in the admin console? I'm creating a small application of which the source code will be available in public github. I'm using twitter username + password to send tweets to twitter. As the sources are in public github repo I like to define this

[appengine-java] Re: system properties

2010-05-28 Thread Marcel Overdijk
values and use the   admin console to change them live. On 27 May 2010, at 15:49, Marcel Overdijk wrote: Is it possible to define system properties in the admin console? I'm creating a small application of which the source code will be available in public github. I'm using  twitter

[appengine-java] Re: Spring Roo + GWT Demo

2010-05-30 Thread Marcel Overdijk
Yes would be cool if they finally share the code. It was a big announcement and people want to try it out, but it lacks information now... On May 28, 8:44 pm, caritos ecari...@gmail.com wrote: Looking for documentation to deploy Spring Roo + GWT + STS on GAE. On May 28, 11:03 am, geoaxis

[appengine-java] Re: Google App Engine for Business

2010-05-31 Thread Marcel Overdijk
It would be more interesting to talk about the actual limitations of the provided Google sql db On May 24, 9:57 pm, Ikai L (Google) ika...@google.com wrote: Yep. Distributed datastores wouldn't exist if we had figured out a way to do scalable, cheap and fast horizontally scalable SQL that could

[appengine-java] Datastore design

2010-06-07 Thread Marcel Overdijk
I've the following scenario. a) Registered users can post recipes (we anticipate on 5000 different recipes) b) Each recipe is part of 1 or more categories (we anticipate 100 different categories) c) Registered users can vote for recipes d) Registered users must select the country they live in 1)

[appengine-java] Re: Datastore design

2010-06-07 Thread Marcel Overdijk
, Marcel Overdijk marceloverd...@gmail.comwrote: I've the following scenario. a) Registered users can post recipes (we anticipate on 5000 different recipes) b) Each recipe is part of 1 or more categories (we anticipate 100 different categories) c) Registered users can vote

[appengine-java] jsp-config

2010-06-13 Thread Marcel Overdijk
Can somebody confirm that jsp-config in web.xml to globally enable EL is supported? jsp-config jsp-property-group el-ignoredfalse/el-ignored /jsp-property-group /jsp-config For me it is not working and I have to add %@ page isELIgnored=false % to all jsp

[appengine-java] What would you recommend: Objectify or Twig?

2010-06-15 Thread Marcel Overdijk
What would you recommend: Objectify or Twig? -- 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 email to

[appengine-java] Is the source code for Google App Engine available?

2010-06-17 Thread Marcel Overdijk
http://code.google.com/p/googleappengine/source/browse/#svn/trunk does not contain sources for e.g. com.google.appengine.api.datastore.DatastoreService -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send

[appengine-java] Google please explain (my site is disabled without any notice)

2010-06-19 Thread Marcel Overdijk
Google, My site has been disabled, or even worst it's redirecting to another website. This is done without any notice, so I'm really wondering why this happened. I like to discuss this. I've posted a message on this forum earlier but is seems this message was deleted. I just can't believe this.

[appengine-java] Re: Google please explain (my site is disabled without any notice)

2010-06-19 Thread Marcel Overdijk
Correction, my earlier message was not deleted. I posted that in the generic App Engine group (http://groups.google.com/group/google- appengine/browse_thread/thread/6859c025ab504fc8#) On Jun 19, 8:24 pm, Marcel Overdijk marceloverd...@gmail.com wrote: Google, My site has been disabled

[appengine-java] Re: Have to restart server to see changes when using Spring

2010-07-12 Thread Marcel Overdijk
Anytime you change a Java file you have to restart the server to make the changes effective. On Jul 12, 7:59 am, decitrig rws...@gmail.com wrote: I have this controller set up right now, using Spring MVC 3.0: @Controller public class HelloController {   @RequestMapping(/hello.htm)  

[appengine-java] Instance startup/shutdown and sessions

2010-07-26 Thread Marcel Overdijk
I like to store the logged in user (custom; not Google User Api) of my app in the session. What happens if between logged in user navigates to another page and the GAE instance was shutdown? I understand a new instance is started but what happened to the session data? Also, how is

[appengine-java] Re: Instance startup/shutdown and sessions

2010-07-26 Thread Marcel Overdijk
So GAE makes sure the preserve session data between shutting down/ starting up instances. Nice. On Jul 26, 12:44 pm, Shawn Brown big.coffee.lo...@gmail.com wrote: What happens if between logged in user navigates to another page and the GAE instance was shutdown? I understand a new

[appengine-java] Re: Instance startup/shutdown and sessions

2010-07-26 Thread Marcel Overdijk
, obviously, only applies to values saved in the session; any class or application variables are not maintained. Jake On Jul 26, 7:02 am, Marcel Overdijk marceloverd...@gmail.com wrote: So GAE makes sure the preserve session data between shutting down/ starting up instances. Nice

[appengine-java] Re: java.net.Proxy not on the JRE Class White List but I can reference it runtime!!

2010-08-01 Thread Marcel Overdijk
an exception: ClassProxy klass = Proxy.class; // No exception! On Sun, Aug 1, 2010 at 3:47 PM, Marcel Overdijk marceloverd...@gmail.comwrote: I did some further investigations and found out something interesting. I used the Java twitter4j library in the past (I'm writing a similar library

[appengine-java] Admin pages

2010-09-07 Thread Marcel Overdijk
Is there any guidelines to have custom admin pages look as the standaard admin pages? -- 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

[appengine-java] I'm not able to deploy my new app due to InvalidClassException: local class incompatible

2010-10-04 Thread Marcel Overdijk
http://janrain4j.appspot.com/ javax.servlet.ServletException: java.lang.RuntimeException: java.io.InvalidClassException: com.googlecode.janrain4j.api.engage.response.AbstractEngageResponse; local class incompatible: stream classdesc serialVersionUID = -8862811237568844288, local class

[appengine-java] Re: I'm not able to deploy my new app due to InvalidClassException: local class incompatible

2010-10-05 Thread Marcel Overdijk
you may want to read through: http://www.javapractices.com/topic/TopicAction.do?Id=45 On Mon, Oct 4, 2010 at 3:33 PM, Marcel Overdijk marceloverd...@gmail.com wrote: http://janrain4j.appspot.com/ javax.servlet.ServletException: java.lang.RuntimeException: java.io.InvalidClassException

[appengine-java] JSTL eclipse warning: Can not find the tag library descriptor for http://java.sun.com/jsp/jstl/core

2010-11-22 Thread Marcel Overdijk
As described in http://groups.google.com/group/google-appengine-java/browse_thread/thread/a37b7710568bf54e/13714cc16cfccf80?lnk=gstq=jstl#13714cc16cfccf80 you should not include any JSTL library as it's repackaged by Google already. However with the Google plugin when adding something like: %@

[appengine-java] Re: Lightweight Best performing MVC framework - Recommendation

2011-01-06 Thread Marcel Overdijk
Ikai, Do you have experience with Play framework on GAE. I looked at it and I noticed it uses Groovy for templating in the view layer. Sometime back I tried to use Groovy on GAE and it had performance impacts. Do you know Play suffers with longer (cold) startup of application, our first time

[appengine-java] SystemProperty.applicationVersion.get() suffix

2011-02-17 Thread Marcel Overdijk
I'm having this in appengine-web.xml version0-1/version When I print this in JSP with %=com.google.appengine.api.utils.SystemProperty.applicationVersion.get() % I get 0-1.1 Note the .1 suffix. Is this right and is it always .1? -- You received this message because you are subscribed to the

Re: [appengine-java] SystemProperty.applicationVersion.get() suffix

2011-02-18 Thread Marcel Overdijk
Nice to be in contact Guillaume :-), it has been some time. Do you know when the timestamp changes? After a new deployment or when a new instance is started? Cheers, Marcel -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post

[appengine-java] Re: Google SQL Service Trusted Testers Signup

2011-02-28 Thread Marcel Overdijk
Is there more information available about the SQL support? Will it only be available for 'App Engine for Business'? And will pricing be simalar as BigTable datastore? On Feb 28, 6:06 pm, Amit Agarwal aagar...@google.com wrote: Hello everyone, We have been working on enabling SQL support for

[appengine-java] Re: GAE (Java) integration with OAuth (facebook, twitter, etc.)

2011-02-28 Thread Marcel Overdijk
Just use http://code.google.com/p/janrain4j/ The demo app http://janrain4j.appspot.com/ is even hosted on Google App Engine. Integration with Spring and Spring Security is also included out of the box (if needed). On Feb 28, 12:36 pm, Ben Carlson bencarl...@gmail.com wrote: I haven't tried it

[appengine-java] Re: Google SQL Service Trusted Testers Signup

2011-03-01 Thread Marcel Overdijk
information that we can share publicly. Once we have something we will do so. Thanks Amit On Mon, Feb 28, 2011 at 3:09 PM, Marcel Overdijk marceloverd...@gmail.comwrote: Thanks Amit, I understand Google is still working on the prices. But this is important aspect for me to decide to go

[appengine-java] Re: Gig 0.3.0 has been released

2011-03-27 Thread Marcel Overdijk
Hi Eiichiro, Just browsed the Gig documentation pages and it looks interesting. Is this framework already used in public production websites? Cheers, Marcel On Mar 27, 4:38 pm, Eiichiro eiichiro.uchi...@gmail.com wrote: Hi Google App Engine Java developers, Gig (Google app engine Innovation

[appengine-java] What are you opinions about yesterdays announced opensource Cloudcoundry PaaS

2011-04-13 Thread Marcel Overdijk
What are you opinions about yesterdays announced opensource Cloudcoundry PaaS compared to Google App Engine? -- 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: Which one is best for development...Spring Framework or Servlet Jsp....

2011-04-19 Thread Marcel Overdijk
I'm using the Spring stack (Spring DI, AOP ,MVC, Security) together with Objectify successfully on appengine. The app is not in production yet, but several tests of the setup also worked on appengine. Off course there are lighter frameworks, but that's not a issue for me using warm instances. On

[appengine-java] Re: Which one is best for development...Spring Framework or Servlet Jsp....

2011-04-19 Thread Marcel Overdijk
No check out docs about Warmup requests: http://code.google.com/appengine/docs/java/config/appconfig.html#Warmup_Requests On Apr 19, 1:18 pm, Nischal nischalshett...@gmail.com wrote: You mean you have reserved instances? IMO you would still need to take care of your load time as new instances

[appengine-java] Deferred Task and retries

2011-04-21 Thread Marcel Overdijk
Can DeferredTask also be configured to have retries? -- 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] Deferred Task with non default queue

2011-04-22 Thread Marcel Overdijk
Is it possible to use Deferred Tasks outside the default queue? I would like to setup multiple queues with different config settings. For the Deferred Tasks a specific handler is setup at /_ah/queue/ __deferred__ so I wonder how that would work with multiple queues -- You received this

[appengine-java] Re: Deferred Task and retries

2011-04-22 Thread Marcel Overdijk
To answer my own question, from the docs I can read that retries are possible and are enabled automatically. On Apr 21, 10:53 pm, Marcel Overdijk marceloverd...@gmail.com wrote: Can DeferredTask also be configured to have retries? -- You received this message because you are subscribed

[appengine-java] Re: Deferred Task with non default queue

2011-04-22 Thread Marcel Overdijk
DeferredTask to send them to one of the queues depending on the my needs. I would have no problem with configuring additional servlet mappings using com.google.apphosting.utils.servlet.DeferredTaskServlet On Apr 22, 8:58 am, Marcel Overdijk marceloverd...@gmail.com wrote: Is it possible to use Deferred

[appengine-java] Are urls with /ah/* automatically protected?

2011-04-22 Thread Marcel Overdijk
I'm wonderinf if urls starting with /ah/* (like /_ah/queue/ __deferred__) are automatically protected or that I should configure a security 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

[appengine-java] Re: Deferred Task with non default queue

2011-04-22 Thread Marcel Overdijk
somebody confirm this? On Apr 22, 11:13 am, Marcel Overdijk marceloverd...@gmail.com wrote: Maybe use additional mappings to com.google.apphosting.utils.servlet.DeferredTaskServlet The documentation on Deferred Tasks is a little bit sparse... Any pointers appreciated. Basically what I would

[appengine-java] Re: Deferred Task with non default queue

2011-04-26 Thread Marcel Overdijk
configuration per Deferred task queue? On Apr 26, 4:59 pm, Gianni Mariani gmari...@google.com wrote: The preconfigured URL mapping for the DeferredTaskServlet may be used for any queue.  There is no need to specify your own URL mapping that I can see. On Apr 22, 8:05 pm, Marcel Overdijk marceloverd

Re: [appengine-java] Re: Deferred Task with non default queue

2011-04-27 Thread Marcel Overdijk
something wrong? Thanks for your help and patience, Marcel On Apr 27, 12:09 am, Gianni Mariani gian...@google.com wrote: On Wed, Apr 27, 2011 at 4:19 AM, Marcel Overdijk marceloverd...@gmail.comwrote: But is it possible to change queue settings for Deferred task? A DeferredTask is just like

[appengine-java] Re: Deferred Task with non default queue

2011-04-28 Thread Marcel Overdijk
Can anybody confirm Deferred task should work with settings in queue.xml? On Apr 27, 11:28 am, Marcel Overdijk marceloverd...@gmail.com wrote: Hi Gianni, If I understand correctly I can use the default handler for any deferred task and thus specifying the url is irrelevant. How would I

[appengine-java] Re: Deferred Task with non default queue

2011-05-07 Thread Marcel Overdijk
environment?  If so, let me know what your app id is. g On Apr 27, 7:28 pm, Marcel Overdijk marceloverd...@gmail.com wrote: Hi Gianni, If I understand correctly I can use the default handler for any deferred task and thus specifying the url is irrelevant. How would I send a 'deferred

[appengine-java] Feelings about new pricing model

2011-05-10 Thread Marcel Overdijk
Today Google announced the new pricing model to be effective later this year (http://googleappengine.blogspot.com/2011/05/year-ahead-for- google-app-engine.html). I always like the pay per usage model compared to the pay per instance model. Because of this change by Google, other platforms - like

[appengine-java] Is Google planning to offer HR datastore migration feature

2011-05-30 Thread Marcel Overdijk
I would like to switch from M/S datastore to HR datastore, buut how should I do this? Is Google planning to offer HR datastore migration feature? -- 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: Is Google planning to offer HR datastore migration feature

2011-05-31 Thread Marcel Overdijk
to do this too. The priority for me is to preserve my application ID during this migration. My understanding is that it is impossible for an existing app to switch from M/S to HR; a new app ID must be used. (I would love it if my understanding is incorrect.) On May 30, 12:02 pm, Marcel

[appengine-java] Application Title available?

2011-06-03 Thread Marcel Overdijk
Is the Application title accessible using the SDK? I guess not, but Maybe Google can make in available in the Environment class. -- 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] Does AppEngine support Servlet 3.0 ServletContainerInitializer

2011-06-08 Thread Marcel Overdijk
Does AppEngine support Servlet 3.0 ServletContainerInitializer for code-based configuration of Servlet Container? -- 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: Does AppEngine support Servlet 3.0 ServletContainerInitializer

2011-06-08 Thread Marcel Overdijk
AM, Marcel Overdijk marceloverd...@gmail.com wrote: Does AppEngine support Servlet 3.0 ServletContainerInitializer for code-based configuration of Servlet Container? -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group

[appengine-java] Scheduler features and load time limitations

2011-07-18 Thread Marcel Overdijk
Everybody knows about load time issues when using frameworks that take a long time to startup. Take for example Grails. I wonder if we will still encounter these issues after the pricing changes. 1) Will the limit of 30s to start an application be lifted? 2) How smart will the scheduler be to

[appengine-java] Want to run Grails on Google App Engine

2011-07-19 Thread Marcel Overdijk
Join the discussion at: http://goo.gl/sT7uT -- 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: Отг: Re: [appengine-java] Datastore Replication Options - can not be changed once app id is created

2011-07-22 Thread Marcel Overdijk
I also don't understand why we cannot switch. A lot of people are requesting this (including myself). On Jul 22, 7:14 am, Miroslav Genov mge...@gmail.com wrote: I have the opposite situation :). My app is using master/slave and I want to migrate it to use the multi-master replication. Is

[appengine-java] Accessing same datastore from within 2 (local) JVM's

2011-07-22 Thread Marcel Overdijk
I'm starting my application local and I will perform some functional tests within a JUnit tests. From within this same JUnit test I also want to check if values are stored in datastore. Can I access the same datastore the running webapp is using, but then from within JUnit test running in a

[appengine-java] Re: Scheduler features and load time limitations

2011-07-22 Thread Marcel Overdijk
://googleappengine.blogspot.com Twitter:http://twitter.com/app_engine Reddit:http://www.reddit.com/r/appengine On Mon, Jul 18, 2011 at 5:40 PM, Marcel Overdijk marceloverd...@gmail.comwrote: Everybody knows about load time issues when using frameworks that take a long time to startup. Take

[appengine-java] Re: Scheduler features and load time limitations

2011-07-22 Thread Marcel Overdijk
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 Fri, Jul 22, 2011 at 2:37 PM, Marcel Overdijk marceloverd...@gmail.comwrote: Hi Ikai, I cannot find answer

[appengine-java] Re: Scheduler features and load time limitations

2011-07-22 Thread Marcel Overdijk
/app_engine Reddit:http://www.reddit.com/r/appengine On Fri, Jul 22, 2011 at 3:12 PM, Marcel Overdijk marceloverd...@gmail.comwrote: Yes might be, but frameworks like Grails need a longer startup time. It does not matter for any application server nor cloud provider except GAE. That's

[appengine-java] Re: Scheduler features and load time limitations

2011-07-30 Thread Marcel Overdijk
shouldn't take more than 30 seconds to startup. 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 Fri, Jul 22, 2011 at 3:12 PM, Marcel Overdijk marceloverd

[appengine-java] Re: HardDeadlineExceededError on start up

2011-08-02 Thread Marcel Overdijk
Note that in this http://groups.google.com/group/google-appengine-java/browse_thread/thread/23c9c625bd9d4437# discussion I've also asked about how Google thinks about startup time limitations in the future. No concrete answer yet... On Aug 1, 6:07 pm, jem...@gmail.com jem...@gmail.com wrote: I

[appengine-java] Starting up DevAppServer, Jetty, ContainerService manually

2011-08-03 Thread Marcel Overdijk
I'm wondering what the options are for starting up the DevAppServer manually. I read about the KickStart, DevAppServerMain etc but this not satisify my needs. I more or less looking to possibilities to use something like: org.mortbay.jetty.webapp.WebAppContext.setDescriptor(String contentWebXml)

  1   2   >