我尝试使用xampp和jsxc开发聊天应用程序。
当我尝试使用此http://localhost:5280/http-bind/网址连接xampp时,我收到此错误。
POST http://54.69.166.107:5280/http-bind/ net :: ERR_CONNECTION_REFUSEDjsxc.dep.js:4458 sendFunc
我被困在这个位置。这是我为连接而写的函数。
$(function() {
jsxc.init({
loginForm: {
form: '#form',
jid: '#username',
pass: '#password'
},
logoutElement: $('#logout'),
rosterAppend: 'body',
root: '/jsxc.example/',
turnCredentialsPath: 'ajax/getturncredentials.json',
loadSettings: function(username, password) {
return {
xmpp: {
url: 'http://localhost:5280/http-bind/',
domain: 'localhost',
resource: 'example',
onlogin: true
}
};
}
});
});
请建议我一些关于连接的好主意。提前谢谢。