Pages

Friday, June 28, 2013

Oracle SOA

I came across many problems while installing Oracle SOA 11g Version, So I though to write a step by step guide for others ( frankly for me :-) ) The memory Requirements are other essentials can be obtained from the Oracle Web Site. Here are the necessary Packages that we need to start with ( may require more that 3GB of the...
Read More

Tuesday, June 25, 2013

JBoss 7 : Data Source Snippets

Create a Data Source We can Create a data Source using jboss-cli.sh utility available in the JBoss Server like [standalone@localhost:9999 /] data-source add --name=my_pool --driver-name=mysql --connection-url=jdbc:mysql://localhost:3306/test --jndi-name=java:/mysqlDB --user-name=root --password= --use-ccm=false --max-pool-size=25 –blocking-timeout-wait-millis=5000 Once you create the Data Source we need to enable the...
Read More

JBoss 7 : Data Source Configuration

Configuring a Data Source in JBoss 7 is different when compared with the JBoss 5 version. In this article we will see how we can configure a Data Source for My Sql Database. Here are the sequences of steps, 1.Configure the Module for the My Sql Data base. As we are aware that JBoss 7 is based on the modular class loading model. for this we need to create a new module for the my Sql Connector Jars. Download the My...
Read More

Wednesday, June 19, 2013

A Few JBoss 7 Snippets

Identify the Deployment Location When the application is deployed , if we need to identify the location where the app is located on file system. When the deployment is done ,we can see this sort of log at the bottom 14:31:39,759 INFO [org.jboss.as.repository] (HttpManagementService-threads - 4) JBAS014900: Content added at location /soa/jboss-eap-6.1/standalone/data/content/b2/1a30972ac24e7831f1c4c9c831605a60580120/content Now the...
Read More

Tuesday, June 18, 2013

Cluster Configuration in JBoss 7

The Configuration of Cluster in JBoss 7 is very Easy. Here are the Sequence of steps to follow to configure a Cluster in JBoss 7 Configure JBoss Servers in Domain Mode. Follow the steps in this link as Usual. Once you are done with Running JBoss Server in Domain Mode. Now we need to configure another Server on the “Host1” adding...
Read More

Monday, June 17, 2013

Running In Domain Mode In JBoss 7

One of the Primary Features of JBoss 7 is the ability to manage multiple JBoss Instances from a Central point. A Collection of Such JBoss servers are said to be members of a Domain which will have a Single Control point for managing the Domain like restarting , applying config changes e.t.c. In this article we will see how we can...
Read More

Tuesday, June 11, 2013

JBoss 7 Clustering : Domain Mode Clustering With Single IP address

In this article we will see how to configure JBoss 7 Cluster in the Domain Mode on a Single IP address. 1.Configure a New Server Group in the /domain/configuration/domain.xml file like <server-group name="ha-server-group" profile="ha"> <jvm name="default"> <heap size="256m" max-size="256m"/>...
Read More