ME 383 on 3.0.1 on WinXP sp2.
Test j2ee servers: Tomcat 5 versus Jboss 4.01
ME Web project, containing ONE file, either index.html or index.jsp.
Deploy: To Tomcat: Ok. To JBoss: OK.
Run: On Tomcat via: http://localhost/1webB/index.jsp, OK.
Run: On Jboss via http://localhost:8080/1webB/index.jsp *ERROR 404*.
Both servers are up and running other previous deployed apps ok.
Also a mention, just by calling the root, even on the Tomcat it gives me the directory listing, with the 1 index.jsp, and runs after clicking on it.
here is the simple web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<welcome-file-list>
<welcome-file>/index.html</welcome-file>
</welcome-file-list>
</web-app>
After going nuts with jboss on a ejb/war project, I finally reduced it to this simple scenario. What the heck am I missing?
Thanks;
-nat