Hi,
I deployed a ear file Hello.ear..
Hello.jsp is invoking HelloServlet.It calls EJBs.
I can able to see the
JSP.
if I submit the page,it couldn't find the
servlet.
How can I solve this?
What mistake am I doing?
The structure is
--- _hello.jar
--- _hello.war
--- meta-inf/application.xml
--- meta-inf/Manifest.mf
_hello.jar structure is
--- example/Hello.class
--- example/HelloBean.class
--- example/HelloHome.class
--- example/HelloServlet.class
--- meta-inf/ejb-jar.xml
--- meta-inf/weblogic-ejb-jar.xml
--- meta-inf/Manifest.mf
_hello.war contains
--- Hello.jsp
--- meta-inf/Manifest.mf
--- web-inf/web.xml
web.xml is
----------
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//
DTD Web Application 1.2//EN"
"http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
<web-app>
<servlet>
<servlet-name>HelloServlet</servlet-name>
<servlet-class>example.HelloServlet</servlet-class>
</servlet>
</web-app>