DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=7589>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=7589

Unncessary repeated xmlns attribute

           Summary: Unncessary repeated xmlns attribute
           Product: Xerces2-J
           Version: 2.0.1
          Platform: Other
        OS/Version: Other
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: Serialization
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


When using the XML Serializer, the xmlns attribute is repeated for every single 
element in the same namespace.  For example

<a xmlns="myNS">
  <b xmlns="myNS">
    <c xmlns="myNS"/>
  </b>
</a>

should be

<a xmlns="myNS">
  <b>
    <c/>
  </b>
</a>

The default namespace applies for all children elements unless otherwise 
redefined.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to