Replacement for createSSOToken(principal, password) in AM 7.1?
I'm currently in charge of maintaining an application that was written to work with AM 6.0 as part of the JES 2004Q2 stack. When the application initializes we do a directory connection as follows:
SSOToken token = null;
try {
token = SSOTokenManager.getInstance().createSSOToken(
principal,
password);
} catch (Exception e) {
throw new EGatewayException( logger,
"Unable to create SSO Token for user",
e);
}
makeConnection(token);
However, with the new AMSDK for AM 7.1 the createSSOToken method has been deprecated and I'm having trouble finding the code that should be replacing that.
Any help is appreciated.
Thanks!
Robert LaBarre

