Where To Find the JAR File Required To Include The Class SSODebug
(Doc ID 391001.1)
Last updated on OCTOBER 11, 2019
Applies to:
Oracle Application Server Single Sign-On - Version 10.1.2.0.2 and laterInformation in this document applies to any platform.
Goal
Following SSO Admin guide -
Chapter 13.4.2 Migrating the Release 9.0.2 Sample Implementation to Release 10.1.2
Included the ORACLE_HOME/sso/lib/ipastoolkit.jar in the classpath.
Unable to Compile the below sample code, failing at
import oracle.security.sso.server.util.SSODebug;
SAMPLE CODE
------------------
import java.io.PrintWriter;
import java.net.MalformedURLException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import oracle.security.sso.server.util.SSODebug;
import oracle.security.sso.ias904.toolkit.IPASAuthInterface;
import oracle.security.sso.ias904.toolkit.IPASAuthException;
import oracle.security.sso.ias904.toolkit.IPASUserInfo;
import oracle.security.sso.ias904.toolkit.IPASInsufficientCredException;
import java.net.URL;
import java.util.*;
public class SSOTPAMAuth implements IPASAuthInterface {
private static String CLASS_NAME = "SSOTPAMAuth";
private static String TPAM_USER_HEADER = "SSOTPAMUser";
public SSOTPAMAuth() {
SSODebug.print(SSODebug.DEBUG, "New Instance of " + CLASS_NAME);
}
....
}
Solution
To view full details, sign in with your My Oracle Support account. |
|
Don't have a My Oracle Support account? Click to get started! |
In this Document
Goal |
Solution |