sasl

Does hudson support SASL authentication for connecting to SVN?

We are using SASL to secure our SVN server and we can't seem to get hudson to connect at all, despite giving it the correct username and password it just fails. ...

XMPP Handshake (DIGEST-MD5 SASL)

ive got ejabberd as my xmpp server and here is my php code: $stripped = strip_tags($returnTwo); // remove the xml tags from the response stanza $decoded = base64_decode($stripped); // decode the jibberish $regex = "([0-9]{8,})"; // create regex to extract the nonce preg_match($regex, $decoded, $noncearr); // extracts nonce $nonce = $non...

Connect to XMPP server using SASL ANONYMOUS in c#

Hi, I want to connect to an XMPP server using SASL ANONYMOUS. I can use any library that is available for commercial use. Any advice on how to do this and what library to use? I've looked into the documentation of some libraries (agsXMPP and jabber.net) and couldn't figure out how to do any anonymous connection on either. Thanks...