This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
Please help I am unable to run jsp pages from apache tomcat-5.5.27 using jdk1.5 I have downloded binary code for apache tomcat 5.5.27.I set environment
variable named JAVA_HOME, with value where my jdk1.5.0 was.I also set CLASSPATH
mmon\lib\jsp-api.jar . I have changed port number from 8080 to 80 in the file
server.xml under folder conf.
I have uncommented these codes in web.xml file under conf folder. <servlet-mapping> <servlet-name>invoker</servlet-name> <url-pattern>/servlet/*</url-pattern> </servlet-mapping>I made <servlet>
<servlet-name>invoker</servlet-name> <servlet-class> org.apache.catalina.servlets.InvokerServlet </servlet-class> <init-param> <param-name>debug</param-name> <param-value>0</param-value> </init-param> <load-on-startup>2</load-on-startup> </servlet>a folder suppose name ak in folder webapps under
apache-tomcat-5.5.27. then in this folder i put jsp file as Hello.jsp and copy
WEB-INF file from root folder to folder name ak.after this I started apache
tomcat server.then I typed http:\\localhost\ak\Hello.jsp. Error required page
not found is coming.
I also made user name amit and add these code in file tomcat-users.xml file
under folder name conf <user username="amit" password="amit" roles="admin,manager"/> I again run apache server. and tyeped http:\\localhost\index.jsp welcome page is opeing. I login in manager login window using name amit and
password amit all applications are showing.my folder named ak also appears when I click it
again welcome page appears or error my jsp file Hello.jsp does not appear
please help me. I have tried much but I am not getting my jsp pages run.