Check soa-infra.war's status from admin console. Restart the same.
Thursday, June 29, 2017
Tuesday, June 20, 2017
ORA-03115: unsupported network datatype or representation
So, I created a connection with weblogic data source and tried to execute a query and got the following error:
ORA-03115: unsupported network datatype or representation[[
java.sql.SQLException: ORA-03115: unsupported network datatype or representation
The solution is simple,
Instead of
resultSet = preparedStatement.executeQuery(myQuery);
use
resultSet = preparedStatement.executeQuery();
ORA-03115: unsupported network datatype or representation[[
java.sql.SQLException: ORA-03115: unsupported network datatype or representation
The solution is simple,
Instead of
resultSet = preparedStatement.executeQuery(myQuery);
use
resultSet = preparedStatement.executeQuery();
Saturday, June 17, 2017
OIM: unable to find LoginModule class: weblogic.security.auth.login.UsernamePasswordLoginModule, when connecting from IDE
Solution: Add wlfullclient.jar in your class path,
The steps to create wlfullclient.jar can be found at: http://iamsecurity-tips.blogspot.com/search/label/wlfullclient.jar
The steps to create wlfullclient.jar can be found at: http://iamsecurity-tips.blogspot.com/search/label/wlfullclient.jar
Thursday, June 15, 2017
OIM: User unlock query
The following query can be executed to unlock an OIM user:
UPDATE USR SET USR_LOCKED=0,USR_LOGIN_ATTEMPTS_CTR=0, USR_LOCKED_ON = null,USR_MANUALLY_LOCKED = null WHERE USR_LOGIN='<PROVIDE_USER_LOGIN>';
UPDATE USR SET USR_LOCKED=0,USR_LOGIN_ATTEMPTS_CTR=0, USR_LOCKED_ON = null,USR_MANUALLY_LOCKED = null WHERE USR_LOGIN='<PROVIDE_USER_LOGIN>';
Subscribe to:
Posts (Atom)
-
import java.util.Date; import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.Stateme...
-
wget https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.5.0.tar.gz <Check latest version and replace everywhere> tar -xvf libress...
-
The following posts covers all aspects of developing and deploying a scheduled task in OIM and creating a scheduled job. The post will...