JSTL and boolean Attributes ???

2003-01-22 Thread Leif Hanack
Hello, i want to access a boolean attribute through JSTL. If my class looks like: class Checker { private boolean m_isValid = false; public void setValid( boolean p_isValid ) { m_isValid = p_isValid; } public boolean isValid() {

RE: jstl: expression language does not use interface?!!

2002-07-17 Thread Leif Hanack
> > i think the loss of using interfaces is a big disadvantage. on the > > serverside it will not be clear, why i have a class User with getter > > and setter and a User2 with just setter. > > I disagree. I believe it's a huge advantage. It means that I don't have to > code server-side objects spe

RE: jstl: expression language does not use interface?!!

2002-07-17 Thread Leif Hanack
> > i think the loss of using interfaces is a big disadvantage. on the > > serverside it will not be clear, why i have a class User with getter > > and setter and a User2 with just setter. > > One of the prices we pay for more convenience for page authors is the loss > of some distinctions like t

RE: jstl: expression language does not use interface?!!

2002-07-17 Thread Leif Hanack
> If you don't want to let the user set information on an object with > , it must not have setter methods. You can always wrap the > underlying object in a wrapper that provides only one-way access, but an > interface does not provide this protection. mmh?! thanks so fare. i'm a bit disappointe

jstl: expression language does not use interface?!!

2002-07-16 Thread Leif Hanack
hello, i have a basic question. i have a user object with getter and setter. on my jsp page i just want to allow the web-developer to get values. setting value should not be allowed on the jsp page! to realize it, i write an interface IUser which only includes the getter. without jstl i can wr

RE: newbie: which lib needs additional jars?!!

2002-07-12 Thread Leif Hanack
thanks, but do i need the jdbc jar even when i don't want to use the sql taglibs?! thanks in advance, leif -- To unsubscribe, e-mail: For additional commands, e-mail:

newbie: which lib needs additional jars?!!

2002-07-12 Thread Leif Hanack
hello, i want to use some tlds from the jstl and found in the doc this sentence: Install additional JAR files for libraries required by the custom tag library you wish to use (see the library documentation for information) in the /WEB-INF/lib subdirectory of your web application. did s.o. know

newbie: object with x attribute will be x tags or one tag?!

2002-07-11 Thread Leif Hanack
hello, i want to write a taglib library for different object/classes. when i have a class with a lot of attribute what do i do? should i write for every attribute a tag: , or do i write s.th. like , thanks in advance, leif -- To unsubscribe, e-mail: For additio

SOLVED! taglib-location not found?! need help?!

2002-07-10 Thread Leif Hanack
sorry dudes, i was to sleepy to distinguish between tdls and tlds:-)) thanks, leif -- To unsubscribe, e-mail: For additional commands, e-mail:

taglib-location not found?! need help?!

2002-07-10 Thread Leif Hanack
hello, i'm a newbie in taglibs and have a basic problem!! i have problems with my web.xml. it seems that it doesn't matter what i'm entering inside the taglib-location. everytime tomcat 403 telling me that he can not find the specified file. org.apache.jasper.JasperException: File "/WEB-INF/tl

newbie: can't get started?! JasperException: File "/dcfaTagLib" not found

2002-07-10 Thread Leif Hanack
hello, i'm new to the taglib stuff. i want to use the jstl but need some special tags as well. so i tried to set up a simple tag sample but without success. here is what is have done so far: i'm using tomcat 403 i create a context 'dcfa' to link to my development build directory: inside