Appengine and GWT - feeding python to some java

I understand this is a dated question, since appengine is now part of java, but I have an app app app for python that I want to get through GWT. Python is better suited for server-side text processing (using pyparsing, of course!). I tried to interpret client side RPC on the client side, and this is minimized since there is no python counterpart (python-gwt-rpc is deprecated). I was just trying to use JSON and RequestBuilder, but this fails when using SSL. Does anyone have a good solution to host the GWT interface in an app app app for python?

+3
source share
4 answers

The only alternative (if I may say so) that I am familiar with is Pajamas . Obviously, this is more a replacement for GWT than a replacement for GWT-RPC. Other than that, I think you would be stuck writing your own communication layer using some kind of REST protocol.

+1
source

Perhaps you can take a look at the GWT JSON RPC example .

If this fails, there are always several implementations of the XML parser in Python and Java :)

0
source

Python GWT. Jython? Googling "pyparsing jython" , , , Jython.

0

Source: https://habr.com/ru/post/1713608/


All Articles