Re: Google App Engine - best workflow

2009-05-15 Thread Kees-Jochem Wehrmeijer
Thanks for your suggestions! I think decompiling and altering the class is probably a little bit beyond my skill level. At first I tried to start a swank server from my servlet, but that failed because GAE doesn't allow you to open sockets. By decompiling and disabling that, I could probably

Re: Google App Engine - best workflow

2009-05-15 Thread John D. Hume
On Fri, May 15, 2009 at 6:02 AM, Kees-Jochem Wehrmeijer henc...@gmail.com wrote: beyond my skill level. At first I tried to start a swank server from my servlet, but that failed because GAE doesn't allow you to open sockets. By decompiling and disabling that, I could probably work This still

Re: Google App Engine - best workflow

2009-05-15 Thread Paul Stadig
I'm not a java security manager expert, but I've been playing with this a bit. Could you not do it the other way round? Start a REPL and run the server in the REPL, instead of starting a server and trying to run a REPL in the server? I got as far as setting up the classpath and doing:

Re: Google App Engine - best workflow

2009-05-13 Thread David Nolen
Since deployed GAE apps use something that works like Jetty you could just develop against Compojure and make sure you aren't doing anything that launches a new thread. Then do sanity checks against the dev server before deploying. This way you get the speed of REPL style development, and only get

Google App Engine - best workflow

2009-05-13 Thread Kees-Jochem Wehrmeijer
Hi everybody, I started playing with Clojure on Google App Engine. By following the experiences of others (http://elhumidor.blogspot.com/2009/04/clojure- on-google-appengine.html and http://www.fatvat.co.uk/2009/05/clojure-on-google-app-engine.html mostly) I was able to get something running

Re: Google App Engine - best workflow

2009-05-13 Thread Victor Rodriguez
On Wed, May 13, 2009 at 5:35 PM, Kees-Jochem Wehrmeijer henc...@gmail.com wrote: Hi everybody, I started playing with Clojure on Google App Engine. By following the experiences of others (http://elhumidor.blogspot.com/2009/04/clojure- on-google-appengine.html and