PLEASE  HELP ME Thanks in advance.

my package of java file is 

package ums;

My ear files contains following

output.jar
output.war
application.xml
manifest.mf

my jar file contains following

all class files with package path

manifest.mf

my war files contains following

all html files

web.xml

all classfiles with package under web-inf
 

*** My application.xml is listed below

<?xml version="1.0" encoding="ISO-8859-1"?>


<display-name>Jboss_Tomcat</display-name>



<web-uri>output.war</web-uri>
<context-root>/ums</context-root>



 

**** my web.xml is listed below

<?xml version="1.0" encoding="ISO-8859-1"?>

<!DOCTYPE web-app
PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
"http://java.sun.com/j2ee/dtds/web-app_2_2.dtd";>

<web-app>
 
   <servlet-name>EmployeeSelectServlet</servlet-name> 
    <servlet-class>ums/EmployeeSelectServlet</servlet-class> 
 


<servlet-mapping>
      <servlet-name>EmployeeSelectServlet</servlet-name>
      <url-pattern>/ums</url-pattern>
</servlet-mapping>



</web-app>

******

if i run my application under jboss i get following error message

1) i invoked Internet explorer with http://localhost:8080/ums
   html files are displayed

2) when I select a html file and click submit

It gives following error message.



*****   Error message   *****


HTTP Status 404 - /ums/EmployeeSelectServlet

--------------------------------------------------------------------------------

type Status report

message /ums/EmployeeSelectServlet

description The requested resource (/ums/EmployeeSelectServlet) is not 
available.


--------------------------------------------------------------------------------

Apache Tomcat/4.1.24-LE-jdk14


****

Thanks again in advance.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3872473#3872473

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3872473


-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
_______________________________________________
JBoss-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to