• 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

JSP Delpoyment

 
Ranch Hand
Posts: 688
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm new to WebLogic, I try to test some JSP pages, but I'm having diifculty with it. I always get the 500 errors.
I put the pages under weblogic/myserver/public_html
My configuration is:
-----------------------------------------------------------------
weblogic.httpd.register.*.jsp=\
weblogic.servlet.JSPServlet
weblogic.httpd.initArgs.*.jsp=\
compileCommand=f:/java/jdk1.3/bin/javac.exe, \
workingDir=d:/weblogic/myserver/servletclasses, \
verbose=true
-----------------------------------------------------------------
document root is at: public_html/.
Any thing wrong with this?
 
Ranch Hand
Posts: 92
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

500 errors may occur because of compile errors. Do you have anything at System output? If you using IE, you can change one of the option so the error message may be more meaningful. Or you could use weblogic's jsp compilor to test you jsp.
My configuaration file is only one line different from yours:
workingDir=E:/weblogic/myserver/classfiles,\
reply
    Bookmark Topic Watch Topic
  • New Topic