> So I if Tomcat is already running, why would the web browser be
> displaying raw, un-compiled code? I assume there has got to be
> something that was not setup correctly on this box. Any ideas of
> things I can check?
Because you're serving the JSP through your web server, not through Tomcat.
> I am working with Tomcat 5 for the first time in on a Unix machine.
> Apache seems to be working ok, serving up static HTML, but all my
> JSP's are displaying in the browser as inline code. My assumption is
I assume by "Apache" you mean their "Web Server" product. Tomcat is from
Apache, too, you know.
You can have Web Server forward JSP requests to Tomcat for service, but bear
in mind that according to
<http://tomcat.apache.org/tomcat-6.0-doc/connectors.html>
> When using a single server, the performance when using a native webserver in front of the Tomcat instance is most of the time significantly worse than a standalone Tomcat with its default HTTP connector, even if a large part of the web application is made of static files.
How did you deploy your application to Tomcat? You did copy a WAR file to the
${CATALINA_HOME}/webapps/ directory, didn't you?
Can you see your application by accessing it directly from Tomcat, without
passing through Web Server?
If not, then it isn't correctly deployed to Tomcat. If so, then the
connection between Web Server and Tomcat is at issue.
There is some stuff about connecting the two at
<http://tomcat.apache.org/connectors-doc/>

Signature
Lew