I've been using Rhino on GAE for over a year now and I'm happy with it. I haven't run into any compatibility issues. If you want it to, it even compiles your javascripts to java bytecode on the fly which makes it even faster. Also Rhino won't do extensive classpath scanning that would add to your instance startup time.I'm just wondering why wanted to go that road in the first place. Isn't your phonegap app meant to be run on the phone? The kind of backend service and its implementation language shouldn't matter at all. Maybe I did get you wrong.Greetings - Wolfram
--
You received this message because you are subscribed to a topic in the Google Groups "Google App Engine" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-appengine/4HNuju25BGg/unsubscribe?hl=en.
To unsubscribe from this group and all its topics, send an email to google-appengi...@googlegroups.com.
To post to this group, send email to google-a...@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
So I have a java web application on GAE with a datastore. There is also a mobile application for android that takes and writes data on the datastore through json and servlet, and the data model is written in java (there is a conversion of data and a synchronization with the datastore and not a direct access from this app). Now I want to write a new application with phonegap to have an android-ios-windows application, but now the data model is completely in javascript. So I don't know how share datasore between web and mobile application.
Yes, I have and Android app that writes on GAE via json. The idea is to use the PhoneGap framework to write an app available for Android, iOS and WP without write every app in its own language but just changing some configuration files and using javascript and css. So I have to write this new app with its several configurations file and then I can choise a method (rhino, or json+servlet+xhr, or your linked example) to communicate with datastore. Is it right?