Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: ML for Jabber ?

From: bry:itnisk at: 12-Jan-2004 13:35

Assuming that you have a jabber server, running on port 5222 installed on a server named APACHES you can get to it over telnet and send the following: <stream:stream to='apaches' xmlns='jabber:client' xmlns:stream='http://etherx.jabber.org/streams'> this will return <?xml version='1.0'?> <stream:stream xmlns:stream='http://etherx.jabber.org/streams' id='{you jabber server returns a random id here}' xmlns='jabber:client' from='apaches'> notice that these are not well formed xml streams, they become well formed when you close the streams by sending </stream:stream> at which point the server sends </stream:stream> I don't know if ML can handle not well formed streams like that?