You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ode.apache.org by bu...@apache.org on 2013/01/10 18:35:09 UTC

svn commit: r845922 - in /websites/staging/ode/trunk/content: ./ databases.html resources/ODE_logo.png resources/ODE_logo_v6-1.png sitemap.html

Author: buildbot
Date: Thu Jan 10 17:35:09 2013
New Revision: 845922

Log:
Staging update by buildbot for ode

Added:
    websites/staging/ode/trunk/content/databases.html
    websites/staging/ode/trunk/content/resources/ODE_logo.png   (with props)
    websites/staging/ode/trunk/content/resources/ODE_logo_v6-1.png   (with props)
Modified:
    websites/staging/ode/trunk/content/   (props changed)
    websites/staging/ode/trunk/content/sitemap.html

Propchange: websites/staging/ode/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Thu Jan 10 17:35:09 2013
@@ -1 +1 @@
-1431516
+1431518

Added: websites/staging/ode/trunk/content/databases.html
==============================================================================
--- websites/staging/ode/trunk/content/databases.html (added)
+++ websites/staging/ode/trunk/content/databases.html Thu Jan 10 17:35:09 2013
@@ -0,0 +1,135 @@
+<!DOCTYPE html>
+<html>
+  <head>
+    <title>Apache ODE &ndash; Databases</title>
+    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
+    <meta property="og:image" content="http://ode.apache.org/img/ode-logo.png" />
+
+    <link href="/css/application.min.css" rel="stylesheet" media="screen">
+    
+
+    
+    
+  </head>
+  <body>
+
+    <!-- Navbar -->
+    <div class="navbar navbar-fixed-top">
+      <div class="navbar-inner">
+        <div class="container">
+          <button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+          </button>
+          <a class="brand" href="/index.html">Apache ODE</a>
+          <div class="nav-collapse collapse">
+            <ul class="nav">
+              <li class="">
+                <a href="/getting-ode.html">Getting ODE</a>
+              </li>
+              <li class="active dropdown">
+                <a href="/userguide/" class="dropdown-toggle" data-toggle="dropdown" data-target="#">Documentation<b class="caret"></b></a>
+                <ul class="dropdown-menu">
+                  <li><a href="/userguide/">User Guide</a></li>
+                  <li><a href="/developerguide/">Developer Guide</a></li>
+                  <li><a href="/ws-bpel-20-specification-compliance.html">WS-BPEL Compliance</a></li>
+                  <li><a href="/extensions/">WS-BPEL Extensions</a></li>
+                  <li><a href="/faq.html">FAQ</a></li>
+                  <li><a href="/roadmap.html">Roadmap</a></li>
+                  <li><a href="/resource-services.html">Resources &amp; Services</a></li>
+                  <li><a href="/javadoc/">Javadoc</a></li>
+                </ul>
+              </li>
+              <li class=" dropdown">
+                <a href="#" class="dropdown-toggle" data-toggle="dropdown">Contributing<b class="caret"></b></a>
+                <ul class="dropdown-menu">
+                  <li><a href="/mailing-lists.html">Mailing Lists</a></li>
+                  <li><a href="/developerguide/building-ode.html">Building ODE</a></li>
+                  <li><a href="/developerguide/source-code.html">Source Code</a></li>
+                  <li><a href="http://issues.apache.org/jira/browse/ODE">Bug Tracking</a></li>
+                  <li><a href="/contributors.html">Contributors</a></li>
+                  <li><a href="http://www.apache.org/licenses/LICENSE-2.0">License</a></li>
+                </ul>
+              </li>
+              <li class="dropdown">
+                <a href="http://www.apache.org" class="dropdown-toggle" data-toggle="dropdown" data-target="#">The ASF<b class="caret"></b></a>
+                <ul class="dropdown-menu">
+                  <li><a href="http://www.apache.org">Apache Software Foundation</a></li>
+                  <li><a href="http://www.apache.org/foundation/thanks.html">Thanks</a></li>
+                  <li><a href="http://www.apache.org/foundation/sponsorship.html">Become a Sponsor</a></li>
+                  <li><a href="http://www.apache.org/security/">Security</a></li>
+                </ul>
+              </li>
+            </ul>
+          </div>
+        </div>
+      </div>
+    </div>
+
+    <!-- Subhead -->
+    
+    <header class="jumbotron subhead" id="overview">
+      <div class="container">
+        
+        <h1>Databases</h1>
+        
+      </div>
+    </header>
+    
+
+    <!-- Content -->
+    <div class="container">
+      
+      <div class="row">
+        <div class="span12">
+          <h2 id="database-setup">Database Setup</h2>
+<p>The standard distribution of ODE relies on an <a href="http://openjpa.apache.org/">OpenJPA</a> data access layer to provide persistence. OpenJPA can support most major databases; consequently, ODE can in theory support most major databases.</p>
+<p>By default, the ODE distribution uses an embedded <a href="http://db.apache.org/derby/">Derby</a> instance to provide persistence facilities. In order to use a different database, one must generally:</p>
+<ul>
+<li>install the database</li>
+<li>populate the database with ODE's schema (schema files are found in <code>sql/*</code> of the ODE distribution)</li>
+<li>configure a datasource for the application server you're deploying ODE on.</li>
+<li>modify the ode properties file located inside the deployed WAR file or JBI service assembly in the conf subdirectory.</li>
+</ul>
+<p>Here is an example of ODE configuration:</p>
+<div class="codehilite"><pre><span class="na">ode-axis2.db.mode</span><span class="o">=</span><span class="s">EXTERNAL</span>
+<span class="na">ode-axis2.db.ext.dataSource</span><span class="o">=</span><span class="s">java:comp/env/jdbc/ODEDS</span>
+<span class="na">ode-axis2.tx.factory.class</span><span class="o">=</span><span class="s">org.apache.ode.axis2.util.GeronimoFactory</span>
+</pre></div>
+        </div>
+      </div>
+      
+
+      <!-- Footer -->
+      <footer class="footer">
+        <div class='row'>
+          <div class='span3'>
+            <img src="/img/asf.png" alt="Apache Software Foundation"/>
+          </div>
+          <div class='span9'>
+            <p><strong>Apache ODE</strong><sup>&trade;</sup> is a top-level project at the <a href="http://www.apache.org">Apache Software Foundation<sup>&trade;</sup></a>,
+            having graduated from the ASF Incubator in July 2007. Through a collaborative and meritocratic development process, Apache
+            projects deliver enterprise-grade, freely available software products that
+            attract large communities of users.</p>
+            <p>Apache ODE, ODE, Apache, the Apache feather logo, and the Apache ODE project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.</p>
+          </div>
+        </div>
+      </footer>
+    </div> <!-- /container -->
+    <script src="http://code.jquery.com/jquery-latest.js"></script>
+    <script src="/js/bootstrap.min.js"></script>
+    <script type="text/javascript">
+    var _gaq = _gaq || [];
+    _gaq.push(['_setAccount', 'UA-36293077-1']);
+    _gaq.push(['_trackPageview']);
+
+    (function() {
+      var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+      ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+      var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+    })();
+
+  </script>
+  </body>
+</html>
\ No newline at end of file

Added: websites/staging/ode/trunk/content/resources/ODE_logo.png
==============================================================================
Binary file - no diff available.

Propchange: websites/staging/ode/trunk/content/resources/ODE_logo.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: websites/staging/ode/trunk/content/resources/ODE_logo_v6-1.png
==============================================================================
Binary file - no diff available.

Propchange: websites/staging/ode/trunk/content/resources/ODE_logo_v6-1.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Modified: websites/staging/ode/trunk/content/sitemap.html
==============================================================================
--- websites/staging/ode/trunk/content/sitemap.html (original)
+++ websites/staging/ode/trunk/content/sitemap.html Thu Jan 10 17:35:09 2013
@@ -99,6 +99,7 @@
 <li><a href="/copy-with-insert-attribute.html">copy with insert attribute</a></li>
 <li><a href="/creating-a-process.html">Creating a Process</a></li>
 <li><a href="/custom-xpath-functions.html">Custom XPath Functions</a></li>
+<li><a href="/databases.html">Databases</a></li>
 <li><a href="/deployment-unit.html">deployment unit</a></li>
 <li><a href="/deployxml.html">deploy.xml</a></li>
 <li><a href="/direct-process-to-process-communication.html">Direct Process-to-Process Communication</a></li>