Android 本机应用程序未连接到 Worklight Server

Android native application not connecting to Worklight Server

我正在尝试将我的 android 本机应用程序连接到 Worklight 服务器,但我总是收到以下错误:

Unexpected errorCode occurred. Please try again.

我的主程序中有以下代码 activity:

connectBtn.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {

            connectBtn.setText("Connecting...");
            client = WLClient.createInstance(getApplicationContext());
            WLClient.getInstance().connect(new MyConnectListener());


        }
    });

我创建了这个 class 作为连接侦听器:

public class MyConnectListener implements WLResponseListener {

@Override
public void onSuccess(WLResponse wlResponse) {


    Log.d("Status", "CONNECTED");


}

@Override
public void onFailure(WLFailResponse wlFailResponse) {
    Log.d("Status", "FAILED CONNECTION "+ wlFailResponse.getErrorCode().getDescription().toString());
}
}

在我的 wlclient.properties 中,我使用 HTTPS,端口值为空白,如 IBM 教程中所述。 任何解决此问题的帮助将不胜感激。

如果出现以下情况,您必须关闭连接端口: HTTPS:端口 = 443 HTTP:端口 = 80