> 1)The question I have is where will the JSP's reside. > will they be deployed on the web-server or the > application server. >
JavaServer Pages (JSPs) help build the HTML that will be rendered on the client (browser). Since one person's application server is not in another's lexicon, let me say that JSPs must reside in the environment of a servlet container (such as Tomcat). A plain web-server (such as IIS or Apache) wouldn't know that to do with them. A web-server deals only with HTML artifacts. JSPs on the other hand can be comprised of HTML tags, specialized tags and Java code. Everything get converted (I am glossing over the details here) into HTML before getting routed back to the client. Some servlet engines (such as Tomcat) serve dual roles -- as web-server and as a servlet engine. > 2)where will struts reside,I think anwser to the first > question should answer this. > Needs a servlet container. > Thanks > Gopi > Sri --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]