0 Replies Latest reply on Feb 8, 2004 6:58 PM by sysuser1

    Unable to hit my servlet

    sysuser1

      Hi,


      I am trying to set up a simple application using Jboss.
      I have set up my application and am able to hit my first page: index.jsp but after bring the user to the first page, if I am trying to hit my servlet. I keep getting this error:

      16:10:28,187 INFO [Engine] StandardHost[localhost]: MAPPING configuration error
      for request URI /bin/BaseServlet

      I have the follwing set up in my WEB-INF/web.xml

      <web-app>
      The standard web descriptor for the html adaptor

      <servlet-name>base</servlet-name>
      <servlet-class>classes.framework.BaseServlet</servlet-class>
      <init-param><param-name>timeout</param-name><param-value>600</param-value></init-param>
      <init-param><param-name>timeoutPage</param-name><param-value>/base/timeout.jsp</param-value></init-param>


      <servlet-mapping>
      <servlet-name>base</servlet-name>
      <url-pattern>/bin/BaseServlet</url-pattern>
      </servlet-mapping>


      <login-config>
      <auth-method>BASIC</auth-method>
      <realm-name>JBoss JMX Console</realm-name>
      </login-config>

      <security-role>
      <role-name>JBossAdmin</role-name>
      </security-role>
      </web-app>


      Can some body please help me.

      Thanks,
      -Sam