Kaazing,AngularJS& BasicChallengeHandler

时间:2015-01-28 14:08:54

标签: javascript angularjs html5 kaazing

我正在尝试在HTML5客户端中使用Kaazing Library。我已经在java客户端中实现了它并且它有效。似乎LoginHandler存在问题。当我调试代码时,它在LoginHandler中以无限循环结束。一遍又一遍地调用回调行(new PasswordAuthentication(usr,pwd))

// Configure a Basic Challenge Handler
var basicHandler = new BasicChallengeHandler();
  basicHandler.loginHandler = function(callback) {
  callback(new PasswordAuthentication(usr, pwd));
}

JmsConnectionProperties jmsProps = new JmsConnectionProperties();
jmsProps.connectionTimeout = 1000000;
jmsProps.reconnectAttemptsMax = -1;
jmsProps.reconnectDelay = 3000;
jmsProps.shutdownDelay = 5000;

console.log("Connect to: " + url);

// Create Connection Factory
jmsConnectionFactory = new JmsConnectionFactory(url, jmsProps);
websocketFactory = jmsConnectionFactory.getWebSocketFactory();
websocketFactory.setChallengeHandler(basicHandler);

// reate Connection future handler for the result
try {
    if (connection == null) {
        var connectionFuture = jmsConnectionFactory.createConnection( function() {
            try {
                // never comes to this line!!!
                connection = connectionFuture.getValue();
                // DO SOME STUFF

                    } catch (e) {
                        console.dir(e);
                        // alert(e.message);
                    }
                });
            } else {
                try {
                    connection.close(function() { /* Closed */
                    });
                } finally {
                    connection = null;
                }
            }
        } catch (ex) {
            console.dir(ex);
        }

任何帮助都将非常感谢!

此致 安吉拉

1 个答案:

答案 0 :(得分:0)

用户名和密码组合是否可能不正确,以便客户端被重新质疑?