Posts

Showing posts from August, 2015

Configuring Self Certificate and SSL in Weblogic

Image
1. open command prompt and change the directory as you weblogic domain home directory by typing following command: C:\Users\kunalku> D:\Weblogic10.3.6\user_projects\domains\hgbu_domain\bin C:\Users\kunalku> d: 2. Then execute the setDomainEnv command as follows: D:\Weblogic10.3.6\user_projects\domains\hgbu_domain\bin> setDomainEnv.cmd 3. Generate you self certificate by following command D:\Weblogic10.3.6\user_projects\domains\hgbu_domain> keytool -genkey -alias mykey -keyalg RSA -keysize 2048 -validity 365 -keypass privatepassword -keystore identity.jks -storepass password it will ask you some question as follows: What is your first and last name?   [Unknown]:  localhost What is the name of your organizational unit?   [Unknown]:  wls What is the name of your organization?   [Unknown]:  wls What is the name of your City or Locality?   [Unknown]:  Bangalore What is the name of your State or Province? ...

Configuring JMS Server, JMS Module, JMS Connection Factory and JMS Queue in Weblogic

Image
Hi All, In this post I am going to show you how you can create the JMS Server, JMS Module, JMS Connection Factory and JMS Queue in Weblogic 10.3.6 server. First you open the weblogic console by hitting following URL http://localhost:7001/console It will ask you for the username and password, provide the username and password whatever you have given at the time of installation of weblogic server. To go through the installation steps of Weblogic 10.3.5 you can use the following link: http://www.code4fusion.com/2014/09/step-by-step-installation-of-weblogic.html The installation of Weblogic 10.3.6 is completely similar to the Weblogic 10.3.5. Now after login into the weblogic server go to the location "Services - Messaging - JMS Server" as shown below and click on "New". In the next screen provide the JMS server name and click on next. In the next screen just specify the target serer and click on Finish. ...