Identity Asserters are used in token based authentication mechanism. It’s very useful when we have to implement Single Sign on
Continue readingTag: Weblogic
Configuring SQL Authenticator with Weblogic Server.
Weblogic Server, by default stores the user and group information in an Embedded LDAP Server. If we want to store
Continue readingConfiguring OpenDS with Weblogic Server
Download Install and Configure OpenDS. I used the following LDIF as BASE while installing OpenDS. dn: dc=oracle,dc=com dc: oracle objectClass:
Continue readingUsing Canned Policy with Weblogic Server.
SimpleWS.java package demo; import weblogic.jws.WLHttpTransport; import weblogic.jws.Policies; import weblogic.jws.Policy; import javax.jws.WebService; import javax.jws.WebMethod; import javax.jws.soap.SOAPBinding; @WebService(name=”SimpleWSPortType”, serviceName=”SimpleWSService”, targetNamespace=”http://www.oracle.com”) @SOAPBinding(style=SOAPBinding.Style.DOCUMENT, use=SOAPBinding.Use.LITERAL,
Continue readingConfigure JCE Provider with Weblogic Server
Download any JCE Provider. These JCE providers provide additional cryptographic algorithms to secure the communication. Bouncy castle is one such
Continue readingBASIC Authentication with Apache
Create user.txt with the username and password separated by colon user.txt testuser:testuser Then use the htpasswd to encrypt the password
Continue reading