pr0z_kh [https://community.jboss.org/people/pr0z_kh] created the discussion
"JBoss 4.2.3 escaping issue" To view the discussion, visit: https://community.jboss.org/message/830479#830479 -------------------------------------------------------------- I need to send xml via cookies. So I have the following code: Cookie cookie = new Cookie("cookieName", ""); cookie.setValue("xml=<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>"); response.addCookie(cookie); As you can see, double quotes were escaped. Then I've tried to get this string on my jsp: <c:out value="Value: ${cookie.cookieName.value }" /> And I've got this: xml=<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?> My slashes were escaped somehow. When I'm trying to test this application on Tomcat 6 or JBoss 5.1.0, everything is fine. Does anyone have any suggestions? Thanks, Yury. -------------------------------------------------------------- Reply to this message by going to Community [https://community.jboss.org/message/830479#830479] Start a new discussion in Beginner's Corner at Community [https://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2075]
_______________________________________________ jboss-user mailing list [email protected] https://lists.jboss.org/mailman/listinfo/jboss-user
