In this example we are going use Postgres database for session replication. It can be downloaded from here Once installed,
Continue readingHow to do auto backup of weblogic config.xml
You need to go to the following location Home >your_domain > Configuration > General > click Advanced The configuration
Continue readingHow to configure SSL Between Weblogic and Apache
1) Set WLS Environment C:OracleMiddlewarewlserver_10.3serverbin>setWLSEnv.cmd 2) Go to the lib directory and covert WLS Root Certificate to .pem
Continue readingWeblogic SAML Attribute Mapper Example
It is useful to send custom attributes or tokens in the attribute having identity information of the authenticated user.This
Continue readingHow to check for SSL POODLE / SSLv3 bug on WebLogic? How to fix
Details of the SSL POODLE bug can be found here We can address it in the following way. 1) Disable
Continue readingTwo way SSL Webservice on Weblogic Server
This article provides sample Webservice and Webservice Client for two way SSL. It also demonstrates the use of WLSSSLAdapter class to
Continue readingRecommended Best Practices for Securing WebLogic Server.
Disable SSL V2, Weak Ciphers, and Null Encryptions You can use the following jvm options to disable Weak Ciphers. -Dweblogic.security.SSL.allowUnencryptedNullCipher=false
Continue readingUsing RolesAllowed and SecurityRole annotations to secure Webservices on Weblogic
1. Write a JWS that uses the RolesAllowed and SecurityRole annotation package examples.webservices.security_jws; import weblogic.jws.WLHttpTransport; import weblogic.jws.Policies; import weblogic.jws.Policy; import
Continue readingHow to load webservices security policy from classpath
1) Add the following JAVA OPTION to the classpath -Dweblogic.wsee.policy.LoadFromClassPathEnabled=true 2) Write a simple policy. Encrypt.xml <?xml version="1.0"?> <wsp:Policy
Continue readingTesting secure webservice on Weblogic using SOAP UI
Create the certificates for the client using keytool and store it at a location. You can refer our articles on
Continue reading