> I have a problem using a Tag for the property of another tag. > Isn't that possible? > Example: > -------- > tempArray[0] = <bean:write name="data" > property="<bean:message key=\"column.client.property\"/>" />;
AFAIK, that's a no-no. It will try to evaluate the outer tag before finding the inner one. The code that processes the "property" property knows nothing about tags, it just takes the text assigned and tries to use that as a property of the bean. As the error message told you, that didn't work. -- Tim Slattery [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

