• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

How to run jsp page using apache-tomcat-5.5.27 & jdk 1.5.0

 
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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 with value

.;C:\apache-tomcat-5.5.27\common\lib\servlet-api.jar;C:\apache-tomcat-5.5.27\common\lib\jsp-api.j

ar . 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.
[ October 26, 2008: Message edited by: Bear Bibeault ]
 
Bartender
Posts: 4179
22
IntelliJ IDE Python Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What kind of error code are you getting. Is it generated by Tomcat or by your browser?

Check firewalls. Your computer may have a firewall installed. You will have to make sure that port 80 is opened.
 
Sheriff
Posts: 67746
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Please do not ask people to email you the answer. Please read this for more information.
 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Here is Answer for running jsp page using apache-tomcat-5.5.27 & jdk 1.5.0" and can also be run in 1.6 :

Save your JSP file in path - C:\Program Files\Apache Software Foundation\Tomcat 5.5\webapps\jsp-examples\jsp2
And then in browser type URL as :

http://localhost:8080/jsp-examples/jsp2/filename.jsp

You will surely see your o\p now...

See its so easy...just try it....

Bye...
reply
    Bookmark Topic Watch Topic
  • New Topic