Hi all, I would like to change my current servlet architecture to a Model 2 framework. What I currently have is one servlet that receives requests and then instantiates certain classes to perform actions. However the servlet is totally dedicated to one task. I now need to add some additional functionality which I want to encapsulate in the same package but not in the same servlet - But off course with my current framework I would have to create another servlet! That means two Servlets receiving requests - which I do not want to do. Question 1: how can I make my existing servlet into a class and create a Controller servlet that will Instantiate the two new classes when required (1.the old servlet now converted to a class, 2.The new class)? Question 2:Of course the other main question is that the existing servlet manages a shopping cart for a customer(s) - so when I convert the servlet to a class is there any issues I should be aware of?? The shopping cart is stored in the session object and the shopping cart servlet gets it, manipulates it, then puts it back into the session object for each customer. Cheers Marc =========================================================================== To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at: http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/jspfaq.html http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets