• 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 Configuration Problem - Not Compiling

 
Greenhorn
Posts: 7
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi, I'm hoping someone can help me out.
I have IIS and Websphere installed.
It will handle *.jsp pages but doesn't seem to compile them.
eg.
<HTML>
<BODY>
time <%= new java.util.Date() %> Friday
</BODY>
</HTML>
Will display:
time Friday
CLASSPATH=c:\jdk1.3.1_07\lib
which i think might be the problem.
There are allot of jar files, what ones need to be in the CLASSPATH for jsp to work?
Thanks in advance.
Manni
 
Ranch Hand
Posts: 137
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
When you view the web page, right click and select "view source" (this is for IE, may be different for your browser). Check to see if your <%= ... %> tags are in the source - if they are, JSP is not being processed, and your browser thinks they are invalid HTML tags and doesn't display what's inside.
if this is the case, it isn't a classpath problem. check your webserver/appserver docs on how to hand off the JSP processing from the web server to the app server.
[ April 11, 2003: Message edited by: Jon Dornback ]
 
Manni Chiahan
Greenhorn
Posts: 7
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The tags are in the source. So JSP is not being processed.
Is there any way to check to see if the issue is on the IIS side or Websphere side?
because there is at least a weeks worth of documentions for both products.
Thanks
 
Manni Chiahan
Greenhorn
Posts: 7
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Any who thinks they may have Websphere install problems should check out [URL=http://publib7b.boulder.ibm.com/wasinfo1/en/info/aes/ae/rtrb_install.html]
 
I'm thinking about a new battle cry. Maybe "Not in the face! Not in the face!" Any thoughts tiny ad?
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic