6 Replies Latest reply on Jul 24, 2013 10:03 AM by praveen1401

    gettting 404 error while login in to the application

      hi ,

       

      I have deployed my ear sucessfully, http://localhost:8080/test/sh/Login when am trying to login into the application it is diplaying 404- error page and am not seeing error msg in log file.

       

      org.jboss.as.server] (DeploymentScanner-threads - 2) JBAS018559: Deployed "CLMEAR.ear"

      15:07:00,072 INFO [com.fourcs.clm.fw.session.CLMUserSessionListener] (http--127.0.0.1-8080-1) CLM User Session Created. Session Id : K6lvhW5QHP5R0VqpjRTGv6fU.undefined

       

       

      my web.xml

       

      <servlet>
      <servlet-name>loginServlet</servlet-name>
      <servlet-class>com.xxx.yyy.loginServlet</servlet-class>
      </servlet>

      <servlet-mapping>
      <servlet-name>loginServlet</servlet-name>
      <url-pattern>/Login</url-pattern>
      </servlet-mapping>

       

      <welcome-file-list>

         <welcome-file>Login</welcome-file>

        </welcome-file-list>

        <error-page>

         <error-code>404</error-code>

         <location>/ErrorPage.html</location>

      </error-page>

       

      earlier in jboss-5.1.0.GA we use to enable the invoker servlet in jbossweb.deployer/web.xml file, do we have any thing like that in jboss7.1.1 final

       

      can any one help me out ...