IBM MFP 8.0 multiple userID stick to 1 devices when use UserAuthenticationSecurityCheck

57 Views Asked by At

We are using the IBM MFP 8.0 with the UserAuthenticationSecurityCheck. We implement the createUser method as intruction:

@Override
protected AuthenticatedUser createUser() {
    AuthenticatedUser user = new AuthenticatedUser(userId, userId, getName());
    return user;
}

But, during the time we login logout with a lots of userId, I found out that multiple userIds are sticked to the device: Please see the screenshot here

And the problem is when we register the device with the notification and push to the userId, it will put to the wrong one.

Anyone has experiences for this case please help? Thanks

1

There are 1 best solutions below

0
On

After investigate, I believe that each time I uninstall the app and re-install again, pass the login step and it will create one more mapping userId - deviceId in the Devices page on MFP Application Console.

Is there anyone faced this issue?