I have used converse.js for creating a chatbox in my website. (https://conversejs.org/)
The second thing I have added is a openfire (http://www.igniterealtime.org/projects/openfire/) xmpp server.
Converse.js however keeps hanging during 'signing' and in the logs of openfire I keep getting unknown_certificate messages.
converse.initialize({
allow_otr: true,
auto_list_rooms: false,
auto_subscribe: false,
bosh_service_url: 'http://localhost:8080/xmpp-bosh', // Please use this connection manager only for testing purposes
debug: true ,
hide_muc_server: false,
i18n: locales['en'], // Refer to ./locale/locales.js to see which locales are supported
prebind: false,
show_controlbox_by_default: true,
xhr_user_search: false,
}
The html containing this code is also on the same host+port so i do not have crossdomain issues. When testing with firebug and chrom-debugger I cannot find any javascript errors either.
Connecting with Pidgin IM messenger works like a charm. Anyone else encountered this issue when self installing an xmpp service ?