How can I call a GWT RPC method on a server from a non GWT (but Java) gapplication?

后端 未结 5 1108
感动是毒
感动是毒 2020-12-24 08:56

I have a regular Java application and want to access an GWT RPC endpoint. Any idea how to make this happen? My GWT application is on a GAE/J and I could use REST for example

5条回答
  •  余生分开走
    2020-12-24 09:30

    GWT SyncProxy allows you to access GWT RPC services (e.g methods) from pure Java (not JSNI) code.

    See http://www.gdevelop.com/w/blog/2010/01/10/testing-gwt-rpc-services/ for details.

提交回复
热议问题