Re: GWT Server side programming

2010-01-08 Thread rjcarr
There really is no such thing as a "master servlet", at least not in the sense that it dispatches to other servlet. All servlets should be relatively independant. What you need to do is create your servlets (classes that inherit from HttpServlet), or if they are already created and in your classp

GWT Server side programming

2010-01-08 Thread octopus
I've been trying to figure out how to add existing servlets to a GWT project in eclipse. I have a master servlet running, and I want to dispatch requests to other servlets running on the same server. These servlets are other open source web applications that are available for download. Can someon