Posts

Creating your own Weblogic local domain on Windows

Image
Creating your own Weblogic local domain on Windows If you want create your own weblogic domain you have reached correct destination. You can use this domain for configuring server in Netbeans IDE. This installation is on OS Windows 7. Let's jump to configuring domain. 1. Go to Weblogic configurator and select Quick Launch 2. You will see quick launch screen one like below. Now click on "Getting Started with Weblogic 10.3.6". 3. Now you will see Configuration Wizard screen as below. Select "Create new Weblogic Domain". And click on Next. 4. You can select domain source as below. Configurator wizard will list all the domains. 5. Enter name and location in next screen. 6.Add username and password. Keep password alphanumeric one, should be combination of Letters and numbers like "Welcome1". This is important for logging in to admin console. 7. This is very important step. If you are using this in some IDE then select develop...

Adding default help provider to ADF application

Please read about HelpProvider documentation from ADF Docs. Now you can go and implement your default help provider in ADF App. Whenever there is requirement to override default behavior of the help topic text and basically want to override behavior to accept any random help text from ELExpressions. Here we need to override some classes and make few configuration entries in adf-settings.xml file. 1. Extend HelpTopic class and override methods. Code should look something like  below.   1 package com.custom;   2    3 import javax.faces.component.UIComponent;   4 import javax.faces.context.FacesContext;   5    6    7 import com.custom.HelpTopic;   8    9 /**  10  * EPM help provider for help topic ids.  11  */  12 public class DefaultELHelpProvider extends HelpProvider {  13     /**  14      * Default constructor.  ...