Tuesday, July 22, 2014

general question about data handling

i am new to gwt and a fairly inexperienced developer.  i have written a java project that steps a user through an interview.  the structure is based on a linked list.  each node contains an object that consists of five string fields and one hash table.  the data file is in xml format and i use dom to populate the nodes.  the front end gui presents either a set of check boxes or radio buttons as response choices to a question.  there are four buttons: accept as is and go to the next node, go back, ignore the choices and type freely, and accept the choice but add to it.  nothing fancy but it works.

i am trying to convert the project to a web ap.  the client side gui is no problem.  but i am having difficulty conceptualizing the data exchange.  in my mind, everything should be processed on the server side and then the data object can be passed back to the client where gwt can do its html magic conversion.  but i can't find a lot of info on this type of structure so i am starting to think my concept is wrong.    almost every piece of info i can find including the gwt tutorial sends the data directly to the client.  if that is the case, what is left for the server to do?  and does that create security problems by having everything available on the client side?  also. i just read that gwt doesn't really support linked lists so i am not even sure that i can use that structure on the client side.  

any help would be appreciated.

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment