hi,
In the servlet after setting the value in bean are you attaching the bean to any context like session,request etc? You need to attach the bean to session or request and then get the same in the jsp. In the jsp you can access this bean in two ways.. either by a scriptlet or use the <jsp:useBean> and <jsp:getProperty> tags.
When you use useBean see that you use the same instance name of bean you used in servlet be used here.. If you are using scriptlet you need to use getAttribute and the use appropriate getXXXX() method to get the data you need..
Hope this reply clears your doubt!
You can get the jsp tag reference from here.. this will be useful for you :)
http://java.sun.com/products/jsp/tags/11/tags11.html
-- Abdel Raoof Olakara
http://olakara.googlepages.com