Multiple attributes within an element - Is this a legal thing to do?

2003-10-20 Thread Frank Börncke
Hello, defining a custom tag DEFINESET in a taglib having an attribute called ELEMENT we want to use this attribute multiple times as follows: x:DEFINESET ELEMENT = x ELEMENT = y ELEMENT = z / Deployed in a Tomcat environment this results in multiple calls of the setter

Re: Multiple attributes within an element - Is this a legal thing to do?

2003-10-20 Thread Mark R. Diggory
Sorry, from all my understanding, thats just not allowed in XML. Attributes always have to be unique keys. When trying to build sets on a key I would recommend separate nested tags x:DEFINESET x:ELEMENT val=x/ x:ELEMENT val=y/ x:ELEMENT val=z/ /x:DEFINESET You can make a public