I written a tag as follows:
public void doTag(org.apache.commons.jelly.XMLOutput xMLOutput) {
try {
xMLOutput.write("<%");
xMLOutput.write(this.getBodyText());
xMLOutput.write("%>");
} catch(Exception ex)
{
}
}
When I use the tag I want the output to be :
<% some stuff %>
but get
< some stuff gt;
Can someone please help me with this?
Thanks
- Re: [jelly] writing < to stream Robert Lario
- Re: [jelly] writing < to stream Scott Walters
- RE: [jelly] writing < to stream Muness Alrubaie
