I'm getting the error (Error: Extra Options is invalid.) when passing extraOptions that contain an escaped ampresand like so.
<extraOptions><![CDATA[bizam=bizam&foo=b&bar]]></extraOptions>
How should the embedded & be escaped so that it doesn't cause the error?
Thanks,
Phillip
11-06-2013 12:19 PM
Hi,
It should be escaped as & like how you are doing it on the second place. It will look like this:
<extraOptions><![CDATA[bizam=bizam&foo=b&bar]]?></extraOptions>
Thanks,
Joy
11-11-2013 12:10 PM