Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to login to Openfire Server anonymously. I have tried with null username and password but not able to login. I have used Strophe on client side. Please Help me and give any suggestions. Thanks in advance..

share|improve this question

1 Answer

First of all from openfire admin panel add such property xmpp.auth.anonymous true

Suppose your domain is test.com

var c = new Strophe.Connection("/http-bind/"); //if localhost
c.connect("test.com",null,function(constatus){
    console.log(constatus);
    if(constatus==5){//connected
        c.addHandler(function(message){console.log(message);}, null, "message", "chat");
        c.send($pres());
    }
});

that's all on client side!

I've implemented PacketInterceptor to see all packets

public void interceptPacket(Packet packet, Session session, boolean incoming, boolean         processed) throws PacketRejectedException {
    if(packet instanceof Presence){
        Presence presence = (Presence) packet;
                    log.info("Presence:"+presence.toXML());
        Message msg = new Message();
        msg.setType(Type.chat);
        msg.setFrom("admin@test.com");
        msg.setBody("Hello from server");
        session.process(msg);
    }
}
share|improve this answer
hope it helps other...because i didn't find any full solutions and spent 2-3 hours – Didar Burmaganov May 15 '12 at 8:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.