• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

how to jump page like RequestDispatcher.forward(...)

 
Ranch Hand
Posts: 308
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
in traditional servlet, jsp,
jsp set action to servlet, then servlet call requestdispatcher to another jsp. it is very easy to find reference about this.
in GWT,
I spend many time to search online but still no something like this jump page (from one jsp to another jsp through servlet),
all mention is just GWT-RPC, which the return page is still the same as calling page, any method to accomplish jsp(or html) to servlet to another jsp(or html)
using GWT-RPC or GWT in general?
 
Bartender
Posts: 11497
19
Android Google Web Toolkit Mac Eclipse IDE Ubuntu Java
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
GWT is typically a "single" page view where the data is refreshed and not the whole page. To change the data, you should be using GWT-RPC along with GWT History (in case you want to load a page "state")
 
peter tong
Ranch Hand
Posts: 308
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Maneesh Godbole wrote:GWT is typically a "single" page view where the data is refreshed and not the whole page. To change the data, you should be using GWT-RPC along with GWT History (in case you want to load a page "state")



thanks
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic