Turning off Text Escaping to Improve Performance
If you are certain that the data you are sending will not contain any special characters that must be escaped, you may get better performance in your applications by setting the property RWSF:doEscape to false.
This property controls whether or not the client escapes content when writing responses. The default is true.
To reset this property on the client side, call the setProperty() method from the proxy, as follows:
 
proxy.setProperty("RWSF:doEscape","false");
To turn escaping back on, call setProperty() again:
 
proxy.setProperty("RWSF:doEscape","true");