I've been searching the web for a Apache Shindig Java port to Google App Engine, but I only found a Python version. Is there a Java port? or are there blocking dependencies that make it very hard to port Apache Shindig to Google App Engine (besides the database part)?
feedback
|
|
Unfortunately, there is currently no GAE Java port of Apache Shindig. However, you do have options:
Read below for more details: Use Jython to port Python-GAE to java-GAE: The main advantages of using the Jython abstraction are as follows:
On a side note, I have a version of the JQuery Form Builder Plugin running on the Java SDK:
Jython is a similar abstraction that may help in a similar manner and avoid the need to rewrite most of the code. Read more below about Jython development on Google App Engine: Jython Development on Google App Engine Avoid trying to port from Java-non-GAE to Java-GAE The Java version of the OpenSocial application is multithreaded, so it will have a lot of trouble running on App Engine. Moreover, it's definitely easier to port the PHP version to Java, as App Engine doesn't support multi-threading at this time, and the PHP version is most likely not multi-threaded. As a result, this is why the Python OpenSocial port's roots belong to the PHP version of Shindig/OpenSocial and not the Java port. I suggest following their lead and doing the same, if you do decide to port from the non-GAE version. | |||||
feedback
|
|
There doesn't seem to be a project which specifically runs on Java on the Appengine. However it should be possible to port the current java version to Appengine as there is a python version which has the same limitations. | |||
|
feedback
|