hi im a newbie in
struts and im getting a hard time making struts 1.3.5 work in RAD 6. i created a simple struts application, just having a
jsp with link that will go the the next jsp that will show data (data are statically populated by another
java bean). everytime i click the link im getting Page Cannot Be Displayed. Both jsps are in WebContent/jsp. In the actionmapping i already tried input="/jsp/bookList.jsp" and input="jsp/bookList.jsp", but still not working.
code in the 1st page:
<html:link action="bookList">Show the booklist</html:link>
actionmapping in struts-config
<action path="/bookList" name="bookListForm"
scope="request"
type="com.library.BookListAction"
input="/jsp/bookList.jsp"/>
formbean in struts-config
<form-bean name="bookListForm" type="com.library.BookListForm"/>