I have an xml document. When parsing that doc I want to do
<c:set var="fullName">
<x:out select="$character/fstName"/>.<x:out select="$character/famName"/>
</c:set>
and then later
<c:out value="${fullName}"/>
This displays special characters html code instead of the character itself (ie. apostrophe becomes &#039)
I have read a similar issue on that page "how-can-i-escape-special-html-characters-in-jsp" but this seems to be a solution for c:out only. I tried it in my case and it does not seem to work for x:out
thanks in advance