You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ode.apache.org by va...@apache.org on 2010/07/07 17:56:15 UTC

svn commit: r961421 - /ode/trunk/axis2-war/src/main/webapp/WEB-INF/conf/ode-axis2.properties

Author: vanto
Date: Wed Jul  7 15:56:14 2010
New Revision: 961421

URL: http://svn.apache.org/viewvc?rev=961421&view=rev
Log:
ode-axis2.properties templated added.

Added:
    ode/trunk/axis2-war/src/main/webapp/WEB-INF/conf/ode-axis2.properties   (with props)

Added: ode/trunk/axis2-war/src/main/webapp/WEB-INF/conf/ode-axis2.properties
URL: http://svn.apache.org/viewvc/ode/trunk/axis2-war/src/main/webapp/WEB-INF/conf/ode-axis2.properties?rev=961421&view=auto
==============================================================================
--- ode/trunk/axis2-war/src/main/webapp/WEB-INF/conf/ode-axis2.properties (added)
+++ ode/trunk/axis2-war/src/main/webapp/WEB-INF/conf/ode-axis2.properties Wed Jul  7 15:56:14 2010
@@ -0,0 +1,95 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#    http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+## ODE-AXIS2 Configuraiton Properties
+
+## Database Mode ("INTERNAL", "EXTERNAL", "EMBEDDED")
+## What kind of database should ODE use?
+##   * "EMBEDDED" - ODE will create its own embbeded database (Derby)
+##	           and connection pool (Minerva).
+##   * "EXTERNAL" - ODE will use an app-server provided database and pool.
+##                  The "ode-jbi.db.ext.dataSource" property will need to
+##                  be set.
+##   * "INTERNAL" - ODE will create its own connection pool for a user-
+##                  specified JDBC URL and driver.
+#ode-axis2.db.mode=EMBEDDED
+
+## EmbeddedDatabase Type ("DERBY", "H2", "HSQL")
+## What type of embedded database should ODE use?
+## Note: If an embedded name is not specified an in memory database will
+## will be used.
+##
+##   * "DERBY" - ODE will manage an embedded HSQL database instance
+##   * "H2" - ODE will manage an embedded HSQL database instance
+##   * "HSQL" - ODE will manage an embedded HSQL database instance
+#ode-axis2.db.emb.type=H2
+ode-axis2.db.emb.type=derby
+
+## External Database [JNDI Name]
+## JNDI Name of the DataSource for the ODE database. This is only
+## used if the "ode-jbi.db.mode" property is set to "EXTERNAL"
+#ode-axis2.db.ext.dataSource=java:comp/env/jdbc/ode
+
+## Embedded Database Name [String]
+## Name of the embedded Derby database. This is only used if the
+## "ode-jbi.db.mode" property is set to "EMBEDDED".
+#ode-jbi.db.emb.name=hibdb
+#ode-jbi.db.emb.name=jpadb
+
+## Internal Database Configuration
+#ode-jbi.db.int.jdbcurl=jdbc:mysql://localhost/ode?user=sa
+#ode-jbi.db.int.driver=com.mysql.jdbc.Driver
+#ode-axis2.db.int.password = 
+#ode-axis2.db.int.username = 
+
+## DB Pool Configuration for internal DB
+#ode-axis2.db.pool.max = 10
+#ode-axis2.db.pool.min = 1
+
+## DAO Connection Factory class.
+## uncomment the following for hibernate.
+#ode-axis2.dao.factory=org.apache.ode.daohib.bpel.BpelDAOConnectionFactoryImpl
+
+## Transaction Factory
+## default is org.apache.ode.il.EmbeddedGeronimoFactory
+## available alternatives are:
+##   org.apache.ode.axis2.util.GeronimoFactory
+##   org.apache.ode.axis2.util.JBossFactory
+##   org.apache.ode.axis2.util.TomcatFactory
+##   org.apache.ode.axis2.util.WLSFactory
+#ode-axis2.tx.factory.class = 
+
+## JCA connector port (default 2099), set to 0 to disable JCA connector
+#ode-axis2.jca.port = 
+
+## JCA conncetor name (default 'ode')
+#ode-axis2.jca.name = 
+
+## Working dir
+#ode-axis2.working.dir = 
+
+## MEX Interceptors
+#ode-axis2.mex.interceptors = 
+
+## Process dehydration
+#ode-axis2.process.dehydration = 
+
+## Event listeners
+#ode-axis2.event.listeners=
+#ode-axis2.event.listeners=org.apache.ode.bpel.common.evt.DebugBpelEventListener
\ No newline at end of file

Propchange: ode/trunk/axis2-war/src/main/webapp/WEB-INF/conf/ode-axis2.properties
------------------------------------------------------------------------------
    svn:eol-style = native