Missing something with custom tags.

2011-02-02 Thread Bill Davidson
version 1.6.0_20, Java(TM) SE Runtime Environment (build 1.6.0_20-b02), Java HotSpot(TM) 64-Bit Server VM (build 16.3-b01, mixed mode) Tomcat: 6.0.26 I'm having trouble with a custom tag and I've tried to reduce the problem to its most basic form: /WEB-INF/tags/example.tag: %@tag %

Re: Missing something with custom tags.

2011-02-02 Thread Konstantin Kolinko
2011/2/3 Bill Davidson bill...@gmail.com: Unable to find setter method for attribute: xName error. I think you are bumping into JavaBeans capitalization rules. Rename your attribute to be xname or xxName. IIRC, setXName( ) means that the property name is XName, not xName. More details should

Re: Missing something with custom tags.

2011-02-02 Thread Bill Davidson
On 2/2/2011 2:17 PM, Konstantin Kolinko wrote: I think you are bumping into JavaBeans capitalization rules. Rename your attribute to be xname or xxName. That worked. Weird. - To unsubscribe, e-mail:

Re: Missing something with custom tags.

2011-02-02 Thread Bill Davidson
On 2/2/2011 2:17 PM, Konstantin Kolinko wrote: I think you are bumping into JavaBeans capitalization rules. Rename your attribute to be xname or xxName. That worked! Thanks! I think that's a pretty weird thing. - To

RE: Missing something with custom tags.

2011-02-02 Thread Martin Gainty
-0800 From: bill...@gmail.com To: users@tomcat.apache.org Subject: Missing something with custom tags. version 1.6.0_20, Java(TM) SE Runtime Environment (build 1.6.0_20-b02), Java HotSpot(TM) 64-Bit Server VM (build 16.3-b01, mixed mode) Tomcat: 6.0.26 I'm having trouble with a custom

Re: Missing something with custom tags.

2011-02-02 Thread Mark Thomas
On 02/02/2011 22:25, Martin Gainty wrote: need to see the tld declaration for your tags There is none. It is implicit. You need to read the JSP spec. and the Java class declared for the tag It is a tag file - there is none. Again, you need to read the JSP spec. pls ping me offline Please