You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@struts.apache.org by "Edward Q. Bridges" <e....@argo-tec.de> on 2002/02/20 12:58:01 UTC

url to access a struts app

i have a rather simple problem (i think!) . . . 

given an actionmapping like this:
    <action path="/login"
            type="contentdb.view.login.Action"
            name="loginForm"
            scope="request"
            validate="true"
            input="/WEB-INF/jsp/Login.jsp">
              <forward name="continue" path="/WEB-INF/jsp/Login.jsp"/>
    </action>
stored in a .war file named ContentDB.war

how would i access that through a web browser after deploy?
(when deployed to JBoss-2.4.3_Jetty-3.1.1-1).

i've tried these urls:
    http://localhost:8080/ContentDB/do/login
    http://localhost:8080/ContentDB/login
    http://localhost:8080/do/login
    http://localhost:8080/login
all to no avail.

when accessing the url:
    http://localhost:8080/ContentDBView/
it shows a dir listing for META-INF and WEB-INF (i.e. it was properly deployed).

please find a jar tf listing of the war file is below.

thanks in advance

--e--


META-INF/
META-INF/MANIFEST.MF
WEB-INF/
WEB-INF/classes/
WEB-INF/classes/contentdb/
WEB-INF/classes/contentdb/view/
WEB-INF/classes/contentdb/view/base/
WEB-INF/classes/contentdb/view/login/
WEB-INF/classes/contentdb/view/base/ActionBase.class
WEB-INF/classes/contentdb/view/login/Action.class
WEB-INF/classes/contentdb/view/login/Form.class
WEB-INF/lib/
WEB-INF/lib/servlet.jar
WEB-INF/lib/struts.jar
WEB-INF/dtd/
WEB-INF/dtd/ant-project-ext.dtd
WEB-INF/dtd/ant-project.dtd
WEB-INF/dtd/struts-config_1_0.dtd
WEB-INF/dtd/tld-1.1.dtd
WEB-INF/dtd/tld-1.2.dtd
WEB-INF/dtd/web-app_2_2.dtd
WEB-INF/dtd/web-app_2_3.dtd
WEB-INF/struts-config.xml
WEB-INF/tld/
WEB-INF/tld/struts-bean.tld
WEB-INF/tld/struts-form.tld
WEB-INF/tld/struts-html.tld
WEB-INF/tld/struts-logic.tld
WEB-INF/tld/struts-template.tld
WEB-INF/jsp/
WEB-INF/jsp/Login.jsp
WEB-INF/web.xml




--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>