A simple example of Hazelcast JCA connection.
You should have installed JBoss AS or JBoss EAP and Apache Maven on your system. There are other requirements already in this repo.
JBoss AS 7+ or JBoss EAP 6+ - Choose free JBoss-AS or choose paid JBoss-EAP
Apache Maven 3+
Hazelcast 3+
* `git clone https://github.com/hazelcastInternsSummer14/hazelcast-jca-example.git` - Clone repo into the local
* `cd hazelcast-jca-example`
* `mvn install war:war` - Create war file for example
* `cp -R jboss/* $JBOSS_HOME/` - copy all JBoss requirements.
* `cp target hazelcast-jca-example.war $JBOSS_HOME/standalone/deployments/` - Copy war to JBoss
* `$JBOSS_HOME/bin/standalone.sh -c standalone-full.xml` - Run JBoss
* Browse to `http://localhost:8080/hazelcast-jca-example/Hello`
* `cp -R glassfish/* $GLASSFISH_HOME/` - copy all Glassfish requirements.
* `cp target hazelcast-jca-example.war $GLASSFISH_HOME/glassfish/domains/domain1/autodeploy/` - Copy war to Glassfish
* `$GLASSFISH_HOME/bin/asadmin start-domain`