Hi all,

What should I do to deploy a JSP page that uses a Java Bean into JBoss 3.0.0 + Tomcat 4.0.3 without getting any error messages or exceptions

I've tried to do that several times, and haven't succeeded at all!

I'm using JBuilder 8 Enterprise Edition to code the JSP and the Bean, it creates a war file with the folling structure:

================================================
project.war\META-INF\MANIFEST.MF
project.war\WEB-INF\classes\project\bean.class
project.war\WEB-INF\lib\...
project.war\WEB-INF\web.xml
project.war\Jsp.jsp

NOTE: project is the package where the bean is placed
================================================

Whenever I deploy this file into the deploy folder of JBoss and run the jsp file in my browser (http://localhost:8080/project/Jsp.jsp) I get a file not found error, the missing file is named web.xml, I also get the following error page:

==================================================================
Apache Tomcat/4.0.3 - HTTP Status 500 - Internal Server Error

--------------------------------------------------------------------
type Exception report

message Internal Server Error

description The server encountered an internal error (Internal Server Error) that prevented it from fulfilling this request.

exception

org.apache.jasper.JasperException: project.JspBean
at...
==================================================================


I'll very thankful to anyone who can help me on this...