<br />
hello, I need to create this xml tag using jdom in java:<br />
Code:<br />
<br />
<stream:features><br />
<bind xmlns="urn:ietf:params:xml:ns:xmpp-bind" /><br />
<session xmlns="urn:ietf:params:xml:ns:xmpp-session" /><br />
</stream:features><br />
<br />
<br />
the closest I've been able to get is this:<br />
Code:<br />
<br />
<stream:features xmlns:stream="features"><br />
<bind xmlns="urn:ietf:params:xml:ns:xmpp-bind" /><br />
<session xmlns="urn:ietf:params:xml:ns:xmpp-session" /><br />
</stream:features><br />
<br />
I've cant seems to remove the added xmlns attribute in the main.<br />
how can I remove it, thanks.