We have used GWT-Platform MVP UI framework with GWT RPC calls using GUICE service layer. As of now we have for every service call, a serivce class, service result class and an action handler which are handled by guice/gin. Now the idea is to convert these rpc calls to Restful webservice calls using JSON. I have the following questions with respect to this change.
a. Existing service, serviceresult class on GWt side and Action Handler on server are specific to GWT rpc calls. Hence we need to ignore these and write seperate Restful WS resources for each of these service calls. Am I correct? b. I could see that JerseyServletModule can be used along with GUICE to build Restful WS. Should we go ahead and implement this or do we have any other best approach for the same which is more standardized and efficient? c. As part of RPC call, many entity/model classes are used in to and fro calls. Now these have to be transferred as JSON format data. Do we have any good JSON parsers which can create JSON data and parse it? One or two JSON parser which I found could not be used on GWT side to prepare JSON data. Kindly advice. If somebody has a good example with the above technical stack, please provide. Thanks in advance Santosh -- You received this message because you are subscribed to the Google Groups "google-guice" 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-guice?hl=en.
