Re: JSP - TagExtroInfo possible bug?

1999-11-08 Thread Sharath_Komarla
Evan, Is your setter method for url getting called with a null value? If so, then your instance variable "url" will reference null instead of an empty string. If you change you setter to public void setUrl( String url ) { if(url != null) this.url = url; else thi

Keep Generated

1999-10-28 Thread Sharath_Komarla
Hi, I am Using 0.7.9 on Nt I want to see the generated servlet code for a jsp. How do I do this? Is there a flag I can set to tell the server to leave the code around Thanks Sharath Komarla

"Invalid value of buffer attribute in page tag" Error!!!

1999-10-26 Thread Sharath_Komarla
Hi, I'm using Orion version 0.7.8b on Windows NT (SP5), JDK-1.2.2 I am running into the following error --Begin Error Message - 500 Internal Server Error Error parsing JSP page /test/test123.jsp line 1 Invalid value of buffer attribute in page tag

Open Source. Was Re: Architecture

1999-01-03 Thread Sharath_Komarla
One thing you gotta keep in mind is that people need to make a living to eat, drink and shelter themselves from the elements. Open Source is a great medium for certain things, but there is NO MONEY in it. Based on the quality and quantity of work that these guys are doing, it is safe to assum

pageContext.getSession() Bug in 0.7.9

1999-01-02 Thread Sharath_Komarla
HI, in 0.7.9 a call to pageContext.getSession() returns null if I have not done a jsp:useBean with scope="session" Yet the implicit session variable is not null in the jsp page. This is a serious bug to me since I am writing custom tags and our applications will not use jsp:useBean. I was t

Re: Architecture

1999-01-02 Thread Sharath_Komarla
I am also interested in finding generated source code. I have asked this question here before but I haven't received a reply. Orion guys: Do you not save the generated source to disk? I think it would helpful for a lot of developers. Thanks, Sharath "Kevin Jones" <[EMAIL PROTECTED]>