I have been getting a lot of request for creating a very simple document for configuring SSL on Weblogic Server.
Continue readingCategory: Oracle Weblogic Server
This category has posts related to Oracle Weblogic Server
Troubleshooting Out Of Memory Errors in Weblogic using Eclipse Memory Ananlyser
Eclipse Memory Ananlyser is a very useful tool to analyze heap dumps. It has a lot of features such as
Continue readingHow to modify Weblogic Default Roles and Policies
This post is basically screenshots that demonstrates how to modify the existing roles and policies in Weblogic. We mostly have
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 readingUpdating invalidation-interval-secs Using Plan.xml
This article describes the usage of plan.xml to update deploment descriptors on the fly. In this example we will update
Continue readingCreating Application Life Cycle Listener
Create a Class that extends ApplicationLifecycleListener. ApplicationListener.java package demo; import weblogic.application.ApplicationException; import weblogic.application.ApplicationLifecycleEvent; import weblogic.application.ApplicationLifecycleListener;; public class ApplicationListener extends ApplicationLifecycleListener
Continue readingSide by Side deployment/Versioning
/* Style Definitions */ table.MsoNormalTable {mso-style-name:”Table Normal”; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-parent:””; mso-padding-alt:0cm 5.4pt 0cm 5.4pt; mso-para-margin:0cm; mso-para-margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:10.0pt; font-family:”Times
Continue readingConfiguration: WLDF Mail Notification for Runtime Mbean
Weblogic Diagnostics Framework can be used to analyze, collect, archive and access diagnostic data generated by a running server and
Continue readingRegistering Custom MBeans with Weblogic Server
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 reading