Skip to Main Content

Java APIs

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

struts No action instance for path could be created

843810Mar 19 2006 — edited Mar 30 2006
Hi,
I get the following error message:
No action instance for path /bookList could be created
my struts-config file looks like:
<form-beans>
    	<form-bean name="bookListForm" type="strutsform.BookListForm" />
    </form-beans>

<action-mappings>
           
		<action
            path="/Welcome"
            forward="/pages/Welcome.jsp"/>

    	<action
         path="/bookList"
         attribute="bookListForm"
         input="/pages/bookList.jsp"
         name="bookListForm"
         scope="request"
         type="strutsaction.BookListAction">
         	<forward name="showList" path="/pages/bookList.jsp" />
      </action>
    
	</action-mappings>
I really don't know what's wrong, I have checked it uncountable often...
I'm getting a litte bit desperate

every help is appreciated....thanks in advance
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Apr 27 2006
Added on Mar 19 2006
1 comment
434 views