Re: Freeing resources in closing tags

2002-04-17 Thread Oliver Suciu
Interesting -- we got it working (must be magic!)... ;-) (Nevermind) -- Oliver Hans Bergsten wrote: > > Oliver Suciu wrote: > > > In JSP 1.1, you simply cook your own try-catch-finally stuff, > > preferrably in a generic base tag, which all your concrete > > tag

Re: Freeing resources in closing tags

2002-04-16 Thread Oliver Suciu
In JSP 1.1, you simply cook your own try-catch-finally stuff, preferrably in a generic base tag, which all your concrete tags extend. -- Oliver Hans Bergsten wrote: > > Andrew Cooke wrote: > > > Hi, > > > > I would like to use a Custom Tag to open resources in the start tag and free > > them in

Re: Custom tags: overloaded setters

2001-10-01 Thread Oliver Suciu
Actually, it seems to work with exactly those three setters mentioned in the example -- I can pass a List in one instance, and a String in another. So now I'm wondering whether it's by design or just by accident?... -- Oliver Hans Bergsten wrote: > > Oliver Suciu wrote: >

Re: Custom tags: overloaded setters

2001-10-01 Thread Oliver Suciu
passes any conversion and correctly invokes the string setter 'public void setData(String dataStr)'. -- Oliver Hans Bergsten wrote: > > Oliver Suciu wrote: > > > You're saying that the spec doesn't say anything about this; > > how comes you then say that the be

Re: Custom tags: overloaded setters

2001-10-01 Thread Oliver Suciu
You're saying that the spec doesn't say anything about this; how comes you then say that the behavior of Tomcat is the correct one?... Thx, -- Oliver Hans Bergsten wrote: > > Oliver Suciu wrote: > > > Hi, > > > > Can anybody help clarify how a JSP container

Custom tags: overloaded setters

2001-10-01 Thread Oliver Suciu
Hi, Can anybody help clarify how a JSP container should handle overloaded setters in a custom tag: public void setData(List dataList) { this.dataList = dataList; } public void setData(Object dataObj) { this.dataObj = dataObj; } public void setData(String dataStr) { this.dat

Re: MessageDigest and the database

2000-10-27 Thread Oliver Suciu
can be found at: > > http://java.sun.com/products/jsp/faq.html > http://www.esperanto.org.nz/jsp/jspfaq.html > http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP > http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets -- Oliver Suciu [EMAIL PROTECTED] http://www.tibcofinanc

Packaging Precompiled JSP?

2000-10-27 Thread Oliver Suciu
Does anybody have any experience with this? Is there maybe a JSP compiler that creates independent code, or that allows you to include its support classes in your package? (Maybe Tomcat?) Any hint is much appreciated. Thanks a lot, -- Oliver -- Oliver Suciu [E

Re: Object attributes for custom tags

2000-10-24 Thread Oliver Suciu
.sun.com/products/jsp/faq.html > http://www.esperanto.org.nz/jsp/jspfaq.html > http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP > http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets -- Oliver Suciu [EMAIL PROTECTED] ==