As GWT translates java-code to JavaScript: is it afterwards possible to run a page without a backingserver? Like just production the html,css,js folder and just running it in a browser without a server?
Especially when using GWT with Canvas?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Absolutely, yes. If you don’t have a need for a server then, well, you don’t need a server.
Note: you’ll have to use the
xsiframelinker if you intend to serve the files from disk rather than HTTP. In most browsers thestdlinker (the default linker) won’t work withfile://URLs.