0

我做了简单的应用程序。添加了 android 和 desktopbrowser 环境。安卓应用运行良好。

预览桌面浏览器环境时无限次出现错误访问被拒绝重新加载对话框。

在“worklight.properties”文件中进行了以下两项更改。

mfp.session.independent=false

mfp.attrStore.type=HttpSession

尝试重新启动服务器和eclipse。

代码重现如下:

function wlCommonInit(){

    WL.Client.connect({
                onSuccess: onConnectSuccess,
                onFailure: onConnectFailure
            });

}

function onConnectSuccess(){
    alert("Connected to Server");
    WL.Client.checkForDirectUpdate();

}

function onConnectFailure(){
    alert("Connection Failure");
}

$("p").click(function(){
    alert("Paragraph Clicked");
    getData();
});

function loadFeedsSuccess(result){
    invocationResult = result.invocationResult;
   alert(JSON.stringify(invocationResult.firstName));
   alert(JSON.stringify(invocationResult.lastName));
}

function loadFeedsFailure(error){
   console.log("Feed retrieve failure");
   alert(JSON.stringify(error));
   alert("Feed retrieve failure");
}


function getData() {
    var invocationData = {
            adapter : 'Test',
            procedure : 'getAdapter',
            parameters : []
        };

    WL.Client.invokeProcedure(invocationData,{
        onSuccess :  loadFeedsSuccess,
        onFailure : loadFeedsFailure,
    });
}
4

1 回答 1

1

我无法重现这一点。

  1. 在 IBM MobileFirst Platform Studio 7.1.0.00-20160321-2138 中创建了一个新项目
  2. 在 server\conf\worklight.properties 我已经设置mfp.attrStore.type=HttpSessionmfp.session.independent=false
  3. 添加了移动网络环境
  4. 在 main.js 中添加了代码WL.Client.connect()->wlCommonInit()
  5. 运行方式 -> 在 MobileFirst 开发服务器上运行
  6. 在控制台中预览

我得到一个显示“成功”的对话框(成功回调onSuccess)。

于 2016-04-08T20:12:45.187 回答