Re: Beans without packages in JSP files

2006-12-05 Thread Filip Hanik - Dev Lists
just because I can't shut up, but everyone should know that by now, If I wanted this JSP to work <%=A.test()%> then I would simply do this 1. place A.class in WEB-INF/classes/ (required for running the compiled JSP, runtime class loading) 2. place A.class in WEB-INF/classes/org/apache/jsp/ (r

Re: Beans without packages in JSP files

2006-12-05 Thread Filip Hanik - Dev Lists
Yoav Shapira wrote: Hi, On 12/5/06, Filip Hanik - Dev Lists <[EMAIL PROTECTED]> wrote: I'm not talking about import A; I'm talking about simply using A in the JSP <%=A.test()%> without using an import, This doesn't work, cause our JSP page gets packaged as org.apache.jsp. and our code adds t

Re: Beans without packages in JSP files

2006-12-05 Thread Yoav Shapira
Hi, On 12/5/06, Filip Hanik - Dev Lists <[EMAIL PROTECTED]> wrote: I'm not talking about import A; I'm talking about simply using A in the JSP <%=A.test()%> without using an import, This doesn't work, cause our JSP page gets packaged as org.apache.jsp. and our code adds that before it tries t

Re: Beans without packages in JSP files

2006-12-05 Thread Filip Hanik - Dev Lists
I'm not talking about import A; I'm talking about simply using A in the JSP <%=A.test()%> without using an import, This doesn't work, cause our JSP page gets packaged as org.apache.jsp. and our code adds that before it tries to resolve A Filip Yoav Shapira wrote: Hi, I think we are intent

Re: Beans without packages in JSP files

2006-12-05 Thread Yoav Shapira
Hi, I think we are intentionally not supporting this, because Java itself (as of 1.4 IIRC) doesn't support it. See for example http://forum.java.sun.com/thread.jspa?threadID=733449&messageID=4217703 http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4361575 http://forum.java.sun.com/thread.jspa?t