Details Domain Name: BEATEST.COMDomain Controller Name: BEAAD (This machine runs Active Directory)WL Server Machine Name: beaiis (This machine runs Weblogic server). For BEAAD:- Username : beauserPassword : For beaiis :- Username : beaiisPassword : Secure04 Steps on Domain Controller (BEAAD)
Continue readingAuthor: weblogicwonders
Configuring Dynamic LDAP Groups with IPlanetAuthenticator on Weblogic Server
IPlanet LDAP Server implements dynamic ldap groups by having schema as objectclass = groupOfURLs. A groupOfURLS class can have multiple memberURL attributes, each one consisting of an LDAP URL that enumerates a set of objects in the directory. The members
Continue readingConfiguring SAML 1.0 in a Clustered Weblogic Server
In this document, we will discuss the configurations required on the Weblogic Server 10.3 source site and destination site for SAML 1.0. Architecture On a single machine we have Apache Web server, IIS Web server and 2 Weblogic Server Domains.
Continue readingConfiguring two way SSL between Client and Weblogic server with Apache proxying the request.
Configure Apache for SSL Create the certificates using openssl (present in apache_homebin) using the below steps: openssl genrsa -des3 -out server.key 1024 openssl req -config ..confopenssl.cnf -new -key server.key -out localhost openssl x509 -req -days 730 -in localhost -signkey server.key
Continue readingCreating Users in Weblogic Server Embedded LDAP Programatically.
I have received many requests from Clients for code snippet to create users programmatically.Below is a sample code by which we can create users in the Embedded LDAP of Weblogic Server.Put simple, this program creates an MBean Server connection, traverses
Continue readingServlet Authentication Filter for Weblogic Server
A growing need exists to trap request coming to Weblogic Server before it reaches the Container. Weblogic Server’s presence in Single Signon environment is increasing hence it becomes imperative that Clients should have the knowledge on how to develop a
Continue readingForce Shutingdown WLS Using JMX
import java.io.IOException; import java.net.MalformedURLException; import java.util.Hashtable; import javax.management.MBeanServerConnection; import javax.management.MalformedObjectNameException; import javax.management.ObjectName; import javax.management.remote.JMXConnector; import javax.management.remote.JMXConnectorFactory; import javax.management.remote.JMXServiceURL; import weblogic.management.runtime.*; import javax.naming.Context; import java.lang.*; public class ShutdownServerUsingJMX { private static MBeanServerConnection connection; private static JMXConnector connector; private static final ObjectName
Continue reading