You can install plugins or extension that will allow IIS to serve Servlets and JSP pages. Two such products that are easily configured are Tomcat and Resin.
Personally I perfer Resin because I think it is easier to install and offers better performance than Tomcat. Both support Servlet 2.3 and JSP 1.2. Both are free for personal use. Tomcat is completely free, Resin charges a fee for commercial use.
Wushutwist
Basic things are just as simple in JSP as they are in ASP. But to really take advantage of JSP pages you need to know Servlets. I recommend getting Jason Hunter's book on Servlet Programming. It is definitely the best book written on the subject. In the beginning it may all be a bit confusing but it will definitely make you a better programmer and allow you to take full advantage of JSP.
The important thing is to realize where JSP falls in the grand scheme. JSP should really only be used for presentation. Any real logic should be done in EJB/Beans and possibly Custom Tags (though I am not a real big fan).
I find that the Model-View-Controller (MVC) pattern works like a charm with JSP. EJB/Beans serve as the Model, JSP is the View, and Servlets take the role of Controller. For a good introduction to MVC as it relates to JSP/Servlets read Hans Bergsten's JavaServer Pages. I am not thrilled with the technical detail of the book but it is a good introduction for beginners on JSP and MVC.
Wushutwist
Essentially Session EJBs are equilvalent to COM objects. There is no Microsoft equilvalent for Entity or Message EJBs though. EJBs tend to be alot more powerful than COM objects, for various reasons. There are a bit more complex though. Wushutwist
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.