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

2010-06-16 Thread Sudhir Ramanandi
Congratulations for the release.. But It's to sad to see no updates on datanucleus/JPA side. Really google is giving too little attention to Datanucleus plugin ~SN On Thu, Jun 17, 2010 at 9:19 AM, Andrei wrote: > What is "Remote API commands"? > > On Jun 16, 2:06 pm, "Ikai L (Google)" wrote:

[appengine-java] Unable to URL Fetch Google chart

2010-06-16 Thread brianl
A URL Fetch of a Google chart fails. Attempting w/ the low level API in the development environment... String chart = "http://chart.apis.google.com/chart?chs=250x100&chd=t: 60,40&cht=p3&chl=Hello|World"; FetchOptions options = FetchOptions.Builder.disallowTruncate().followRedirects(); HTTPReques

[appengine-java] Re: GAE deployments high rate of failures

2010-06-16 Thread Tristan
had the same problem... all deployment issues went away with 1.3.4 (and you can now have 100 versions per app - someone said ... neat) On Jun 16, 2:13 pm, Jerome wrote: > Hi Don, > > Now that is a good incentive to upgrade :-) (we are still on 1.3.2 > indeed). > > Jerome > > On Jun 16, 5:18 pm, D

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

2010-06-16 Thread Andrei
What is "Remote API commands"? On Jun 16, 2:06 pm, "Ikai L (Google)" wrote: > Hey developers! What > > We've release the prerelease SDK for 1.3.5. Get it here: > > http://code.google.com/p/googleappengine/downloads/list > > If you want to try out new features locally before they go live, here's y

[appengine-java] AppEngineConfigException: XML error validating on Uploading files using "Deploy App Enginer Project"

2010-06-16 Thread Nick
Hi, What steps will reproduce the problem? 1. On my local machine, I have a text "ssma_stud.txt" under folder "WEB-INF/ ssma_std.txt". I read this text file, validate data. Its working fine. 2. After successful testing on local machine, while deploying it using "Deploy App Eng

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

2010-06-16 Thread Andrés Cerezo
Why are not included all the demos of the svn? For example: autoshoppe . Thanks. 2010/6/16 Ikai L (Google) > Hey developers! > > We've release the pre

[appengine-java] Re: GAE deployments high rate of failures

2010-06-16 Thread Jerome
Hi Don, Now that is a good incentive to upgrade :-) (we are still on 1.3.2 indeed). Jerome On Jun 16, 5:18 pm, Don Schwarz wrote: > Try upgrading to the 1.3.4 SDK. > > On Wed, Jun 16, 2010 at 10:14 AM, Jerome wrote: > > Same here, for the past few weeks, deploying our application to GAE > > of

[appengine-java] Re: GAE commercial use!

2010-06-16 Thread Houston startup coder
Check this out: http://code.google.com/appengine/business Stephen On Jun 16, 3:07 am, Muhammad Ijaz Khan wrote: > Yes, I have started reading it now, it looks good :) thanks. > > Any comment on commercial grade system deployment using appengine for java? > > On Wed, Jun 16, 2010 at 6:33 AM,

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

2010-06-16 Thread Houston startup coder
I'm liking Slim3 so far. It has a fast wrapper for the low-level API that does not use reflection (meaning it's even faster than frameworks that do). Plus it has some basic web framework helpers as well. Stephen On Jun 16, 12:34 am, nicolas melendez wrote: > +1 Objectify > > But give a chan

[appengine-java] Prerelease SDK 1.3.5 is out!

2010-06-16 Thread Ikai L (Google)
Hey developers! We've release the prerelease SDK for 1.3.5. Get it here: http://code.google.com/p/googleappengine/downloads/list If you want to try out new features locally before they go live, here's your chance. We welcome any feedback you have. Release notes for Java are below: Version 1.3.5

[appengine-java] JSP compilation gets stuck with simple Spring Roo project with dummy.jsp

2010-06-16 Thread Tomi Laurell
I created project with Spring Roo: >project --topLevelPackage my.tryouts >persistence setup --provider DATANUCLEUS --database GOOGLE_APP_ENGINE >entity --class ~.domain.MyEntity >field string --fieldName name >controller all --package ~.web >perform eclipse No I added empty dummy.jsp to src\main\

[appengine-java] SAX Parser not working

2010-06-16 Thread Maulik Gordhandas
Dear All, I am taking an RSS file as an inputstream and trying to parse it using Sax Parser. I want the title & the description to be stored in an array list. The code is working perfectly as a Java Application but when implemented in App Engine it doesn't give me the result. The Code for the sam

[appengine-java] How to make Eclipse AppEngine+GWT plugin use proxy for update check.

2010-06-16 Thread Nick Lothian
Hi, When I debug an AppEngine+GWT project from Eclipse I get the message "Initializing AppEngine server". It stays on that for nearly 3 minutes before timing out (I'm behind a firewall). The stack trace is: INFO: Unable to access http://appengine.google.com/api/updatecheck?runtime=java&release=1.

Re: [appengine-java] Re: GAE deployments high rate of failures

2010-06-16 Thread Don Schwarz
Try upgrading to the 1.3.4 SDK. On Wed, Jun 16, 2010 at 10:14 AM, Jerome wrote: > Same here, for the past few weeks, deploying our application to GAE > often take 5 or more attempts (we are very happy when we can deploy on > the 2nd try). > > The issues we are getting rotate between: > - failure

[appengine-java] Re: GAE deployments high rate of failures

2010-06-16 Thread Jerome
Same here, for the past few weeks, deploying our application to GAE often take 5 or more attempts (we are very happy when we can deploy on the 2nd try). The issues we are getting rotate between: - failure after "Will check again in 128 seconds" - a message that we have too many versions (even thou

[appengine-java] Re: Intermittent Issue with Datastore Writes

2010-06-16 Thread shaz
Here is the code for reference. For background, there is a class called OMRUser which is a user class, and there is Location3 class. There is a one to many owned relationship between a user and locations snippet of USER class: @PersistenceCapable(identityType = IdentityType.APPLICATION) public cl

[appengine-java] Memcache namespace - setNamespace() deprecated in 1.3.4

2010-06-16 Thread Vaclav Bartacek
In SDK 1.3.4 the method MemcacheService.setNamespace(String ns) was deprecated. Instead of that one should use MemcacheServiceFactory.getMemcacheService(String ns). When using the new one, the name of the namespace is validated against pattern, but this validation is not done when calling the old

[appengine-java] Re: What is the best option for RPC (web services) on App engine?

2010-06-16 Thread dilbert
I posted a new bug report: http://bugs.caucho.com/view.php?id=4080 I would like to move further discussion about this issue to the proper place: http://groups.google.com/group/google-appengine-java/browse_thread/thread/c4fb4f414c425ca1 D. On Jun 16, 12:12 am, Jeff Schnitzer wrote: > I would close

[appengine-java] Re: SecurityException with Hessian on google app engine

2010-06-16 Thread dilbert
I posted a new bug report to the Hessian people: http://bugs.caucho.com/view.php?id=4080 There is also some information about this bug here: http://groups.google.com/group/google-appengine-java/browse_thread/thread/ccb9d0ff6b88545/ On Jun 8, 10:31 am, Matija wrote: > Any news about this Security

[appengine-java] Re: SecurityException with Hessian on google app engine

2010-06-16 Thread dilbert
I posted a new bug report to the Hessian people: http://bugs.caucho.com/view.php?id=4080 There is also some information about this bug here: http://groups.google.com/group/google-appengine-java/browse_thread/thread/ccb9d0ff6b88545/ On Jun 8, 10:31 am, Matija wrote: > Any news about this Security

[appengine-java] updating 2-3 entities

2010-06-16 Thread aswath satrasala
Hi All, I have roughly the following entities for the accounting application Invoice { @id double amount } Payment { @id double amount @embedded InvoiceApplied[] } InvoiceApplied { Long invoiceId double appliedamount } I get the Payment amount, then I apply the payment amount to various invo

Re: [appengine-java] Re: GAE commercial use!

2010-06-16 Thread Muhammad Ijaz Khan
Yes, I have started reading it now, it looks good :) thanks. Any comment on commercial grade system deployment using appengine for java? On Wed, Jun 16, 2010 at 6:33 AM, Didier Durand wrote: > Hi, > > Go for this book > > http://www.amazon.com/Programming-Google-App-Engine-Infrastructure/dp/0596