You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the first parser, the xml has the xmlns attribute first and the xmlns:stream attribute second. As you can see, the result only includes the second attribute xmlns:stream.
In the second parser, the xml has the xmlns:stream attribute first and the xmlns attribute second. As you can see, the result only includes the second attribute xmlns.
Desired: both attributes should be kept, as per the XMPP protocol.
The text was updated successfully, but these errors were encountered:
When I try to parse a
<stream>
element, the parser does not understand the difference between namespaced attributes.In the first parser, the xml has the
xmlns
attribute first and thexmlns:stream
attribute second. As you can see, the result only includes the second attributexmlns:stream
.In the second parser, the xml has the
xmlns:stream
attribute first and thexmlns
attribute second. As you can see, the result only includes the second attributexmlns
.Desired: both attributes should be kept, as per the XMPP protocol.
The text was updated successfully, but these errors were encountered: