Hey, I'm new to servlet and jboss, I just deploy my servlet to jboss 4.2. The jboss console shows me that it has been successfully deployed
my web.xml contains
<display-name>Notification_Auth_server_simulator</display-name> <welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file> <welcome-file>default.html</welcome-file> <welcome-file>default.htm</welcome-file> <welcome-file>default.jsp</welcome-file> </welcome-file-list> <servlet> <description></description> <display-name>Notify</display-name> <servlet-name>Notify</servlet-name> <servlet-class>com.me.Notify</servlet-class> </servlet> <servlet-mapping> <servlet-name>Notify</servlet-name> <url-pattern>/notify</url-pattern> </servlet-mapping> </web-app>
and for jboss-web.xml
<jboss-web> <context-root>mysite</context-root> </jboss-web>
I tried in my browser http: // localhost: 8080 / mysite / notify and it does not work
What is the correct site name?
thanks
source share