-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Robert Lang wrote: [...] > - java.io.FileWriter is not supported by Google App Engine's Java > runtime environment > - java.io.FileWriter is not supported by Google App Engine's Java > runtime
That is correct. You cannot write to files using App Engine. You need to use their database instead --- I'd suggest joining the App Engine Java mailing list. > Is really possible to use file writer in the server side? *GWT* doesn't care what the server does, as it's (mostly) a client-side technology. *App Engine* is a server-side technology, and so does. Your app has got both GWT and App Engine enabled, so it's complaining because you're trying to do something App Engine doesn't support. If this isn't intentional, change your project properties to turn off App Engine and then you'll be writing traditional servlet code. - -- ┌─── dg@cowlark.com ───── http://www.cowlark.com ───── │ │ "People who think they know everything really annoy those of us who │ know we don't." --- Bjarne Stroustrup -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iD8DBQFKpD70f9E0noFvlzgRAs2AAJ9QC6ffNC95UY3qLgRlN6vrrES7WwCfZgC/ kjY0EqwkLBqdFcRFryaTY5I= =xecA -----END PGP SIGNATURE----- --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en -~----------~----~----~----~------~----~------~--~---
