IBM MFP8 - Unresponsive host error when adapter is called

328 Views Asked by At

I am getting below error when I try to obtain access token from the server using this code.

WLAuthorizationManager.obtainAccessToken()
    .then(
        function (accessToken) {
            console.log("accessToken ", accessToken);
        },
        function (error) {
            console.log("error ", error);
});

ERROR

See the screenshot here

{
    "responseHeaders":{},
    "status":200,
    "responseText":"undefined",
    "errorCode":"UNRESPONSIVE_HOST",
    "errorMsg":"unresponsive host"
}

Usually when I get the access token, soft update is received but now soft update is not received because of this error. Can anyone help?

2

There are 2 best solutions below

0
On

your response status is 200. it means everything is fine. check if you don't have the required data in DB/Server what you are looking for.

0
On

There can be 2 scenarios here.

  1. MFP version of client and server is mismatched. Validated the version number of MFP and try again.

  2. Application version number is not defined in MFP Console. So you can check the version number on MFP console.

let me know if that didn't work.