Quantcast
Channel: GlassFish Related Items on Java.net
Viewing all articles
Browse latest Browse all 1091

Glassfish and special symbols

$
0
0

Hi guys.
I have some problems with the latest glassfish and with html special symbols.
My application works fine on glassfish 3.1. Then I have updated my glassfish to the latest version (3.1.2). And now glassfish replaces all symbols (like < >) by the special symbols ( &gt;&lt;).

An example of a page (3.1)

&lt;body onload="document.forms[0].submit();"&gt;
&lt;form&gt;
&lt;input type="hidden" name="ORDER" value="123" /&gt;
&lt;/form&gt;
&lt;/body&gt;

An example of a page (3.1.2)

<body onload="document.forms[0].submit();">
<form>
<input type="hidden" name="ORDER" value="123" />
</form>
</body>


what is going on?

Viewing all articles
Browse latest Browse all 1091

Trending Articles