RE: how do i get the ActionClass's Vector to my JSP page for display

2007-09-07 Thread Jennie Moeller
You shouldn't need to do the request.getParameter bit anymore...the form will be available in your jsp by just referencing the exact form name (defined in your action mapping...the 'name' attribute). Is this where you are getting a class cast exception? (VectorString) xParser.xmlLableGen

RE: how do i get the ActionClass's Vector to my JSP page for display

2007-09-07 Thread msg2ajay
very much thankQ for reply, i am able to get values to my ActionClass but while retreiving it is showing inconvertable types error . Actually i have used type casting. But it is showing the error. Is there some thing to change my approch in converting Vector while getParameter(); thx

RE: how do i get the ActionClass's Vector to my JSP page for display

2007-09-07 Thread Jennie Moeller
Hi, Since you've put it on your form you can pull it off your form. So in your jsp you can do something like: This will look through all your items in the vector...its like a for loop (assuming you are using jstl tags) c:foreach var=I items=${form.lable_temp} Or in your case perhaps you just