Description
On line 97 of the Soap12FaultOutInterceptor, an attempt is made to write an attribute using the following code:
writer.writeAttribute("xml", "http://www.w3.org/XML/1998/namespace", "lang ", getLangCode());
The 3rd parameter has a trailing space and fails with the following exception:
org.w3c.dom.DOMException: INVALID_CHARACTER_ERR: An invalid or illegal XML character is specified.
I was able to copy this class into my source code and remove the space, which solved the issue