I have one index.jsp file which contains multiple frames, each frame is another
jsp file, like frame1.jsp, frame2.jsp, frame3.jsp, etc..
I need only parse a single variable from a xml file in the index.jsp, most of the parsing is done in frame1.jsp, which is in a child frame.
There is a
java bean MyParser.java created to parse the xml, I do not want to reconnect to the xml file in the frame1.jsp since I already connected once in the index.jsp.
I like to reuse the _doc object in the frame1.jsp which was created in index.jsp, how to achieve that? Can someone give me sample code statement to do this?
Thanks.