• 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

Configuring the Servlet Engine

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am having problem in compiling a servlet code under Linux platform. I am just having JDK 1.3.1 for Linux installed on my system. Could anybody please tell me where to get the servlet.jar file for redhat linux and how to set the class path
Thanks in advance
 
Ranch Hand
Posts: 135
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
For compiling servlet code download Java(TM) 2 SDK, Enterprise Edition which contains an implementation of the Java Servlet 2.3 specification
from
http://java.sun.com/j2ee/sdk_1.3/
Then edit /etc/profile file in Linux
add <j2ee_home_directory>/lib/j2ee.jar to the classpath environment variable
present in /etc/profile
eg:
if initially file cotains
classpath=".;$JAVA_HOME/bin"
make it
classpath=".;$JAVA_HOME/bin;/usr/j2ee/lib/j2ee.jar"
reply
    Bookmark Topic Watch Topic
  • New Topic