File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes JSP and the fly likes usebean id problem Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » JSP
Reply Bookmark "usebean id problem" Watch "usebean id problem" New topic
Author

usebean id problem

M Burke
Ranch Hand

Joined: Jun 25, 2004
Posts: 375
I bind an ArrayList called ans into the request in a servlet....

req.setAttribute("ans", ejbClient.getAns());
RequestDispatcher rd = req.getRequestDispatcher("/Output");
rd.forward(req, resp);

Then in Output.jps I try to access it using usebean. But I get an error in the scriptlet "ans cannot be resolved" at line "Iterator pAll = ans.iterator();"

What am I missing here?


<HTML>
<HEAD>
<%@ page
language="java"
contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"
%>
<%@ page import="java.util.*" %>
<jsp:usebean id="ans" class="java.util.ArrayList" scope="request">

<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<META name="GENERATOR" content="IBM WebSphere Studio">
<TITLE>Output.jsp</TITLE>
</HEAD>
<BODY>
<%
String invName;
Iterator pAll = ans.iterator();
while(pAll.hasNext()){
invName= (String) pAll.next();
%>
<P>output:<%=invName%><br></P>
<%}%>

</BODY>
</HTML>
Bear Bibeault
Author and ninkuma
Marshal

Joined: Jan 10, 2002
Posts: 56191
    
  13

You forgot to close your usebean tag.


[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
M Burke
Ranch Hand

Joined: Jun 25, 2004
Posts: 375
thanks
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: usebean id problem
 
Similar Threads
retrive serialize files data ERROR
Problem after deploying my session,entity,and web component
getting the no of parameter from c:forEach
Request Attribute confusion
IllegalStateException: Cannot forward. Response already committed.