Registering Custom Mbeans with Weblogic Server. Example.java package jmxMbeans; public class Example implements ExampleMBean { public void sayHello(String str) {
Continue readingPlan.xml usage for Message Driven Bean
This post is an illustration of usage of plan.xml for overriding features of Message Driven Bean application dynamically. Administrators use
Continue readingConfiguring SQUID
Last night I had to replicate an issue which involved configuring SQUID on a Windows environment. I had to look
Continue readingConfiguring Kerberos with Weblogic Server
Details Domain Name: BEATEST.COMDomain Controller Name: BEAAD (This machine runs Active Directory)WL Server Machine Name: beaiis (This machine runs Weblogic
Continue readingConfiguring 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
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
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
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
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
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.*;
Continue reading