Hi,
I am getting No Collection Found Exception .. while iterating through ArrayList in jsp page. What am I doing is :
I am clicking a link
and the request is suppose to go to the corresponding Action class. But control is not going to action class. I have checked all the mappings. Here is the mapping :
I dont know what is the problem. Any Help ?
I am getting No Collection Found Exception .. while iterating through ArrayList in jsp page. What am I doing is :
I am clicking a link
Code:
<html:link href="./viewAll.do">2. View All Information</a></html:link>
Code:
<action path="/viewAll" type="com.spi.samplestrutsapplication.detailsentry.CustomerDetailsAction" name="customerDetailsForm" input="/viewAllCustomerDetails.jsp" scope="request" validate="true"> <forward name="success" path="/viewAllCustomerDetails.jsp"/> </action>
Comment