Tomasz Sterna wrote: > <xtls xmlns='http://www.xmpp.org/extensions/xep-xxxx.html#ns'> > base_64(TLS-Client-Hello-Message) > </xtls> > > Damn that we STILL do not have an effective way of transmitting binary > data over XMPP, and we need to resort to BASE64, run it through parser > and serializer...
How about converting the non-printable characters to numerical entities? It's common to use <xsl:text> </xsl:text> when generating text formats with XSLT. &0; should work, too. Stephan
