[jdev] Vapor (C# XMPP Server)

2008-04-04 Thread Jonathan Dickinson
Hi All, Vapor is successfully initiating a stream rubs hands. In any case, I have found that I have to 'trick' the .Net XML writer as far as writing only a start element, essentially: context.Writer.WriteStartElement(stream, stream, Uris.Streams);

Re: [jdev] Vapor (C# XMPP Server)

2008-04-04 Thread Alexander Gnauck
Jonathan Dickinson schrieb: Is this okay, or will I have to roll my own XML writer (is the comment invalid)? (Note that the default xmlns is missing, but this is just an example). Should I face any problems with any less xml conformant clients? thats fine, but also depends how you

Re: [jdev] Vapor (C# XMPP Server)

2008-04-04 Thread Jonathan Dickinson
2008 01:08 PM To: jdev@jabber.org Subject: Re: [jdev] Vapor (C# XMPP Server) Jonathan Dickinson schrieb: Is this okay, or will I have to roll my own XML writer (is the comment invalid)? (Note that the default xmlns is missing, but this is just an example). Should I face any problems with any less

Re: [jdev] Vapor (C# XMPP Server)

2008-04-04 Thread Norman Rasmussen
On Fri, Apr 4, 2008 at 1:21 PM, Jonathan Dickinson [EMAIL PROTECTED] wrote: so I can rely on the trustworthy and time-proven Microsoft implementations: which are deployed across thousands of machines. Ahh, at last. I _really_ hope that this continue to work out for you. I really don't

Re: [jdev] Vapor (C# XMPP Server)

2008-04-04 Thread Tomasz Sterna
Dnia 2008-04-04, pią o godzinie 14:45 +0200, Norman Rasmussen pisze: I really don't understand why people rolled their own XML parsers for their XMPP libraries. Who did? Could you give some examples? -- /\_./o__ Tomasz Sterna (/^/(_^^' http://www.xiaoka.com/ ._.(_.)_ im:[EMAIL

Re: [jdev] Vapor (C# XMPP Server)

2008-04-04 Thread Norman Rasmussen
On Fri, Apr 4, 2008 at 3:47 PM, Tomasz Sterna [EMAIL PROTECTED] wrote: Dnia 2008-04-04, pią o godzinie 14:45 +0200, Norman Rasmussen pisze: I really don't understand why people rolled their own XML parsers for their XMPP libraries. Who did? Could you give some examples? agsXMPP is a

Re: [jdev] Vapor (C# XMPP Server)

2008-04-04 Thread Jonathan Dickinson
: [jdev] Vapor (C# XMPP Server) On Fri, Apr 4, 2008 at 3:47 PM, Tomasz Sterna [EMAIL PROTECTED] wrote: Dnia 2008-04-04, pią o godzinie 14:45 +0200, Norman Rasmussen pisze: I really don't understand why people rolled their own XML parsers for their XMPP libraries. Who did? Could you give some

Re: [jdev] Vapor (C# XMPP Server)

2008-04-04 Thread Alexander Gnauck
Tomasz Sterna schrieb: Who did? Could you give some examples? many did, I think we had this thread before. To name some, agsxmpp, gloox, tigase The build in .NET parser works only with several hacks, which is no fun and causes you lots of headaches with threading later. Alex

Re: [jdev] Vapor (C# XMPP Server)

2008-04-04 Thread Joe Hildebrand
On 4/4/08 10:35 AM, Alexander Gnauck [EMAIL PROTECTED] wrote: Tomasz Sterna schrieb: Who did? Could you give some examples? many did, I think we had this thread before. To name some, agsxmpp, gloox, tigase The build in .NET parser works only with several hacks, which is no fun and