GWT. Can a non-GAE channel API be used?

Is the channel API a GAE function or a GWT function? Can I use the channel API with a simple GWT RemoteServiceServlet? (my application does not use GAE)

0
source share
1 answer

API channel API GAE, so yes, you can only use it in the GAE environment. If you plan to deploy your servlets to GAE, you can still use the feed API.

If you do not plan to use GAE as your server and use only GWT on the client / user side, then you can use other parameters, such as Comet (link for checking http://caucho.com/resin-3.1/examples/servlet- comet / for example). I don't know very well the other push APIs, but some searches will give you answers.

Also check out http://tomcat.apache.org/tomcat-6.0-doc/aio.html

+1
source

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


All Articles