first, i assume that you already aware that you are using a 'page scope' bean which means it can only be accesed from the same page.
second, in order to have a second bean that can refer to the first bean,
you should use both of the bean at the same page
third, in the second bean you should have at least 1 bean property (function) which has parameter related to the first bean, for example :
<jsp:usebean="first"......scope="page"/>
<jsp:usebean="second"......scope="page"/>
<%
Connection con = first.getConnection(); /* assume this bean return a connection named con */
/*assume we want to retrieve data with a select query written in the function getData int second bean property, which will be like, for instance : private ResultSet getData(Connection c).....*/
ResultSet rs = second.getData(con);
...
...
...
well that's all i can say, hope it helps and if there's any blur about my explanation just ask i'll be around OK?
regards
%>