Details
Description
Seems latest JREs are more strict to XML serialization. If AttributesImpl class is used to be passed for encoding of "xmlns:sld=http://www.opengis.net/sld" like attributes in XML tags then XMLNS namespace must be declared explicitly:
------------------------------------------------------------------------------------------------------
atts.addAttribute("http://www.w3.org/2000/xmlns/", null, "xmlns:sld", "CDATA", "http://www.opengis.net/sld");
------------------------------------------------------------------------------------------------------
This affects TransformerBase class and stuff around it.