On Sat, Nov 8, 2014 at 3:03 PM, <[email protected]> wrote: > What I need to do is to pass a string from my Rails app to the GAE module > (possibly in JSON format?) and have it run some tests on the string, before > returning a boolean, or some result string. So not a full app, no front > end, it just needs to run some tests and return a result. > > What would be the simplest way to do this? Is there a go-to framework for > small GAE-java apps with no front end, that just run some calculations on > an input and provide an output? > > My guess is that using Gaelyk + GSON would be the way to go, but I have > some external java jars that I would need in the module - can Groovy/Gaelyk > integrate java jars? >
It sounds to me like you're describing an Endpoints application <https://cloud.google.com/appengine/docs/java/endpoints/> - pull in JSON, process, send back processed JSON results. Bonus: you don't need to build a front end if you don't want to, and you can include your Java libraries into an Endpoints app. ----------------- -Vinny P Technology & Media Consultant Chicago, IL App Engine Code Samples: http://www.learntogoogleit.com -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/d/optout.
