Author: sathwik
Date: Mon Nov 17 08:27:17 2014
New Revision: 1640095
URL: http://svn.apache.org/r1640095
Log:
formatting bullets
Modified:
ode/site/trunk/content/war-deployment.mdtext
Modified: ode/site/trunk/content/war-deployment.mdtext
URL:
http://svn.apache.org/viewvc/ode/site/trunk/content/war-deployment.mdtext?rev=1640095&r1=1640094&r2=1640095&view=diff
==============================================================================
--- ode/site/trunk/content/war-deployment.mdtext (original)
+++ ode/site/trunk/content/war-deployment.mdtext Mon Nov 17 08:27:17 2014
@@ -36,9 +36,9 @@ The ODE war should have been copied to t
- slf4j-jdk14-1.6.4.jar
-4. Configure data sources.
+4. Configure data sources.
- Create a file name named _**resources.properties**_ under conf/ directory
of tomcat with the below contents:
+ Create a file name named _**resources.properties**_ under conf/ directory of
tomcat with the below contents:
:::properties
resource.ds2.className=bitronix.tm.resource.jdbc.lrc.LrcXADataSource
@@ -51,11 +51,12 @@ The ODE war should have been copied to t
resource.ds2.driverProperties.password=
resource.ds2.allowLocalTransactions=true
resource.ds2.shareTransactionConnections=true
-Enter the appropriate mysql **user** and **password** in the properties file.
-5. Associate the datasource created in the previous step for ODE
+ Enter the appropriate mysql **user** and **password** in the properties file.
- Create a file named _**ode.xml**_ under conf/Catalina/localhost/ directory
under tomcat with the below given contents:
+5. Associate the datasource created in the previous step for ODE.
+
+ Create a file named _**ode.xml**_ under conf/Catalina/localhost/ directory
under tomcat with the below given contents:
:::xml
<Context reloadable="true" crossContext="true">
@@ -64,7 +65,7 @@ Enter the appropriate mysql **user** and
auth="Container" type="javax.sql.DataSource"
factory="bitronix.tm.resource.ResourceObjectFactory"
uniqueName="jdbc/ode" />
- </Context>
+ </Context>
6. Add the below lines in the _**web.xml**_ of ODE web application.
@@ -74,7 +75,7 @@ Enter the appropriate mysql **user** and
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
<res-sharing-scope>Shareable</res-sharing-scope>
- </resource-ref>
+ </resource-ref>
7. Remove jar file _geronimo-jta_1.1_spec-1.1.jar_ from ODE web application
_/lib_ directory
@@ -85,7 +86,7 @@ Enter the appropriate mysql **user** and
ode-axis2.db.mode=EXTERNAL
ode-axis2.db.ext.dataSource=java:comp/env/jdbc/ode
- Note that the value for JNDI entry _ode-axis2.db.ext.dataSource_ should
match the entry _resource.ds2.driverProperties.url_
+ Note that the value for JNDI entry _ode-axis2.db.ext.dataSource_ should
match the entry _resource.ds2.driverProperties.url_
9. Make sure that MySQL is started and the [ODE
schema](/resources/ode_openjpa_mysql-1.3.2.sql) has been loaded in a _ode_
database.