Tagged Questions
3
votes
0answers
856 views
SASL (DIGEST-MD5) authentication error with SMACK [closed]
Possible Duplicate:
SASL Authentication failed while integrating facebook chat using Smack
I tries to compile this code and always it raises this exception
SASL authentication failed ...
2
votes
2answers
2k views
XMPP SASL authentication on Ejabberd with PHP
I'm trying to authenticate with an XMPP server using SASL.
/**
* Send Authentication, SASL
* @return Bool
* @param $username String
* @param $password String
*/
function ...
0
votes
1answer
114 views
Custom SASL Authentication [closed]
How to implement at ejabberd server custom SASL authentication mechanism like facebook X-FACEBOOK-PLATFORM SASL authentication. I would like to authenticate the user with the sessionID received ...
0
votes
1answer
416 views
Connect to XMPP server using SASL ANONYMOUS in c#
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 ...
0
votes
4answers
649 views
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 ...