[appengine-java] SortedSet and comparator-name JDO extension

2011-01-18 Thread akochnev
I have a one to many relationship in which I'd like to store the many side in a sorted set, e.g. : @PersistenceCapable(identityType = IdentityType.APPLICATION, detachable = true) public class Foo { @Persistent(mappedBy = foo) private SortedSetBar bars; } The datanucleus documentation

[appengine-java] Re: Freemarker and Unicode: On local: fine, on cloud: become question mark

2010-05-17 Thread akochnev
Freemarker has a way to specify the encoding of the files that you're dealing with. Look at freemarker.template.Configuration, more specifically : fmConfiguration.setDefaultEncoding(UTF-8); fmConfiguration.setLocale(Locale.US); fmConfiguration.clearEncodingMap(); You can

[appengine-java] Re: appId not set error in development when using datastoreservice

2010-05-11 Thread akochnev
Rajat, did you find a way around this ? I'm running into the same issue and so far haven't been able to figure out a way around it. I'm using JDO to perform the data access but the overall result seems to be the same. The app works find when deployed to GAE, this only seems to be something

[appengine-java] Discussion on will-it-play-in-app-engine

2010-01-21 Thread akochnev
Tapestry 5.1 and 5.2-SNAPSHOT are now compatible w/ GAE, since the javx.xml.stream API was whitelisted , sample apps are at http://tapestry-test.appspot.com/ or http://ping-service.appspot.com/ -- You received this message because you are subscribed to the Google Groups Google App Engine for

[appengine-java] Re: Forwarding to Blobstore URL from existing servlet

2010-01-20 Thread akochnev
. Regards, Alex Kotchnev On Jan 20, 1:24 am, akochnev akoch...@gmail.com wrote: I'm trying to set up a file upload in my application based on SwfUploader (http://swfupload.org), and I'm coming to my wits end about how to proceed. I use Tapestry5 for my application (http:// tapestry.apache.org

[appengine-java] Forwarding to Blobstore URL from existing servlet

2010-01-19 Thread akochnev
I'm trying to set up a file upload in my application based on SwfUploader (http://swfupload.org), and I'm coming to my wits end about how to proceed. I use Tapestry5 for my application (http:// tapestry.apache.org/tapestry5.1) but I think for the most part that's beside the point. First, I create