• 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 do I set weblogic.properties for jsp and servlets?

 
Ranch Hand
Posts: 40
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I've lately tried setting the jsp parameters in the weblogic.properties file in all sorts of ways, without success. My latest effort is:
weblogic.httpd.register.*.jsp=\
weblogic.servlet.JSPServlet
weblogic.httpd.initArgs.*.jsp=/d:/myserver/public_html
compileCommand=/d:/jdk1.2.2/jre/lib/ext/servlet.jar
workingDir=/d:/weblogic/myserver/classfiles
I have a jsp page (that I know works) stored in d:\weblogic\myserver\public_html. My .jar servlet compilation files are stored at d:\jdk1.2.2\lib\ext. I'm running Windows NT 4.0.
What settings in the weblogic.properties file will enable the successful execution of Java Server Pages and Servlets?
 
Greenhorn
Posts: 18
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi
it looks u r not setting your properties file properly
try to as follows, u will get it.
weblogic.httpd.register.*.jsp=\
weblogic.servlet.JSPServlet
weblogic.httpd.initArgs.*.jsp=\
pageCheckSeconds=0,\
compileCommand=c:/jdk1.2.2/bin/javac.exe,\
workingDir=d:/weblogic5.1/myserver/classfiles,\
verbose=true
# workingDir=d:/weblogic5.1/myserver/classfiles,\
# packagePrefix=,\
 
Greenhorn
Posts: 17
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
alagan i did not find classfiles in d:\weblogicd:/weblogic5.1/myserver
Do i have to create the classfiles folder.
workingDir=d:/weblogic5.1/myserver/classfiles,\
 
reply
    Bookmark Topic Watch Topic
  • New Topic