Re: [google-appengine] Re: GAE java and javascript applications

2013-04-09 Thread Wolfram Gürlich
The json + servlet approach sounds fine to me. Ideally you won't have to write any new server-side code at all. Simply reuse the API you've already implemented for your android version. Just use XHR in phonegap to make the connection. Greetings - Wolfram -- You received this message because

Re: [google-appengine] Re: GAE java and javascript applications

2013-04-09 Thread Vinny P
On Monday, April 8, 2013 9:02:55 AM UTC-5, Mary wrote: 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

Re: [google-appengine] Re: GAE java and javascript applications

2013-04-09 Thread Maria Carmela Vitelli
Thanks Wolfram, I'll try! 2013/4/9 Vinny P vinny...@gmail.com On Monday, April 8, 2013 9:02:55 AM UTC-5, Mary wrote: 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

Re: [google-appengine] Re: GAE java and javascript applications

2013-04-09 Thread Maria Carmela Vitelli
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

Re: [google-appengine] Re: GAE java and javascript applications

2013-04-09 Thread Vinny P
On Tuesday, April 9, 2013 11:00:47 AM UTC-5, Mary wrote: 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

Re: [google-appengine] Re: GAE java and javascript applications

2013-04-09 Thread Maria Carmela Vitelli
Perfect! Thanks Vinny :) 2013/4/9 Vinny P vinny...@gmail.com On Tuesday, April 9, 2013 11:00:47 AM UTC-5, Mary wrote: 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

[google-appengine] Re: GAE java and javascript applications

2013-04-08 Thread Wolfram Gürlich
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

Re: [google-appengine] Re: GAE java and javascript applications

2013-04-08 Thread Maria Carmela Vitelli
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