[appengine-java] RemoteVersionFactory

2010-05-26 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 username/

[appengine-java] Re: system properties

2010-05-28 Thread Marcel Overdijk
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 > >

[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 wrote: > Looking for documentation to deploy Spring Roo + GWT + STS on GAE. > > On May 28, 11:03 am, geoaxis wrote: > > > > > Hel

[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)" 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 preserve ACID

[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
Thanks, do you know if there is a demo site using thoughtsite? On Jun 7, 9:06 pm, "Ikai L (Google)" wrote: > Thoughtsite does something similar. Have you taken a look yet? > > http://google-opensource.blogspot.com/2010/05/open-sourcing-thoughtsi... > > On Mon, Jun 7,

[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? false For me it is not working and I have to add <%@ page isELIgnored="false" %> to all jsp pages. Cumbersome... -- You received this message because you are subscribed t

[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 google-appengi

[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 ema

[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. I

[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 wrote: > Google, > > My site has been disabled, or even w

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

2010-06-19 Thread Marcel Overdijk
Please forget about this post and apologies. It was Javascript innjection which caused the redirect... So it was my own stupid mistake. On Jun 19, 10:02 pm, Marcel Overdijk wrote: > Correction, my earlier message was not deleted. I posted that in the > generic App Engine group

[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 wrote: > I have this controller set up right now, using Spring MVC 3.0: > > @Controller > public class HelloController { > >   @RequestMapping("/hello.htm") >   public Strin

[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 startup/shutdow

[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 wrote: > > 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

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

2010-07-26 Thread Marcel Overdijk
em, > 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 wrote: > > > > > So GAE makes sure the preserve session data between shutting down/ > > startin

[appengine-java] Why is java.net.Proxy not on the JRE Class White List?

2010-08-01 Thread Marcel Overdijk
Adding java.net.Proxy to the JRE Class White List wouldn't be harmfull, so I'm wondering why the decision was made to not add it. I'm developing a API library which will need to connect to a certain URL and post info. For a personal project on GAE I need it to be GAE compatible, but I think more p

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

2010-08-01 Thread Marcel Overdijk
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 for a different service) successfully on app engine. So I checked the twitter4j source code how they did it and then found out that the use the Proxy

[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
won't > cause an exception: > > Class klass = Proxy.class; // No exception! > > On Sun, Aug 1, 2010 at 3:47 PM, Marcel Overdijk > wrote: > > > > > I did some further investigations and found out something interesting. > > > I used the Java twitter4j libra

[appengine-java] Re: Prerelease SDK 1.3.6 is out!

2010-08-04 Thread Marcel Overdijk
Custom error pages is also very nice. On Aug 4, 7:41 pm, "Ikai L (Google)" wrote: > Hey guys, > > Here's a sample app that uses the namespaces feature: > > http://code.google.com/p/google-app-engine-samples/source/browse/#svn... > > On Tue, Aug 3, 2010 at 2:16 PM, Mouseclicker wrote: > > > > > >

[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 serialVersion

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

2010-10-04 Thread Marcel Overdijk
r you. > > For the future 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 > > > > wrote: > >http://janrain4j.appspot.com/ > > javax.servlet.Serv

[appengine-java] Are 1.2.2 sdk jars available in a public maven repository?

2009-08-22 Thread Marcel Overdijk
Are 1.2.2 sdk jars available in a public maven repository? --~--~-~--~~~---~--~~ 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.co

[appengine-java] Re: Maven

2009-08-22 Thread Marcel Overdijk
I would be happy if the sdk 1.2.2 would be avaliable in a public repo On Aug 22, 8:25 pm, drone wrote: > So, has anyone actually got Maven up and running with a GAE project? > > (and I mean really Maven, not Maven for this and Ant for that) > > My best result is that datanucleus enhancer is

[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 wrote: > I managed to setup maven descriptor so that I can build and enhance > classes. > I execute "m

[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 wrote: > On Aug 25, 6:37 pm, David 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 --~--~-~--~~~---~--~~ You receive

[appengine-java] Re: appengine artifacts not updated

2009-09-09 Thread Marcel Overdijk
I just don't understand it. I also like Google to place the artifacts. At least someone from Google should answer this (as the previous thread was ignored) discussion if we can relay on artifacts in http://google-maven-repository.googlecode.com/svn/repository/com/google/appengine/. I've create a

[appengine-java] Re: appengine artifacts not updated

2009-09-09 Thread Marcel Overdijk
Link to issue: http://tinyurl.com/lnogw3 On Sep 9, 9:40 pm, Marcel Overdijk wrote: > I just don't understand it. I also like Google to place the artifacts. > At least someone from Google should answer this (as the previous > thread was ignored) discussion if we can relay on artif

[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 wrote: > hie.. > the concern is: > > In my app say i change 2 files and click on deploy then as u said it will > update both the

[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=1478&q=isELIgnored&colspec=ID%20Type%20Status%20Priority%20Stars%20Owner%20Summary%20Log%20Component Cheers, Marcel On Sep 10, 8:25 pm, Java_GAE wrote: > Hi, > > When I use EL in JSP, I am getting unprocessed E

[appengine-java] Re: Announcing "JDO/JPA Snippets That Work"

2009-09-15 Thread Marcel Overdijk
+1 for mapping of JPA/JDO "RDBMS" like concepts onto the DS On Sep 15, 1:50 am, Larry Cable wrote: > I'd also encourage you as part of this to focus on the mapping of > JPA/JDO "RDBMS" like concepts onto the DS, as this I have > found to be most problematic ... (or at least include pointers from

[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? Theoret

[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 wrote: > hi > > i want to know that > > does java app engine has a support for subqueries in jdo ? > does java app engine has a support for  agg

[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 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 is no produ

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

2009-09-23 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 wrote: > Could you supply some briefs on your findings?  This is exactly the > type of feedback we

[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 q

[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)" wrote: > To answer your question, no, having a cron job run every minute to keep an > instance warm will not work. If all a

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

2009-10-20 Thread Marcel Overdijk
; that's > >> where I put 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.c

[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)" wrote: > Yes, please try changing the log levels to .INFO or .FINEST -- it's p

[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=gst&q=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 view

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

2011-02-17 Thread Marcel Overdijk
I'm having this in appengine-web.xml 0-1 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 Google Groups

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 pos

[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 wrote: > Hello everyone, > > We have been working on enabling SQL support for Google App Engine.

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

2011-02-28 Thread Marcel Overdijk
g for concrete prices but would like to have an idea of it (compared to BigTable). Cheers, Marcel On Feb 28, 11:15 pm, Amit Agarwal wrote: > Hi Marcel, > > Comments inline. > > On Mon, Feb 28, 2011 at 1:05 PM, Marcel Overdijk > wrote: > > > Is there more information

[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 wrote: > I haven't tried it myself, buthttp://ww

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

2011-03-01 Thread Marcel Overdijk
> 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 > wrote: > > > > > Thanks Amit, > > > I understand Google is still working on the prices. > > But this is impo

[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 wrote: > Hi Google App Engine Java developers, > > Gig (Google app engine Innovation Gear) 0.3.0 has been rel

[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 google-appengine-java@googlegroups.co

[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 wrote: > You mean you have reserved instances? IMO you would still need to take care > of your load time as new instances are spun off when your tr

[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 google

[appengine-java] Deferred Task with non default queue

2011-04-21 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 mes

[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 wrote: > Can DeferredTask also be configured to have retries? -- You received this message because you are subscribed to the Google Groups &quo

[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 wrote: > Is it possible to use Deferred Tasks outside the defa

[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 ema

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

2011-04-22 Thread Marcel Overdijk
configured in queue.xml Can somebody confirm this? On Apr 22, 11:13 am, Marcel Overdijk 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. > &

[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 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

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

2011-04-27 Thread Marcel Overdijk
the queue.xml is not picked up or I did something wrong? Thanks for your help and patience, Marcel On Apr 27, 12:09 am, Gianni Mariani wrote: > On Wed, Apr 27, 2011 at 4:19 AM, Marcel Overdijk > wrote: > > > But is it possible to change queue settings for Deferred task? >

[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 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

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

2011-05-06 Thread Marcel Overdijk
bump PS: I haven't tried this on Google production infrastructure, so I'm wondering if it might only be a problem in dev mode? On Apr 28, 9:33 pm, Marcel Overdijk wrote: > Can anybody confirm Deferred task should work with settings in > queue.xml? > > On Apr 27, 11:28 am,

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

2011-05-07 Thread Marcel Overdijk
ion environment?  If so, let me know > what your app id is. > > g > > On Apr 27, 7:28 pm, Marcel Overdijk wrote: > > > > > > > > > Hi Gianni, > > > If I understand correctly I can use the default handler for any > > deferred task and thus

[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 - l

[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
his 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

[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 google-appengine

[appengine-java] Re: Application Title available?

2011-06-04 Thread Marcel Overdijk
wrote: > Make that System.getProperty("com.google.appengine.application.id") > instead... no parsing > > On Jun 3, 9:53 pm, Nichole wrote: > > > > > > > > > You could parse your xml file or parse the System variable called > > user.dir.

[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 google-appengine-java@googlegrou

[appengine-java] Re: Does AppEngine support Servlet 3.0 ServletContainerInitializer

2011-06-08 Thread Marcel Overdijk
Silly me, already starred this some time ago... Thanks anyway Jeff. On Jun 8, 10:26 pm, Jeff Schnitzer wrote: > Unfortunately GAE does not support Servlet 3.0. > > Please star:  http://code.google.com/p/googleappengine/issues/detail?id=3091 > > Jeff > > On Wed, Jun 8, 201

[appengine-java] Creating a movie from images

2011-06-16 Thread Marcel Overdijk
Is there a way to process images (e.g. stored in the blob store) and create a movie in the form of a slideshow? Maybe using the backend services? -- 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] 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 st

[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 google-appengin

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 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 there are any ide

[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 diffe

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

2011-07-22 Thread Marcel Overdijk
ams Engineer, Google App Engine > Blog:http://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 > wrote: > > > > > > > > > Everybody knows about load

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

2011-07-22 Thread Marcel Overdijk
ty bad to me ... > > 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 2:37 PM, Marcel Overdijk > wrote: >

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

2011-07-22 Thread Marcel Overdijk
: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 > wrote: > > > > > > > > > Yes might be, but frameworks like Grails need a longer startup time

[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 wrote: > To answer my own question, this has been my best shot this far: > > SecurityManager sm = System.getSecurityManager(); > localDevelopmentEn

[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 googl

[appengine-java] Re: Import/export for Java

2009-11-25 Thread Marcel Overdijk
> http://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 > wrote: > > > > > > > I'm wondering how the Java uti

[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 En

[appengine-java] Re: Meassuring Loading Request

2009-12-18 Thread Marcel Overdijk
istener? On 18 dec, 09:42, Marcel Overdijk wrote: > Onhttp://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 t

[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 wrote: > Hello, > > I'm trying to include some tag library descriptors at the top of all > my jsps. > >         >                 >                         *.jsp >                         /META-INF/tlds.jspf >        

[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 messa

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

2009-12-22 Thread Marcel Overdijk
bug. > > On Dec 22, 12:31 pm, Marcel Overdijk 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 differe

[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 dep

[appengine-java] Re: --enable_jar_splitting

2009-12-22 Thread Marcel Overdijk
e 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

[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 pinpoint

[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 poss

[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 wrote: > Just deployed a very simple Spring 3.0 application successfully. At > least the deployment process

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

2009-12-22 Thread Marcel Overdijk
if this is a GAE setting somewhere or related to Google Apps. On 22 dec, 22:18, Roberto Saccon wrote: > that's not possible for many reasons explained many times here, but > you can map towww.footdex.com, that is what people usually do. > > -- > Roberto > > On Dec 22, 6

[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 wrote: > Never my for now. I was looking at the admin logs instead of the > "normal" logs. I see now ex

[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 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 > and UrlRewri

[appengine-java] Re: --enable_jar_splitting

2009-12-23 Thread Marcel Overdijk
rrently supports this.  Feel free > to file an issue in our issue tracker. > > On Tue, Dec 22, 2009 at 2:47 PM, Marcel Overdijk > wrote: > > > > > Hi Don, > > > The jar contains a lot of images so it doesn't matter that files need > > to be in the

[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 res

[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 google-appengine-

[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 wrote: > Hi, > > I configured a TimerFactoryBean through my Spring configuration file > which launched a ScheduledTimerTask in given time intervals for > performing some work. Locally when developing wit

  1   2   >