[appengine-java] Re: NoResultException causes rollback transaction why?

2011-03-25 Thread lp
ok this looks like Spring transaction issue. when the @Transactional is removed the NoResultException does not affect the commit. this is f#$$ -lp -- 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: NoResultException causes rollback transaction why?

2011-03-25 Thread Perun Katana
Hi, according to the JPA spec, the NoResultException should not cause transaction rollback, but seems some JPA implementations of the JPA violate the rule http://forum.springsource.org/showthread.php?t=43547 I was lazy to test it by myself, but at the forum is a way to force specific exceptions n

[appengine-java] Re: Does anyone use cloudcover for running junit tests on appengine?

2011-03-25 Thread Mike Lawrence
this one works really well locally and on gae http://code.google.com/p/ktrwjr/ On Mar 22, 5:58 pm, Brendan Doherty wrote: > At Google I/O last year, Max Ross gave an interesting talk on a unit test > harness that let you run existing test suites in production on Google App > Engine call cloudcov

[appengine-java] Re: ImagesServiceFactory.makeImageFromBlob(blobKey) > image.getImageData() > gets NULL error >

2011-03-25 Thread branflake2267
Scale your image on the client side. GWT/HTML has many options to work with and I'm in love with that! http://code.google.com/p/gwt-examples/wiki/gwt_hmtl5 Brandon Donnelson http://gwt-examples.googlecode.com http://c.gawkat.com -- You received this message because you are subscribed to the Go

Re: [appengine-java] any where i can hire people to do development on app engine in singapore?

2011-03-25 Thread Luca Matteis
Just hire good Java developers. Competent Java developers are also competent Google App Engine developers. On Wed, Mar 23, 2011 at 7:00 PM, Elvin Li wrote: > looking for competent developers > > -- > You received this message because you are subscribed to the Google Groups > "Google App Engine f

Re: [appengine-java] Get User instance by email

2011-03-25 Thread Ido Ran
Ok, so how can I get userId based on email? Can I get User instance by userId? Thanks, Ido -- 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

[appengine-java] Re: gae gwt - to serve compressed java script

2011-03-25 Thread pac
Will appreciate any suggestions to fix this On Mar 24, 12:02 pm, pac wrote: > Hi Didier, > > Yes, I have looked into this. > It says if request has gzip then app engine will supply compressed > contents. > > So in this case request does have gzip i.e. > > Accept-Encoding: gzip,deflate > > But it

[appengine-java] Need some help with GWT / GAE and serialization - I'm missing something

2011-03-25 Thread Chris Moore
I have an app that uses GWT and GAE. I recently looked at it after not having done anything with it for a long time. Since the App Engine SDK and the GWT SDK had new versions since the last time I looked at it I upgraded to the latest: GAE 1.4.2 and GWT 2.2.0. I'm able to run the app locally

[appengine-java] Re: Disable Eclipse DataNucleus Enhancer from maven-eclipse-plugin?

2011-03-25 Thread Ryan Peden
You could try removing the maven-datanucleus-plugin section the plugins section of your project's pom.xml. Try commenting it out first to make sure your project builds as expected without it there. :) On Mar 23, 8:26 pm, Philippe Beaudoin wrote: > Hi! > > My project uses Objectify and therefore d

[appengine-java] looking for speakers for talks on App Engines

2011-03-25 Thread Chris Westin
Hello, I organize the speakers for the SF Bay Area Large-Scale Production Engineering Meetup (http://www.meetup.com/SF-Bay-Area-Large-Scale- Production-Engineering/). For our event on the evening of Thursday April 21st, I'm looking for speakers who can tell us about their use of App Engines (somet

[appengine-java] Re: Disable Eclipse DataNucleus Enhancer from maven-eclipse-plugin?

2011-03-25 Thread Philippe Beaudoin
There is no maven-datanucleus-plugin in my POM. The datanucleus is brought in by the Google Eclipse Plugin I believe. -- 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@googl

[appengine-java] Data via FTP

2011-03-25 Thread Doug
Good Afternoon All, In App Engine is there any way to get a file via FTP or have a file FTPed to the application? I wanted to be able to get a feed of data into my application from a vendor that only supports sending data via FTP. I did some initial searching and it appears that there is no way

[appengine-java] Turning class sharing off for the development server

2011-03-25 Thread Ian Marshall
Hello All, I want to profile my application using VisualVM while it runs on the development server. To do this well, the VisualVM documentation says that I need to turn class sharing off for the relevant (development server) JVM instance. I should do this by launching the (development server) appl

Re: [appengine-java] Data via FTP

2011-03-25 Thread Ikai Lan (Google)
Nope, we don't have an FTP API. There's an open feature request for socket access: http://code.google.com/p/googleappengine/issues/detail?id=2576 There's also a more specific FTP issue, but I feel like the socket access issue is more likely to happen since it is a bigger enabler than specificall