We are having the same issue as described in Forum Thread
The application is working fine when is run from a browser in the same network.
However when we run it from Airwatch browser, it is populating this error and not submitting the request.
I already tried the solution suggestions to the referred thread from Sarbjeet Singh, however I cannot seem to get this working.
I extended the application and redefined the _postOData method. And also tried copying the application and making changes directly on the copy.
I replaced the contents of the method with the following.
_postOData: function(sPath, sBody, successCallback, errorCallback) {
var oParameters = {};
oParameters.success = successCallback;
oParameters.error = errorCallback;
oParameters.async = true;
setTimeout( function() {
_modelBase.create(sPath, sBody, oParameters, successCallback, errorCallback);
},1000);
};
Neither did work.
Has anyone successfully implemented Fiori Leave Application in an Airwatch managed system?