> From: john S [mailto:[email protected]] > Subject: Re: HELP ME PLEASEEEEE--------------->first login page SSI is > not getting enabled > > <servlet-mapping> > <servlet-name>ABC</servlet-name> > *<url-pattern>/XYZ/login</url-pattern>* > </servlet-mapping>
What do you expect the above mapping to do? As you have it, the ABC servlet will only be invoked for the URL http://myhost[:port]/myapp/XYZ/login Is that what you want? > <welcome-file-list> > <welcome-file>*com/xyz/abc/servlet/login.html*</welcome-file> > </welcome-file-list> The above is wrong; it should be just login.html, not the full path. > <servlet-mapping> > <servlet-name>ssi</servlet-name> > <url-pattern>*.html</url-pattern> > </servlet-mapping> The above will cause the SSI servlet to be called for *every* HTML page on your web site; do you think that's desirable? - Chuck THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY MATERIAL and is thus for use only by the intended recipient. If you received this in error, please contact the sender and delete the e-mail and its attachments from all computers. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
