我想知道如何使用StropheJS连接到远程Openfire服务器?
实际上,我可以使用以下方法连接到本地服务器:
select decode(column1,column2,2,'3') result,calculationoftype.... columntype from tablename
但是,当我尝试连接到远程服务器时,如下所示:
$scope.connection = new Strophe.Connection('http://127.0.0.1:7070/http-bind/');
$scope.connection.connect($scope.jid, $scope.password, $scope.onConnect);
$scope.connection = new Strophe.Connection('http://172.21.2.217:7070/http-bind/');
$scope.connection.connect($scope.jid, $scope.password, $scope.onConnect);
返回状态1(Strophe.Status.CONNECTING),然后返回状态4(Strophe.Status.AUTHFAIL)。
使用Smack API连接远程Openfire服务器时,$scope.onConnect
和$scope.jid
参数效果很好。
非常感谢!