tong / hxmpp

Haxe XMPP library
65 stars 8 forks source link

Flash xmlns error #18

Closed tong closed 5 years ago

tong commented 10 years ago

Since haxe 2.06 flash is unable to set xml element namespace. Current workaround is:

#if flash
x.set( '_xmlns_', s );
#else
x.set( 'xmlns', s );
#end

.. but this still breaks unit tests.