Update of /cvsroot/ejtools/applications/jmx.browser/src/main/net/sourceforge/ejtools/jmxbrowser/web/taglib
In directory usw-pr-cvs1:/tmp/cvs-serv12013/jmx.browser/src/main/net/sourceforge/ejtools/jmxbrowser/web/taglib
Modified Files:
ConnectTag.java
Log Message:
Remove the filter
Index: ConnectTag.java
===================================================================
RCS file: /cvsroot/ejtools/applications/jmx.browser/src/main/net/sourceforge/ejtools/jmxbrowser/web/taglib/ConnectTag.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** ConnectTag.java 15 May 2002 20:56:11 -0000 1.3
--- ConnectTag.java 17 May 2002 07:21:53 -0000 1.4
***************
*** 7,10 ****
--- 7,11 ----
package net.sourceforge.ejtools.jmxbrowser.web.taglib;
+ import javax.servlet.ServletContext;
import javax.servlet.http.HttpSession;
import javax.servlet.jsp.JspException;
***************
*** 38,45 ****
boolean valid = false;
! HttpSession session = pageContext.getSession();
! System.out.println("ConnectTag session " + session.getId());
! if ((session != null) && (session.getAttribute(name) != null))
{
valid = true;
--- 39,45 ----
boolean valid = false;
! ServletContext context = pageContext.getServletContext();
! if (context.getAttribute(name) != null)
{
valid = true;
|