sohail1u schrieb: > Till now I am using servlet to fetch the data from the databse and > then the servlet send those data > to a jsp page for displaying those data.
If I understand you right, you have a JSP-page that is requesting data from a servlet by calling a URL and parse the data that is sent by the servlet as response. So your servlet is sending something like a CSV-file and not a HTML-page that is included into some part of the JSP-page itself? > Now i want, instead of jsp > can we call we pass those data to a GWT page for displaying. If yes If the above is the case, you can use RequestBuilder for building a HTTP-request that is calling the servlet. The data you receive in return can be parsed more or less the same like you parse it in the JSP-page and create and add widgets (like labels or Grids) to the GWT-application that show this data. Regards, Lothar --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
