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 am trying to enable BOSH connection over Openfire so that i can create a XMPP client over a web. curretly i am testing it with the strophe.js.

the problem is when i try to fire following url in a browser i am getting

http://www.mydomain.com:7070/http-bind

following error

HTTP ERROR 400


    Problem accessing /http-bind/. Reason:

        Bad Request
    Powered by Jetty://

here is my server setting , i saw few threads but they arent helpful

enter image description here

update

i have made a connection using strophe but i am getting following error in browser trance

enter image description here

share|improve this question

3 Answers

up vote 0 down vote accepted

In your update Strophe is sending OPTIONS HTTP requests which means that it is negotiating cross domain communication. Requests are painted red which means that this is failing for some reason. Probably misconfiguration. There is a nice article about that here: http://metajack.im/2010/01/19/crossdomain-ajax-for-xmpp-http-binding-made-easy/

Otherwise, when Strophe does its regular BOSH communication it uses POST method.

share|improve this answer

Your setup is correct. The page the browser displays to you is also normal. Openfires BOSH component is not designed to work in a Browser with HTTP GET, only with BOSH clients like strophe. Try to connect with strophe.

share|improve this answer
i already did that , could you please check my updates – Hunt Dec 3 '12 at 9:48
which browser? make sure your browser allows cross domain requests. – Alex Dec 4 '12 at 6:43
its chrome , google chrome – Hunt Dec 4 '12 at 8:09

You should use proxy to repost the request to the openfire server . Because, the js post cannot support cross domain.

Notes:
1.I use jsjac , but I think it's not important .
2.If you sure your config is right , please restart you openfire server . It's my experience .

share|improve this answer

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.