Hide Forgot
Description of problem: The generated xml using the JAXB shipped with JBoss 6.4.x has double namespace for response: <Response:Response, i.e <MetaData xmlns=...> ... <Response:Response xmlns:Response=...> ... </Response:Response> </MetaData> Version-Release number of selected component (if applicable): jaxb-impl-2.2.5.redhat-9 How reproducible: Always, for both windows and Linux. Actual results: <MetaData xmlns=...> ... <Response:Response xmlns:Response=...> ... </Response:Response> </MetaData> Expected results: <MetaData xmlns=...> ... <Response xmlns:Response=...> ... </Response> </MetaData> Additional info: Can the JAXB version in EAP 6.4.x be upgraded to 2.2.11?
Although the output is awkward, it's not invalid. If something parsing this has issues, then it's an invalid XML parser.
Closing as not a bug, if we get a reproducer we can reopen/revisit