Thanks for the reply Chris.  I just ran your code and it works fine, except for the


Enumeration enum = pageContext.getAttributeNames();
   while( enum.hasMoreElements() ) {
    out.println( enum.nextElement() + "<br>" );
   }

My jsp page is hanging on the pageContext.getAttributeNames() line.  Any
ideas why, the request.getAttributeNames(), session.getAttributeNames()
and application.getAttributeNames() calls work fine.

Cheers

Antony





> <%
>   Enumeration enum = pageContext.getAttributeNames();
>   while( enum.hasMoreElements() ) {
>      out.println( enum.nextElement() + "<br>" );
>   }
>
>   enum = request.getAttributeNames();
>   while( enum.hasMoreElements() ) {
>      out.println( enum.nextElement() + "<br>" );
>   }
>
>   enum = session.getAttributeNames();
>   while( enum.hasMoreElements() ) {
>      out.println( enum.nextElement() + "<br>" );
>   }
>
>   enum = application.getAttributeNames();
>   while( enum.hasMoreElements() ) {
>      out.println( enum.nextElement() + "<br>" );
>   }
>
> %>
>

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com

Reply via email to