Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GWT support for HTML5

Does GWT support HTML5? I mean especially Canvas and WebSockets?

Regards

like image 478
cubesoft Avatar asked Dec 28 '22 08:12

cubesoft


2 Answers

Maybe this video (from Google developers) can be of interest

http://www.youtube.com/watch?v=aW--Wlf9EFs

like image 168
Federico klez Culloca Avatar answered Dec 31 '22 13:12

Federico klez Culloca


Most browsers still do not support these technologies without plugins, therefore direct support is not available.

WebSockets requires support from the server also, once again most servers do not support it yet. for WebSockets in GWT You could download this and use it:
http://code.google.com/p/gwt-websockets/

For the HTML5 Canvas look here:
http://code.google.com/p/gwt-canvas/
or here:
http://code.google.com/p/google-web-toolkit-incubator/wiki/GWTCanvas

like image 25
Romain Hippeau Avatar answered Dec 31 '22 13:12

Romain Hippeau