websocket连不上服务器

cocoscreator1.8.2打出来的安卓包连不上服务器, 下面是连接代码。

this.uri = uri;
this.onOpenCB = onOpenCB;
this.onCloseCB = onCloseCB;
this.onErrorCB = onErrorCB;
this.onMessageCB = onMessageCB;
this.websocket = new WebSocket(this.uri);
var self = this;

this.websocket.onopen = function(event) {
    self.onOpen(event);
}
this.websocket.onclose = function(event) {
    self.onClose(event);
}
this.websocket.onerror = function(event) {
    self.onError(event);
}
this.websocket.onmessage = function(event) {
    self.onMessage(event);
}