I wrote a program meant to serve as a customized form for a google
spreadsheet. It's a a fairly standard Web Application project: a
client-side class handles form i/o through the html. Collected
information is sent to the server-side class through RPC, and the
server uses the GData API to locate the right worksheet on the right
form, where it adds the data. Results are returned to the client-side,
and that should be it.
While all that now works, the program becomes sluggish (the task
managers says that the process gets up to around 80 megabytes). Worse,
I haven't figured out how to make it terminate, and each run (so far,
only tried out in Eclipse+browser tests) leaves a process alive
indefinitely.
system.exit(0) consistently leads to a runtime error:
"The method exit() is undefined for the type System"

It could be because of the interaction with the html, or else because
I'm violating some Eclipse convention... I wouldn't know, being so
inexperienced. How have other people solved it?
Thanks.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to