Is GWT RPC distinct from AJAX?

How is the RPC (Google Web Toolkit) RPC (remote procedure call) for asynchronous operations from the browser / javascript to the server different or similar to an AJAX call?

If they are different, can someone help me understand how they are different?

I also heard that this RPC implementation does not work with all Server containers. For example, the GWT project did not work in Apache Tomcat.

Also, is this an RPC arbitrary implementation of Google or a standard implementation?

+8
ajax web gwt gwt-rpc websphere-7
source share
1 answer

1) GWT RPC uses AJAX to enable data transfer for GWT applications.

2) GWT RPC abstracts a lot of information and wraps ajax so that you can encode JAVA without worrying about different browsers.

3) It WORKS in tomcat, jetty and in every server container. In some cases, people misconfigure the paths (dev vs production mode causes confusion in the image / css path)

4) RPC is really a CUSTOM implementation from Google.

+10
source share

All Articles