You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by bu...@apache.org on 2019/09/19 19:00:45 UTC

svn commit: r1050306 [3/4] - in /websites/production/geronimo/content: GMOxDEV/ GMOxDOC10/ GMOxDOC11/ GMOxDOC12/ GMOxDOC20/ GMOxDOC20ja/ GMOxDOC21/ GMOxDOC22/ GMOxDOC30/ GMOxKB/ cache/ doc/ gshell/

Modified: websites/production/geronimo/content/GMOxDOC22/configuring-multiple-repositories.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC22/configuring-multiple-repositories.html (original)
+++ websites/production/geronimo/content/GMOxDOC22/configuring-multiple-repositories.html Thu Sep 19 19:00:43 2019
@@ -105,11 +105,11 @@
 
 <p>This document is organized into the following sections:</p>
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731542744 {padding: 0px;}
-div.rbtoc1567731542744 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731542744 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919330954 {padding: 0px;}
+div.rbtoc1568919330954 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919330954 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731542744">
+/*]]>*/</style><div class="toc-macro rbtoc1568919330954">
 <ul class="toc-indentation"><li><a shape="rect" href="#Configuringmultiplerepositories-Creatingmultiplerepositoriesonasingleserverinstance">Creating multiple repositories on a single server instance</a>
 <ul class="toc-indentation"><li><a shape="rect" href="#Configuringmultiplerepositories-Creatingarepositorybesidesthedefaultrepository">Creating a repository besides the default repository</a></li><li><a shape="rect" href="#Configuringmultiplerepositories-Deployinganapplicationtotherepository">Deploying an application to the repository</a></li></ul>
 </li><li><a shape="rect" href="#Configuringmultiplerepositories-Creatingmultiplerepositoriesonmultipleserverinstances">Creating multiple repositories on multiple server instances</a>

Modified: websites/production/geronimo/content/GMOxDOC22/configuring-run-as-and-default-subjects-and-principal-role-mapping.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC22/configuring-run-as-and-default-subjects-and-principal-role-mapping.html (original)
+++ websites/production/geronimo/content/GMOxDOC22/configuring-run-as-and-default-subjects-and-principal-role-mapping.html Thu Sep 19 19:00:43 2019
@@ -110,118 +110,7 @@
 
 <p>For each Subject accessible through a credential store you need to specify an id, the realm to log in to, and credentials, which depend on the security realm requirements but are typically the name and password.  The schema is as follows:</p>
 
-Error rendering macro 'code': Invalid value specified for parameter 'java.lang.NullPointerException'<pre>
-&lt;?xml version="1.0" encoding="UTF-8"?&gt;
-&lt;!--
-    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.
---&gt;
-
-&lt;!-- $Rev$ $Date$ --&gt;
-
-&lt;xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
-            xmlns:cs="http://geronimo.apache.org/xml/ns/credentialstore-1.0"
-            targetNamespace="http://geronimo.apache.org/xml/ns/credentialstore-1.0"
-            elementFormDefault="qualified" attributeFormDefault="unqualified"
-            version="1.0"&gt;
-
-    &lt;xsd:annotation&gt;
-        &lt;xsd:documentation&gt;
-            This is an XML Schema Definition for credential store configuration.
-            CredentialStore configuration is
-            specified by the element credential-store with namespace
-            specified as xmlns =
-            "http://geronimo.apache.org/xml/ns/credentialstore-1.0".
-        &lt;/xsd:documentation&gt;
-    &lt;/xsd:annotation&gt;
-
-    &lt;xsd:element name="credential-store" type="cs:credential-storeType"&gt;
-        &lt;xsd:annotation&gt;
-            &lt;xsd:documentation&gt;
-                The root element for Geronimo credential store configuration. This
-                is a tree structure of realm, id, and sets of credentials such as name and password
-            &lt;/xsd:documentation&gt;
-        &lt;/xsd:annotation&gt;
-    &lt;/xsd:element&gt;
-
-    &lt;xsd:complexType name="credential-storeType"&gt;
-        &lt;xsd:annotation&gt;
-            &lt;xsd:documentation&gt;
-                Defines the list of realms
-            &lt;/xsd:documentation&gt;
-        &lt;/xsd:annotation&gt;
-        &lt;xsd:sequence&gt;
-            &lt;xsd:element name="realm" type="cs:realmType" minOccurs="0" maxOccurs="unbounded"&gt;
-                &lt;xsd:annotation&gt;
-                    &lt;xsd:documentation&gt;
-                        The realm element contains the credentials for subjects in that realm.
-                    &lt;/xsd:documentation&gt;
-                &lt;/xsd:annotation&gt;
-            &lt;/xsd:element&gt;
-        &lt;/xsd:sequence&gt;
-    &lt;/xsd:complexType&gt;
-
-    &lt;xsd:complexType name="realmType"&gt;
-        &lt;xsd:sequence&gt;
-            &lt;xsd:element name="subject" type="cs:subjectType" minOccurs="0" maxOccurs="unbounded"/&gt;
-        &lt;/xsd:sequence&gt;
-        &lt;xsd:attribute name="name" type="xsd:string" use="required"&gt;
-            &lt;xsd:annotation&gt;
-                &lt;xsd:documentation&gt;
-                    The name attribute specifies the login realm name
-                &lt;/xsd:documentation&gt;
-            &lt;/xsd:annotation&gt;
-        &lt;/xsd:attribute&gt;
-    &lt;/xsd:complexType&gt;
-
-    &lt;xsd:complexType name="subjectType"&gt;
-        &lt;xsd:sequence&gt;
-            &lt;xsd:element name="id" type="xsd:string"&gt;
-                &lt;xsd:annotation&gt;
-                    &lt;xsd:documentation&gt;
-                        The id element serves to identify the subject externally. For subjects with meaningful
-                        names it might be convenient to use the name as id.
-                    &lt;/xsd:documentation&gt;
-                &lt;/xsd:annotation&gt;
-            &lt;/xsd:element&gt;
-            &lt;xsd:element name="credential" type="cs:credentialType" minOccurs="0" maxOccurs="unbounded"/&gt;
-        &lt;/xsd:sequence&gt;
-    &lt;/xsd:complexType&gt;
-
-    &lt;xsd:complexType name="credentialType"&gt;
-        &lt;xsd:sequence&gt;
-            &lt;xsd:element name="type" type="xsd:string"&gt;
-                &lt;xsd:annotation&gt;
-                    &lt;xsd:documentation&gt;
-                        Class name or alias of the callback handler that will accept this credential
-                    &lt;/xsd:documentation&gt;
-                &lt;/xsd:annotation&gt;
-            &lt;/xsd:element&gt;
-            &lt;xsd:element name="value" type="xsd:string"&gt;
-                &lt;xsd:annotation&gt;
-                    &lt;xsd:documentation&gt;
-                        credential value as a string.
-                    &lt;/xsd:documentation&gt;
-                &lt;/xsd:annotation&gt;
-            &lt;/xsd:element&gt;
-        &lt;/xsd:sequence&gt;
-    &lt;/xsd:complexType&gt;
-
-
-&lt;/xsd:schema&gt;
-</pre>
+An error occurred: Connection refused (Connection refused). The error has been recorded.
 
 
 <p>At the moment Geronimo supplies callback handlers for name and password.  For other security realm requirements (e.g. certificates) you will have to write a callback handler.</p>
@@ -285,189 +174,7 @@ Error rendering macro 'code': Invalid va
 
 <p>The schema for security configuration is as follows:</p>
 
-Error rendering macro 'code': Invalid value specified for parameter 'java.lang.NullPointerException'<pre>
-&lt;?xml version="1.0" encoding="UTF-8"?&gt;
-&lt;!--
-
-    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.
---&gt;
-
-&lt;!-- $Rev$ $Date$ --&gt;
-
-&lt;xsd:schema
-        xmlns:xsd="http://www.w3.org/2001/XMLSchema"
-        xmlns:j2ee="http://java.sun.com/xml/ns/j2ee"
-        xmlns:geronimo="http://geronimo.apache.org/xml/ns/security-2.0"
-        targetNamespace="http://geronimo.apache.org/xml/ns/security-2.0"
-        xmlns:app="http://geronimo.apache.org/xml/ns/j2ee/application-2.0"
-        xmlns:sys="http://geronimo.apache.org/xml/ns/deployment-1.2"
-        elementFormDefault="qualified"
-        attributeFormDefault="unqualified"
-        version="2.0"&gt;
-
-    &lt;xsd:import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="http://www.w3.org/2001/xml.xsd"/&gt;
-    &lt;xsd:import namespace="http://geronimo.apache.org/xml/ns/j2ee/application-2.0" schemaLocation="geronimo-application-2.0.xsd"/&gt;
-    &lt;xsd:import namespace="http://geronimo.apache.org/xml/ns/deployment-1.2"  schemaLocation="geronimo-module-1.2.xsd"/&gt;
-
-    &lt;xsd:element name="security" type="geronimo:securityType" substitutionGroup="app:security"/&gt;
-    &lt;xsd:element name="credential-store" type="sys:patternType"/&gt;
-    &lt;xsd:element name="default-subject" type="geronimo:subject-infoType"/&gt;
-
-    &lt;xsd:complexType name="securityType"&gt;
-        &lt;xsd:annotation&gt;
-            &lt;xsd:documentation&gt;
-                Security entries
-
-                If this element is present, all web and EJB modules MUST make the
-                appropriate access checks as outlined in the JACC spec.
-            &lt;/xsd:documentation&gt;
-        &lt;/xsd:annotation&gt;
-        &lt;xsd:complexContent&gt;
-            &lt;xsd:extension base="app:abstract-securityType"&gt;
-
-                &lt;xsd:sequence&gt;
-                    &lt;xsd:element name="description" type="geronimo:descriptionType" minOccurs="0"
-                                 maxOccurs="unbounded"/&gt;
-                    &lt;xsd:element name="credential-store-ref" type="sys:patternType" minOccurs="0"/&gt;
-                    &lt;xsd:element name="default-subject" type="geronimo:subject-infoType" minOccurs="0"/&gt;
-                    &lt;xsd:element name="role-mappings" type="geronimo:role-mappingsType" minOccurs="0"/&gt;
-                &lt;/xsd:sequence&gt;
-                &lt;xsd:attribute name="doas-current-caller" type="xsd:boolean" default="false"&gt;
-                    &lt;xsd:annotation&gt;
-                        &lt;xsd:documentation&gt;
-                            Set this attribute to "true" if the work is to be performed
-                            as the calling Subject.
-                        &lt;/xsd:documentation&gt;
-                    &lt;/xsd:annotation&gt;
-                &lt;/xsd:attribute&gt;
-                &lt;xsd:attribute name="use-context-handler" type="xsd:boolean" default="false"&gt;
-                    &lt;xsd:annotation&gt;
-                        &lt;xsd:documentation&gt;
-                            Set this attribute to "true" if the installed JACC policy
-                            contexts will use PolicyContextHandlers.
-                        &lt;/xsd:documentation&gt;
-                    &lt;/xsd:annotation&gt;
-                &lt;/xsd:attribute&gt;
-                &lt;xsd:attribute name="default-role" type="xsd:string"&gt;
-                    &lt;xsd:annotation&gt;
-                        &lt;xsd:documentation&gt;
-                            Used by the the Deployer to assign method permissions for
-                            all of the unspecified methods, either by assigning them
-                            to security roles, or by marking them as unchecked. If
-                            the value of default-role is empty, then the unspecified
-                            methods are marked unchecked
-                        &lt;/xsd:documentation&gt;
-                    &lt;/xsd:annotation&gt;
-                &lt;/xsd:attribute&gt;
-            &lt;/xsd:extension&gt;
-        &lt;/xsd:complexContent&gt;
-    &lt;/xsd:complexType&gt;
-
-    &lt;xsd:complexType name="descriptionType"&gt;
-        &lt;xsd:simpleContent&gt;
-            &lt;xsd:extension base="xsd:string"&gt;
-                &lt;xsd:attribute ref="xml:lang"/&gt;
-            &lt;/xsd:extension&gt;
-        &lt;/xsd:simpleContent&gt;
-    &lt;/xsd:complexType&gt;
-
-    &lt;xsd:complexType name="named-username-password-credentialType"&gt;
-        &lt;xsd:sequence&gt;
-            &lt;xsd:element name="name" type="xsd:string"/&gt;
-            &lt;xsd:element name="username" type="xsd:string"/&gt;
-            &lt;xsd:element name="password" type="xsd:string"/&gt;
-        &lt;/xsd:sequence&gt;
-    &lt;/xsd:complexType&gt;
-
-    &lt;xsd:complexType name="role-mappingsType"&gt;
-        &lt;xsd:sequence&gt;
-            &lt;xsd:element name="role" type="geronimo:roleType" minOccurs="1" maxOccurs="unbounded"/&gt;
-        &lt;/xsd:sequence&gt;
-    &lt;/xsd:complexType&gt;
-
-    &lt;xsd:complexType name="roleType"&gt;
-        &lt;xsd:sequence&gt;
-            &lt;xsd:element name="description" type="geronimo:descriptionType" minOccurs="0" maxOccurs="unbounded"/&gt;
-            &lt;xsd:element name="run-as-subject" type="geronimo:subject-infoType" minOccurs="0"/&gt;
-            &lt;xsd:element name="realm-principal" type="geronimo:realmPrincipalType" minOccurs="0" maxOccurs="unbounded"/&gt;
-            &lt;xsd:element name="login-domain-principal" type="geronimo:loginDomainPrincipalType" minOccurs="0"
-                         maxOccurs="unbounded"/&gt;
-            &lt;xsd:element name="principal" type="geronimo:principalType" minOccurs="0" maxOccurs="unbounded"/&gt;
-            &lt;xsd:element name="distinguished-name" type="geronimo:distinguishedNameType" minOccurs="0"
-                         maxOccurs="unbounded"/&gt;
-        &lt;/xsd:sequence&gt;
-        &lt;xsd:attribute name="role-name" type="xsd:string" use="required"/&gt;
-    &lt;/xsd:complexType&gt;
-
-    &lt;xsd:complexType name="realmPrincipalType"&gt;
-        &lt;xsd:complexContent&gt;
-            &lt;xsd:extension base="geronimo:loginDomainPrincipalType"&gt;
-                &lt;xsd:attribute name="realm-name" type="xsd:string" use="required"/&gt;
-            &lt;/xsd:extension&gt;
-        &lt;/xsd:complexContent&gt;
-    &lt;/xsd:complexType&gt;
-
-    &lt;xsd:complexType name="loginDomainPrincipalType"&gt;
-        &lt;xsd:complexContent&gt;
-            &lt;xsd:extension base="geronimo:principalType"&gt;
-                &lt;xsd:attribute name="domain-name" type="xsd:string" use="required"/&gt;
-            &lt;/xsd:extension&gt;
-        &lt;/xsd:complexContent&gt;
-    &lt;/xsd:complexType&gt;
-
-    &lt;xsd:complexType name="principalType"&gt;
-        &lt;xsd:sequence&gt;
-            &lt;xsd:element name="description" type="geronimo:descriptionType" minOccurs="0" maxOccurs="unbounded"/&gt;
-        &lt;/xsd:sequence&gt;
-        &lt;xsd:attribute name="class" type="xsd:string" use="required"/&gt;
-        &lt;xsd:attribute name="name" type="xsd:string" use="required"/&gt;
-    &lt;/xsd:complexType&gt;
-
-    &lt;xsd:complexType name="distinguishedNameType"&gt;
-        &lt;xsd:sequence&gt;
-            &lt;xsd:element name="description" type="geronimo:descriptionType" minOccurs="0" maxOccurs="unbounded"/&gt;
-        &lt;/xsd:sequence&gt;
-        &lt;xsd:attribute name="name" type="xsd:string" use="required"/&gt;
-    &lt;/xsd:complexType&gt;
-
-    &lt;xsd:complexType name="subject-infoType"&gt;
-        &lt;xsd:sequence&gt;
-            &lt;xsd:element name="description" type="geronimo:descriptionType" minOccurs="0" maxOccurs="unbounded"/&gt;
-            &lt;xsd:element name="realm" type="xsd:string"/&gt;
-            &lt;xsd:element name="id" type="xsd:string"/&gt;
-        &lt;/xsd:sequence&gt;
-    &lt;/xsd:complexType&gt;
-
-    &lt;!--&lt;xsd:complexType name="credential-storeType"&gt;--&gt;
-        &lt;!--&lt;xsd:sequence&gt;--&gt;
-            &lt;!--&lt;xsd:element name="pattern" type="sys:patternType"&gt;--&gt;
-                &lt;!--&lt;xsd:annotation&gt;--&gt;
-                    &lt;!--&lt;xsd:documentation&gt;--&gt;
-                        &lt;!--The pattern element defines a components of the--&gt;
-                        &lt;!--abstract name of GBean referred. It (optionally) includes--&gt;
-                        &lt;!--the groupId, artifactId, version,--&gt;
-                        &lt;!--module, type, and name of the GBean module.--&gt;
-                    &lt;!--&lt;/xsd:documentation&gt;--&gt;
-                &lt;!--&lt;/xsd:annotation&gt;--&gt;
-            &lt;!--&lt;/xsd:element&gt;--&gt;
-        &lt;!--&lt;/xsd:sequence&gt;--&gt;
-    &lt;!--&lt;/xsd:complexType&gt;--&gt;
-
-&lt;/xsd:schema&gt;
-</pre>
+An error occurred: Connection refused (Connection refused). The error has been recorded.
 
 
 <p>The credential store to use is specified in the credential-store-ref.  Normally you only need only supply the name component of the credential store name: for most purposes you are likely to include an app specific credential store in the app plan, but otherwise you need to assure that the credential store gbean is in the ancestor configurations of the application.</p>

Modified: websites/production/geronimo/content/GMOxDOC22/converting-applications-into-plugins-using-the-administration-console.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC22/converting-applications-into-plugins-using-the-administration-console.html (original)
+++ websites/production/geronimo/content/GMOxDOC22/converting-applications-into-plugins-using-the-administration-console.html Thu Sep 19 19:00:43 2019
@@ -108,11 +108,11 @@
 Starting from Geronimo V2.2, only car packages will be listed for export.</p></div></div>
 
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731528261 {padding: 0px;}
-div.rbtoc1567731528261 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731528261 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919313520 {padding: 0px;}
+div.rbtoc1568919313520 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919313520 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731528261">
+/*]]>*/</style><div class="toc-macro rbtoc1568919313520">
 <ul class="toc-indentation"><li><a shape="rect" href="#ConvertingapplicationsintopluginsusingtheAdministrationConsole-Convertingtheapplicationintoapluginviaconsole">Converting the application into a plugin via console</a></li><li><a shape="rect" href="#ConvertingapplicationsintopluginsusingtheAdministrationConsole-Exportingandimportingpluginsviaconsole">Exporting and importing plugins via console</a>
 <ul class="toc-indentation"><li><a shape="rect" href="#ConvertingapplicationsintopluginsusingtheAdministrationConsole-Exportingtheapplicationasaplugin">Exporting the application as a plugin</a></li><li><a shape="rect" href="#ConvertingapplicationsintopluginsusingtheAdministrationConsole-CreateacustomrepositoryfromGeronimoAdministrativeConsole">Create a custom repository from Geronimo Administrative Console</a></li><li><a shape="rect" href="#ConvertingapplicationsintopluginsusingtheAdministrationConsole-Importingtheplugin">Importing the plugin</a></li></ul>
 </li></ul>

Modified: websites/production/geronimo/content/GMOxDOC22/creating-deployment-plans-for-java-persistence-api.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC22/creating-deployment-plans-for-java-persistence-api.html (original)
+++ websites/production/geronimo/content/GMOxDOC22/creating-deployment-plans-for-java-persistence-api.html Thu Sep 19 19:00:43 2019
@@ -106,11 +106,11 @@
 
 <p>The document is organized as follows.</p>
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731569808 {padding: 0px;}
-div.rbtoc1567731569808 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731569808 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919355068 {padding: 0px;}
+div.rbtoc1568919355068 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919355068 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731569808">
+/*]]>*/</style><div class="toc-macro rbtoc1568919355068">
 <ul class="toc-indentation"><li><a shape="rect" href="#CreatingdeploymentplansforJavaPersistenceAPI-JavaPersistenceAPI">Java Persistence API</a>
 <ul class="toc-indentation"><li><a shape="rect" href="#CreatingdeploymentplansforJavaPersistenceAPI-ShareAccountsample">ShareAccount sample</a></li><li><a shape="rect" href="#CreatingdeploymentplansforJavaPersistenceAPI-Inheritancerelationshipinentities">Inheritance relationship in entities</a>
 <ul class="toc-indentation"><li><a shape="rect" href="#CreatingdeploymentplansforJavaPersistenceAPI-Singledatabasetableperclasshierarchy">Single database table per class hierarchy</a></li></ul>

Modified: websites/production/geronimo/content/GMOxDOC22/creating-deployment-plans-for-web-applications.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC22/creating-deployment-plans-for-web-applications.html (original)
+++ websites/production/geronimo/content/GMOxDOC22/creating-deployment-plans-for-web-applications.html Thu Sep 19 19:00:43 2019
@@ -105,11 +105,11 @@ In the <code>geronimo-web.xml</code> fil
 <p>The <code>geronimo-web.xml</code> uses XML elements from <a shape="rect" class="external-link" href="http://geronimo.apache.org/xml/ns/j2ee/web-2.0.1">http://geronimo.apache.org/xml/ns/j2ee/web-2.0.1</a> namespace and one or more namespaces mentioned in <a shape="rect" href="configuring-resources-in-the-application-scope.html">Configuring resources in the application scope</a> section earlier in the document. </p>
 
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731600247 {padding: 0px;}
-div.rbtoc1567731600247 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731600247 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919385444 {padding: 0px;}
+div.rbtoc1568919385444 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919385444 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731600247">
+/*]]>*/</style><div class="toc-macro rbtoc1568919385444">
 <ul class="toc-indentation"><li><a shape="rect" href="#CreatingdeploymentplansforWebapplications-SampleplanforaWebapplication">Sample plan for a Web application</a></li><li><a shape="rect" href="#CreatingdeploymentplansforWebapplications-Containerspecificconfigurationinawebapplication">Container specific configuration in a web application</a>
 <ul class="toc-indentation"><li><a shape="rect" href="#CreatingdeploymentplansforWebapplications-Thecontainer-configelement">The container-config element</a></li></ul>
 </li></ul>

Modified: websites/production/geronimo/content/GMOxDOC22/deploying-and-running-ejb-application-clients.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC22/deploying-and-running-ejb-application-clients.html (original)
+++ websites/production/geronimo/content/GMOxDOC22/deploying-and-running-ejb-application-clients.html Thu Sep 19 19:00:43 2019
@@ -109,11 +109,11 @@
 
 <p>Details on installing eclipse are provided in the <a shape="rect" href="development-environment.html">Development environment</a> section. This tutorial is organized in the following sections:</p>
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731549505 {padding: 0px;}
-div.rbtoc1567731549505 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731549505 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919336851 {padding: 0px;}
+div.rbtoc1568919336851 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919336851 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731549505">
+/*]]>*/</style><div class="toc-macro rbtoc1568919336851">
 <ul class="toc-indentation"><li><a shape="rect" href="#DeployingandrunningEJBapplicationclients-SettingupEclipseIDEforEJBapplicationdevelopment">Setting up Eclipse IDE for EJB application development</a></li><li><a shape="rect" href="#DeployingandrunningEJBapplicationclients-DevelopingEJBlocalinterface,EJBremoteinterfaceandBeanclass">Developing EJB local interface, EJB remote interface and Bean class</a></li><li><a shape="rect" href="#DeployingandrunningEJBapplicationclients-DevelopingaJavaClient">Developing a Java Client</a></li><li><a shape="rect" href="#DeployingandrunningEJBapplicationclients-Deployandrun">Deploy and run</a></li></ul>
 </div>
 <p>Let us briefly understand this application. This application will take you through creating a simple Stateless Session EJB. Later we will develop a Java Application client to access this EJB. EJB development will make use of annotations which are introduced in Java EE5.</p>

Modified: websites/production/geronimo/content/GMOxDOC22/deploying-and-undeploying-applications.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC22/deploying-and-undeploying-applications.html (original)
+++ websites/production/geronimo/content/GMOxDOC22/deploying-and-undeploying-applications.html Thu Sep 19 19:00:43 2019
@@ -103,11 +103,11 @@
 
 <p>There are several alternatives available for Deploying and undeploying applications:</p>
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731569214 {padding: 0px;}
-div.rbtoc1567731569214 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731569214 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919350907 {padding: 0px;}
+div.rbtoc1568919350907 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919350907 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731569214">
+/*]]>*/</style><div class="toc-macro rbtoc1568919350907">
 <ul class="toc-indentation"><li><a shape="rect" href="#Deployingandundeployingapplications-ViaGeronimoAdministrationConsoleGACdeploy">Via Geronimo Administration Console</a></li><li><a shape="rect" href="#Deployingandundeployingapplications-ViahotdeploymentHotdeploy">Via hot deployment</a></li><li><a shape="rect" href="#Deployingandundeployingapplications-ViaDeployertooldeployertool">Via Deployer tool</a></li><li><a shape="rect" href="#Deployingandundeployingapplications-ViaGShellGshelldeploy">Via GShell</a></li><li><a shape="rect" href="#Deployingandundeployingapplications-ViaGEPGEPdeploy">Via GEP</a></li><li><a shape="rect" href="#Deployingandundeployingapplications-ViaClusteringWADIdeploy">Via Clustering</a></li></ul>
 </div>
 

Modified: websites/production/geronimo/content/GMOxDOC22/developing-a-hello-world-web-application.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC22/developing-a-hello-world-web-application.html (original)
+++ websites/production/geronimo/content/GMOxDOC22/developing-a-hello-world-web-application.html Thu Sep 19 19:00:43 2019
@@ -112,11 +112,11 @@
 
 <p>Details on installing eclipse are provided in the <a shape="rect" href="development-environment.html">Development environment</a> section. This tutorial is organized in the following sections:</p>
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731559154 {padding: 0px;}
-div.rbtoc1567731559154 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731559154 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919346278 {padding: 0px;}
+div.rbtoc1568919346278 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919346278 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731559154">
+/*]]>*/</style><div class="toc-macro rbtoc1568919346278">
 <ul class="toc-indentation"><li><a shape="rect" href="#DevelopingaHelloWorldWebapplication-CreatingadynamicWebprojectusingEclipse">Creating a dynamic Web project using Eclipse</a></li><li><a shape="rect" href="#DevelopingaHelloWorldWebapplication-AddingaJSPtotheproject">Adding a JSP to the project</a></li><li><a shape="rect" href="#DevelopingaHelloWorldWebapplication-Makinghellp.jspthewelcomefile">Making hellp.jsp the welcome file</a></li><li><a shape="rect" href="#DevelopingaHelloWorldWebapplication-Runanddeploy">Run and deploy</a></li></ul>
 </div>
 

Modified: websites/production/geronimo/content/GMOxDOC22/developing-container-managed-persistence-with-jpa.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC22/developing-container-managed-persistence-with-jpa.html (original)
+++ websites/production/geronimo/content/GMOxDOC22/developing-container-managed-persistence-with-jpa.html Thu Sep 19 19:00:43 2019
@@ -117,15 +117,15 @@
 
 <p>The tutorial is divided into the following sections.</p>
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731557882 {padding: 0px;}
-div.rbtoc1567731557882 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731557882 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919345277 {padding: 0px;}
+div.rbtoc1568919345277 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919345277 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731557882">
+/*]]>*/</style><div class="toc-macro rbtoc1568919345277">
 <ul class="toc-indentation"><li><a shape="rect" href="#DevelopingcontainermanagedpersistencewithJPA-SettingtheEclipseenvironment">Setting the Eclipse environment</a></li><li><a shape="rect" href="#DevelopingcontainermanagedpersistencewithJPA-Creatingejbapplicationwithentities">Creating ejb application with entities</a></li><li><a shape="rect" href="#DevelopingcontainermanagedpersistencewithJPA-Creatingwebapplication">Creating web application</a></li><li><a shape="rect" href="#DevelopingcontainermanagedpersistencewithJPA-SettingupthedatabasetablesandtheDatasource">Setting up the database tables and the Datasource</a></li><li><a shape="rect" href="#DevelopingcontainermanagedpersistencewithJPA-Deployingthe(ear)application">Deploying the (ear) application</a></li></ul>
 </div>
 
-<p>The entire application can be downloaded from this <a shape="rect" href="developing-container-managed-persistence-with-jpa.data/ContainerManagedJPA-EAR.ear?version=1&amp;modificationDate=1213308862000&amp;api=v2" data-linked-resource-id="7894" data-linked-resource-version="1" data-linked-resource-type="attachment" data-linked-resource-default-alias="ContainerManagedJPA-EAR.ear" data-nice-type="Java Archive" data-linked-resource-content-type="application/octet-stream" data-linked-resource-container-id="93372" data-linked-resource-container-version="47">link</a>.</p>
+<p>The entire application can be downloaded from this <a shape="rect" href="developing-container-managed-persistence-with-jpa.data/ContainerManagedJPA-EAR.ear?version=1&amp;modificationDate=1213308862000&amp;api=v2" data-linked-resource-id="7894" data-linked-resource-version="1" data-linked-resource-type="attachment" data-linked-resource-default-alias="ContainerManagedJPA-EAR.ear" data-nice-type="Java Archive" data-linked-resource-content-type="application/octet-stream" data-linked-resource-container-id="93372" data-linked-resource-container-version="48">link</a>.</p>
 
 <h2 id="DevelopingcontainermanagedpersistencewithJPA-SettingtheEclipseenvironment">Setting the Eclipse environment</h2>
 

Modified: websites/production/geronimo/content/GMOxDOC22/developing-ejb-applications.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC22/developing-ejb-applications.html (original)
+++ websites/production/geronimo/content/GMOxDOC22/developing-ejb-applications.html Thu Sep 19 19:00:43 2019
@@ -109,11 +109,11 @@
 <p>This document is organized in the following sections:</p>
 
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731530696 {padding: 0px;}
-div.rbtoc1567731530696 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731530696 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919315501 {padding: 0px;}
+div.rbtoc1568919315501 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919315501 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731530696">
+/*]]>*/</style><div class="toc-macro rbtoc1568919315501">
 <ul class="toc-indentation"><li><a shape="rect" href="#DevelopingEJBapplications-EJB2VsEJB3">EJB2 Vs EJB3</a></li><li><a shape="rect" href="#DevelopingEJBapplications-TypesofBeans">Types of Beans</a></li><li><a shape="rect" href="#DevelopingEJBapplications-EJBtutorials">EJB tutorials</a></li></ul>
 </div>
 

Modified: websites/production/geronimo/content/GMOxDOC22/developing-persistence-for-jsf-applications-with-jpa.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC22/developing-persistence-for-jsf-applications-with-jpa.html (original)
+++ websites/production/geronimo/content/GMOxDOC22/developing-persistence-for-jsf-applications-with-jpa.html Thu Sep 19 19:00:43 2019
@@ -106,7 +106,7 @@
 
 <p>Below tutorial explains developing a JSF (JavaServerFaces) application using JPA for persistence. The application has an ejb application and a web application. The ejb application uses JPA to manipulate entities in the database. The web application uses JSF to look up ejbs that trigger operations on the entities. The database being used is the embedded derby database shipped with geronimo. The web application displays a list of currencies of various countries along with the corresponding USD conversion rate. The web interface allows user to add a new currency, edit the existing currency and delete a currency etc. </p>
 
-<p>The application can be downloaded from this <a shape="rect" href="developing-persistence-for-jsf-applications-with-jpa.data/JPA-JSFApp.ear?version=1&amp;modificationDate=1212445244000&amp;api=v2" data-linked-resource-id="8644" data-linked-resource-version="1" data-linked-resource-type="attachment" data-linked-resource-default-alias="JPA-JSFApp.ear" data-nice-type="Java Archive" data-linked-resource-content-type="application/octet-stream" data-linked-resource-container-id="93304" data-linked-resource-container-version="44">link</a>.</p>
+<p>The application can be downloaded from this <a shape="rect" href="developing-persistence-for-jsf-applications-with-jpa.data/JPA-JSFApp.ear?version=1&amp;modificationDate=1212445244000&amp;api=v2" data-linked-resource-id="8644" data-linked-resource-version="1" data-linked-resource-type="attachment" data-linked-resource-default-alias="JPA-JSFApp.ear" data-nice-type="Java Archive" data-linked-resource-content-type="application/octet-stream" data-linked-resource-container-id="93304" data-linked-resource-container-version="45">link</a>.</p>
 
 <p>In order to develop, deploy and run the application, the following environment is required.</p>
 

Modified: websites/production/geronimo/content/GMOxDOC22/developing-user-interface-with-jsf.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC22/developing-user-interface-with-jsf.html (original)
+++ websites/production/geronimo/content/GMOxDOC22/developing-user-interface-with-jsf.html Thu Sep 19 19:00:43 2019
@@ -107,11 +107,11 @@
 
 <p>The tutorial is divided into the following sections.</p>
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731540982 {padding: 0px;}
-div.rbtoc1567731540982 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731540982 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919328288 {padding: 0px;}
+div.rbtoc1568919328288 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919328288 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731540982">
+/*]]>*/</style><div class="toc-macro rbtoc1568919328288">
 <ul class="toc-indentation"><li><a shape="rect" href="#DevelopinguserinterfacewithJSF-SettinguptheEclipseenvironment">Setting up the Eclipse environment</a></li><li><a shape="rect" href="#DevelopinguserinterfacewithJSF-CreatingWEBapplicationwithentities">Creating WEB application with entities</a>
 <ul class="toc-indentation"><li><a shape="rect" href="#DevelopinguserinterfacewithJSF-CreatingadynamicWebprojectanddefiningJSFcapabilities">Creating a dynamic Web project and defining JSF capabilities</a></li><li><a shape="rect" href="#DevelopinguserinterfacewithJSF-Implementingpersistencefortheapplication">Implementing persistence for the application</a></li><li><a shape="rect" href="#DevelopinguserinterfacewithJSF-DefiningUIcomponents">Defining UI components</a></li><li><a shape="rect" href="#DevelopinguserinterfacewithJSF-ConfiguringJSFmanagedbeansandassociatingmanagedbeanactionstoevents">Configuring JSF managed beans and associating managed bean actions to events</a></li></ul>
 </li><li><a shape="rect" href="#DevelopinguserinterfacewithJSF-SettingupthedatabasetablesandtheDatasource">Setting up the database tables and the Datasource</a></li><li><a shape="rect" href="#DevelopinguserinterfacewithJSF-Deployingthe(war)application">Deploying the (war) application</a></li><li><a shape="rect" href="#DevelopinguserinterfacewithJSF-Runningtheapplication">Running the application</a></li></ul>
@@ -123,7 +123,7 @@ div.rbtoc1567731540982 li {margin-left:
 
 
 
-<p>The entire application can be downloaded from this <a shape="rect" href="developing-user-interface-with-jsf.data/EmployeeWEB.war?version=1&amp;modificationDate=1214966340000&amp;api=v2" data-linked-resource-id="59672706" data-linked-resource-version="1" data-linked-resource-type="attachment" data-linked-resource-default-alias="EmployeeWEB.war" data-nice-type="Java Archive" data-linked-resource-content-type="application/octet-stream" data-linked-resource-container-id="93318" data-linked-resource-container-version="54">link</a>.</p>
+<p>The entire application can be downloaded from this <a shape="rect" href="developing-user-interface-with-jsf.data/EmployeeWEB.war?version=1&amp;modificationDate=1214966340000&amp;api=v2" data-linked-resource-id="59672706" data-linked-resource-version="1" data-linked-resource-type="attachment" data-linked-resource-default-alias="EmployeeWEB.war" data-nice-type="Java Archive" data-linked-resource-content-type="application/octet-stream" data-linked-resource-container-id="93318" data-linked-resource-container-version="55">link</a>.</p>
 
 <h2 id="DevelopinguserinterfacewithJSF-SettinguptheEclipseenvironment">Setting up the Eclipse environment</h2>
 

Modified: websites/production/geronimo/content/GMOxDOC22/ejb-failover.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC22/ejb-failover.html (original)
+++ websites/production/geronimo/content/GMOxDOC22/ejb-failover.html Thu Sep 19 19:00:43 2019
@@ -104,11 +104,11 @@
 <p>In Geronimo, you can configure <a shape="rect" class="external-link" href="http://openejb.apache.org/3.0/failover.html" title="OpenEJB failover">OpenEJB for failover scenarios</a>, such as multipoint and multicast. Further more, Geronimo uses WADI to support failover for Stateful Session Bean (SFSB) in a unicast way.</p>
 
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731611033 {padding: 0px;}
-div.rbtoc1567731611033 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731611033 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919394822 {padding: 0px;}
+div.rbtoc1568919394822 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919394822 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731611033">
+/*]]>*/</style><div class="toc-macro rbtoc1568919394822">
 <ul class="toc-indentation"><li><a shape="rect" href="#EJBfailover-Enablingmultipoint/multicastfailover">Enabling multipoint/multicast failover</a>
 <ul class="toc-indentation"><li><a shape="rect" href="#EJBfailover-Developingtheclient">Developing the client</a></li><li><a shape="rect" href="#EJBfailover-failoverstrategies">failover strategies</a></li></ul>
 </li><li><a shape="rect" href="#EJBfailover-Enablingunicastfailover">Enabling unicast failover</a>

Modified: websites/production/geronimo/content/GMOxDOC22/how-to-build-geronimo-eclipse-plugin-from-source.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC22/how-to-build-geronimo-eclipse-plugin-from-source.html (original)
+++ websites/production/geronimo/content/GMOxDOC22/how-to-build-geronimo-eclipse-plugin-from-source.html Thu Sep 19 19:00:43 2019
@@ -106,11 +106,11 @@
 <p>You can also change the default location of m2repo by modifying &lt;MAVEN_HOME&gt;/conf/settings.xml and modify the following tag<br clear="none">
 &lt;localRepository&gt;C:\m2repo&lt;/localRepository&gt;</p></div></div>
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731583259 {padding: 0px;}
-div.rbtoc1567731583259 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731583259 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919366768 {padding: 0px;}
+div.rbtoc1568919366768 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919366768 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731583259">
+/*]]>*/</style><div class="toc-macro rbtoc1568919366768">
 <ul class="toc-indentation"><li><a shape="rect" href="#HowtoBuildGeronimoEclipsePluginfromSource-Gettingthesourcecode">Getting the source code</a></li><li><a shape="rect" href="#HowtoBuildGeronimoEclipsePluginfromSource-BuildingSource">Building Source</a></li><li><a shape="rect" href="#HowtoBuildGeronimoEclipsePluginfromSource-OtherMavenoptions">Other Maven options</a>
 <ul class="toc-indentation"><li><a shape="rect" href="#HowtoBuildGeronimoEclipsePluginfromSource-SkipTest">Skip Test</a></li></ul>
 </li></ul>

Modified: websites/production/geronimo/content/GMOxDOC22/how-to-develop-geronimo-eclipse-plugin-in-eclipse.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC22/how-to-develop-geronimo-eclipse-plugin-in-eclipse.html (original)
+++ websites/production/geronimo/content/GMOxDOC22/how-to-develop-geronimo-eclipse-plugin-in-eclipse.html Thu Sep 19 19:00:43 2019
@@ -102,11 +102,11 @@
           <div class="wiki-content maincontent">
 <ol><li>Build GEP using Maven.  See <a shape="rect" href="how-to-build-geronimo-eclipse-plugin-from-source.html">How to Build Geronimo Eclipse Plugin from Source</a> for details.  The projects are now ready to be imported into your Eclipse workspace.</li><li>Launch a clean installation of Eclipse Ganymede (See<a shape="rect" class="external-link" href="http://cwiki.apache.org/confluence/display/GMOxDOC21/Apache+Geronimo+Development+Tools+Project#ApacheGeronimoDevelopmentToolsProject-Prerequisites">this page</a> for details).</li><li>Follow these steps blow to complete the configuration of Eclipse for GEP development:
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731585542 {padding: 0px;}
-div.rbtoc1567731585542 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731585542 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919368436 {padding: 0px;}
+div.rbtoc1568919368436 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919368436 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731585542">
+/*]]>*/</style><div class="toc-macro rbtoc1568919368436">
 <ul class="toc-indentation"><li><a shape="rect" href="#HowtoDevelopGeronimoEclipsePlugininEclipse-SettinguptheClassPathvariable">Setting up the ClassPath variable</a></li><li><a shape="rect" href="#HowtoDevelopGeronimoEclipsePlugininEclipse-Settingupthetargetplatform">Setting up the target platform</a></li><li><a shape="rect" href="#HowtoDevelopGeronimoEclipsePlugininEclipse-ImportingsourcecodeinyourEclipseWorkspace">Importing source code in your Eclipse Workspace</a></li><li><a shape="rect" href="#HowtoDevelopGeronimoEclipsePlugininEclipse-RunandDebugConfigurations">Run and Debug Configurations</a></li></ul>
 </div>
 <h1 id="HowtoDevelopGeronimoEclipsePlugininEclipse-SettinguptheClassPathvariable">Setting up the ClassPath variable</h1></li><li>Select Window-&gt;Preferences as ahown in the figure.<br clear="none" class="atl-forced-newline"> <br clear="none" class="atl-forced-newline"> <br clear="none" class="atl-forced-newline">

Modified: websites/production/geronimo/content/GMOxDOC22/how-to-install-geronimo-eclipse-plugin-v212.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC22/how-to-install-geronimo-eclipse-plugin-v212.html (original)
+++ websites/production/geronimo/content/GMOxDOC22/how-to-install-geronimo-eclipse-plugin-v212.html Thu Sep 19 19:00:43 2019
@@ -101,11 +101,11 @@
           <div class="wiki-content maincontent">
 <p>We will be using Eclipse Ganymede and Sun JDK 6.0+ for the illustration. Geronimo Eclipse Plugin (GEP) can be installed using the following options</p>
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731588326 {padding: 0px;}
-div.rbtoc1567731588326 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731588326 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919370978 {padding: 0px;}
+div.rbtoc1568919370978 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919370978 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731588326">
+/*]]>*/</style><div class="toc-macro rbtoc1568919370978">
 <ul class="toc-indentation"><li><a shape="rect" href="#HowtoinstallGeronimoEclipsePluginv2.1.2-PrerequisitesPrereqs">Prerequisites</a></li><li><a shape="rect" href="#HowtoinstallGeronimoEclipsePluginv2.1.2-InstallingGEPwithinWTP">Installing GEP within WTP</a></li><li><a shape="rect" href="#HowtoinstallGeronimoEclipsePluginv2.1.2-InstallingGEPusingEclipseupdatemanager">Installing GEP using Eclipse update manager</a></li><li><a shape="rect" href="#HowtoinstallGeronimoEclipsePluginv2.1.2-ManualInstallation">Manual Installation</a>
 <ul class="toc-indentation"><li><a shape="rect" href="#HowtoinstallGeronimoEclipsePluginv2.1.2-Usingdeployable.zip">Using deployable.zip</a></li></ul>
 </li><li><a shape="rect" href="#HowtoinstallGeronimoEclipsePluginv2.1.2-VerifyGEPinstallation">Verify GEP installation</a></li></ul>

Modified: websites/production/geronimo/content/GMOxDOC22/how-to-open-a-bug-for-geronimo-eclipse-plugin.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC22/how-to-open-a-bug-for-geronimo-eclipse-plugin.html (original)
+++ websites/production/geronimo/content/GMOxDOC22/how-to-open-a-bug-for-geronimo-eclipse-plugin.html Thu Sep 19 19:00:43 2019
@@ -113,11 +113,11 @@ Other questions pertaining to Eclipse, W
 <p>Search the <a shape="rect" class="external-link" href="http://issues.apache.org/jira/browse/GERONIMODEVTOOLS">GERONIMODEVTOOLS JIRA issue tracking database</a> to see if your bug has already been reported, or maybe even fixed. You may be able to add additional information to a previously reported bug.</p></div></div>
 
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731582187 {padding: 0px;}
-div.rbtoc1567731582187 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731582187 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919369365 {padding: 0px;}
+div.rbtoc1568919369365 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919369365 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731582187">
+/*]]>*/</style><div class="toc-macro rbtoc1568919369365">
 <ul class="toc-indentation"><li><a shape="rect" href="#HowtoopenabugforGeronimoEclipsePlugin-ReportingaGEPbug">Reporting a GEP bug</a></li></ul>
 </div>
 <h1 id="HowtoopenabugforGeronimoEclipsePlugin-ReportingaGEPbug">Reporting a GEP bug</h1>

Modified: websites/production/geronimo/content/GMOxDOC22/inventory-simple-database-access-application.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC22/inventory-simple-database-access-application.html (original)
+++ websites/production/geronimo/content/GMOxDOC22/inventory-simple-database-access-application.html Thu Sep 19 19:00:43 2019
@@ -104,11 +104,11 @@
 
 <p>This article is organized in to following sections.</p>
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731562133 {padding: 0px;}
-div.rbtoc1567731562133 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731562133 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919347933 {padding: 0px;}
+div.rbtoc1568919347933 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919347933 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731562133">
+/*]]>*/</style><div class="toc-macro rbtoc1568919347933">
 <ul class="toc-indentation"><li><a shape="rect" href="#inventory-SimpleDatabaseAccessApplication-ApplicationOverview">Application Overview</a>
 <ul class="toc-indentation"><li><a shape="rect" href="#inventory-SimpleDatabaseAccessApplication-Applicationcontents">Application contents</a>
 <ul class="toc-indentation"><li><a shape="rect" href="#inventory-SimpleDatabaseAccessApplication-SampleDatabase">Sample Database</a></li></ul>

Modified: websites/production/geronimo/content/GMOxDOC22/jms-clustering-in-geronimo.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC22/jms-clustering-in-geronimo.html (original)
+++ websites/production/geronimo/content/GMOxDOC22/jms-clustering-in-geronimo.html Thu Sep 19 19:00:43 2019
@@ -105,11 +105,11 @@
 
 <p>There are different kinds of Master/Slave configurations available according to ActiveMQ documentation:</p>
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731609421 {padding: 0px;}
-div.rbtoc1567731609421 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731609421 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919396301 {padding: 0px;}
+div.rbtoc1568919396301 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919396301 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731609421">
+/*]]>*/</style><div class="toc-macro rbtoc1568919396301">
 <ul class="toc-indentation"><li><a shape="rect" href="#JMSclusteringinGeronimo-PureMaster/Slave">Pure Master/Slave</a></li><li><a shape="rect" href="#JMSclusteringinGeronimo-SharedFilesystem">Shared File system</a></li><li><a shape="rect" href="#JMSclusteringinGeronimo-JDBCMasterSlave">JDBC Master Slave</a></li></ul>
 </div>
 

Modified: websites/production/geronimo/content/GMOxDOC22/ldap-realm.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC22/ldap-realm.html (original)
+++ websites/production/geronimo/content/GMOxDOC22/ldap-realm.html Thu Sep 19 19:00:43 2019
@@ -105,11 +105,11 @@
 <p>This document is organized in the following sections:</p>
 
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731570423 {padding: 0px;}
-div.rbtoc1567731570423 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731570423 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919357287 {padding: 0px;}
+div.rbtoc1568919357287 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919357287 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731570423">
+/*]]>*/</style><div class="toc-macro rbtoc1568919357287">
 <ul class="toc-indentation"><li><a shape="rect" href="#LDAPRealm-InstallingApacheDSplugin(optional)">Installing ApacheDS plugin (optional)</a>
 <ul class="toc-indentation"><li><a shape="rect" href="#LDAPRealm-InstallthepluginfromtheGeronimoAdministrationConsole">Install the plugin from the Geronimo Administration Console</a></li><li><a shape="rect" href="#LDAPRealm-Installthepluginfromthecommandline">Install the plugin from the command line</a></li></ul>
 </li><li><a shape="rect" href="#LDAPRealm-DeployingLDAPRealms">Deploying LDAP Realms</a>

Modified: websites/production/geronimo/content/GMOxDOC22/replacing-default-realm-in-geronimo.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC22/replacing-default-realm-in-geronimo.html (original)
+++ websites/production/geronimo/content/GMOxDOC22/replacing-default-realm-in-geronimo.html Thu Sep 19 19:00:43 2019
@@ -105,11 +105,11 @@
 
 <p>By default, Geronimo is using a .properties file realm for authentication named <code>geronimo-admin</code>, which is used by JMX server, Administration Console, Online-deploy and MEJB applications. However, you may not want to use it for production use. Alternatively, you can use database(SQL) or LDAP realms in a production environment. To demonstrate how to replace the default realm, we will use 2 samples as followed:</p>
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731604822 {padding: 0px;}
-div.rbtoc1567731604822 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731604822 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919389499 {padding: 0px;}
+div.rbtoc1568919389499 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919389499 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731604822">
+/*]]>*/</style><div class="toc-macro rbtoc1568919389499">
 <ul class="toc-indentation"><li><a shape="rect" href="#ReplacingdefaultRealminGeronimo-Withadatabase(SQL)realm">With a database(SQL) realm</a></li><li><a shape="rect" href="#ReplacingdefaultRealminGeronimo-WithaLDAPrealm">With a LDAP realm</a></li></ul>
 </div>
 

Modified: websites/production/geronimo/content/GMOxDOC22/stateless-session-bean.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC22/stateless-session-bean.html (original)
+++ websites/production/geronimo/content/GMOxDOC22/stateless-session-bean.html Thu Sep 19 19:00:43 2019
@@ -134,11 +134,11 @@ System.out.println("This is a stateless
 <p>Details on installing eclipse are provided in the <a shape="rect" href="development-environment.html">Development environment</a> section. <br clear="none">
 This tutorial is organized in the following sections:</p>
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731554554 {padding: 0px;}
-div.rbtoc1567731554554 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731554554 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919341538 {padding: 0px;}
+div.rbtoc1568919341538 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919341538 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731554554">
+/*]]>*/</style><div class="toc-macro rbtoc1568919341538">
 <ul class="toc-indentation"><li><a shape="rect" href="#StatelessSessionBean-CreatingaStatelessSessionEJBproject">Creating a Stateless Session EJB project</a></li><li><a shape="rect" href="#StatelessSessionBean-Creatingadatabaseusingtheadministrativeconsole">Creating a database using the administrative console</a></li><li><a shape="rect" href="#StatelessSessionBean-CreatingadatasourceusingAdministrativeConsole">Creating a datasource using Administrative Console</a></li><li><a shape="rect" href="#StatelessSessionBean-Creatingapplicationclient">Creating application client</a></li><li><a shape="rect" href="#StatelessSessionBean-Fewmoreconfigurations">Few more configurations</a></li><li><a shape="rect" href="#StatelessSessionBean-DeployandRun">Deploy and Run</a></li></ul>
 </div>
 

Modified: websites/production/geronimo/content/GMOxDOC22/tomcat-native-clustering.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC22/tomcat-native-clustering.html (original)
+++ websites/production/geronimo/content/GMOxDOC22/tomcat-native-clustering.html Thu Sep 19 19:00:43 2019
@@ -103,11 +103,11 @@
 <p>The Tomcat Web container provides a native clustering solution that can be configured through Geronimo using gbean definitions within <code>config.xml</code> or using <code>server.xml</code> starting from v2.2 just like you did for a standalone Tomcat server.  This document will go through the available GBeans and how to configure them for clustering in a Geronimo server with a tomcat web container.</p>
 
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731581594 {padding: 0px;}
-div.rbtoc1567731581594 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731581594 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919365863 {padding: 0px;}
+div.rbtoc1568919365863 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919365863 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731581594">
+/*]]>*/</style><div class="toc-macro rbtoc1568919365863">
 <ul class="toc-indentation"><li><a shape="rect" href="#TomcatNativeClustering-ClusterConfigurationElements">Cluster Configuration Elements</a></li><li><a shape="rect" href="#TomcatNativeClustering-Settingupaclusteringenvironment">Setting up a clustering environment</a>
 <ul class="toc-indentation"><li><a shape="rect" href="#TomcatNativeClustering-Planningyourcluster">Planning your cluster</a></li><li><a shape="rect" href="#TomcatNativeClustering-PreparingyourWebapplication">Preparing your Web application</a>
 <ul class="toc-indentation"><li><a shape="rect" href="#TomcatNativeClustering-Enablingsessionaffinity">Enabling session affinity</a></li></ul>

Modified: websites/production/geronimo/content/GMOxDOC22/using-spnego-in-geronimo.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC22/using-spnego-in-geronimo.html (original)
+++ websites/production/geronimo/content/GMOxDOC22/using-spnego-in-geronimo.html Thu Sep 19 19:00:43 2019
@@ -104,11 +104,11 @@
 <p>Using the <a shape="rect" class="external-link" href="ftp://ftp.isi.edu/in-notes/rfc2478.txt" title="SPNEGO" rel="nofollow">Simple and Protected GSS-API Negotiation Mechanism(SPNEGO)</a> in Geronimo allows HTTP users to log in and authenticate only once in their desktop, then they can receive automatic authentication from the Geronimo server. Note that the feature is only supported in Geronimo 2.2.1 or later versions.</p>
 
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731609931 {padding: 0px;}
-div.rbtoc1567731609931 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731609931 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919394279 {padding: 0px;}
+div.rbtoc1568919394279 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919394279 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731609931">
+/*]]>*/</style><div class="toc-macro rbtoc1568919394279">
 <ul class="toc-indentation"><li><a shape="rect" href="#UsingSPNEGOinGeronimo-Prerequisite">Prerequisite</a></li><li><a shape="rect" href="#UsingSPNEGOinGeronimo-Procedure">Procedure</a>
 <ul class="toc-indentation"><li><a shape="rect" href="#UsingSPNEGOinGeronimo-SettinguptheDomainControllerMachine">Setting up the Domain Controller Machine</a></li><li><a shape="rect" href="#UsingSPNEGOinGeronimo-SettinguptheClientApplicationMachine">Setting up the Client Application Machine</a>
 <ul class="toc-indentation"><li><a shape="rect" href="#UsingSPNEGOinGeronimo-EnableSPNEGOauthenticationinMicrosoftInternetExplorerbrowser">Enable SPNEGO authentication in Microsoft Internet Explorer browser</a></li><li><a shape="rect" href="#UsingSPNEGOinGeronimo-EnableSPNEGOauthenticationinFirefox">Enable SPNEGO authentication in Firefox</a></li></ul>

Modified: websites/production/geronimo/content/GMOxDOC30/accessing-ejb-in-web-applications.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC30/accessing-ejb-in-web-applications.html (original)
+++ websites/production/geronimo/content/GMOxDOC30/accessing-ejb-in-web-applications.html Thu Sep 19 19:00:43 2019
@@ -127,11 +127,11 @@ under the License.
 
 <p>Details on installing eclipse are provided in the <a shape="rect" href="development-environment.html">Development environment</a> section. This tutorial is organized in the following sections:</p>
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731632809 {padding: 0px;}
-div.rbtoc1567731632809 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731632809 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919419162 {padding: 0px;}
+div.rbtoc1568919419162 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919419162 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731632809">
+/*]]>*/</style><div class="toc-macro rbtoc1568919419162">
 <ul class="toc-indentation"><li><a shape="rect" href="#AccessingEJBinWebapplications-DefineanewGeronimoServerRuntime">Define a new Geronimo Server Runtime</a></li><li><a shape="rect" href="#AccessingEJBinWebapplications-CreatingaEJBProject">Creating a EJB Project</a></li><li><a shape="rect" href="#AccessingEJBinWebapplications-CreatingaDynamicWebProject">Creating a Dynamic Web Project</a></li><li><a shape="rect" href="#AccessingEJBinWebapplications-AddingcodetoEJBProject">Adding code to EJB Project</a></li><li><a shape="rect" href="#AccessingEJBinWebapplications-AddingcodetoWebProject">Adding code to Web Project</a></li><li><a shape="rect" href="#AccessingEJBinWebapplications-Somemoreconfigurations">Some more configurations</a></li><li><a shape="rect" href="#AccessingEJBinWebapplications-DeployandRun">Deploy and Run</a></li></ul>
 </div>
 

Modified: websites/production/geronimo/content/GMOxDOC30/accessing-jdbc-in-web-applications.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC30/accessing-jdbc-in-web-applications.html (original)
+++ websites/production/geronimo/content/GMOxDOC30/accessing-jdbc-in-web-applications.html Thu Sep 19 19:00:43 2019
@@ -130,11 +130,11 @@ under the License.
 <p>Details on installing eclipse are provided in the <a shape="rect" href="development-environment.html">Development environment</a> section. This tutorial is organized in the following sections:</p>
 
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731635259 {padding: 0px;}
-div.rbtoc1567731635259 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731635259 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919410435 {padding: 0px;}
+div.rbtoc1568919410435 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919410435 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731635259">
+/*]]>*/</style><div class="toc-macro rbtoc1568919410435">
 <ul class="toc-indentation"><li><a shape="rect" href="#AccessingJDBCinWebapplications-CreatingadynamicWebproject">Creating a dynamic Web project</a></li><li><a shape="rect" href="#AccessingJDBCinWebapplications-Creatingadatabaseusingtheadministrativeconsole">Creating a database using the administrative console</a></li><li><a shape="rect" href="#AccessingJDBCinWebapplications-Creatingadatasourceusingtheadministrativeconsole">Creating a datasource using the administrative console</a></li><li><a shape="rect" href="#AccessingJDBCinWebapplications-Addingcodeforimageuploadtoderbydatabase">Adding code for image upload to derby database</a></li><li><a shape="rect" href="#AccessingJDBCinWebapplications-Codetoretrievetheimagefromderbydatabase">Code to retrieve the image from derby database</a></li><li><a shape="rect" href="#AccessingJDBCinWebapplications-Modifyingdeploymentplan">Modifying deployment plan</a></li><li><a shape="rect" href="#AccessingJDBCinWebapplications-Deployandrun">Deploy an
 d run</a></li></ul>
 </div>
 

Modified: websites/production/geronimo/content/GMOxDOC30/apache-aries-sample-applications.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC30/apache-aries-sample-applications.html (original)
+++ websites/production/geronimo/content/GMOxDOC30/apache-aries-sample-applications.html Thu Sep 19 19:00:43 2019
@@ -159,7 +159,7 @@ mvn install
 
 <h2 id="ApacheAriessampleapplications-DeploytheAriesSamplesDataSourcearies-deploy">Deploy the Aries Samples DataSource <span class="confluence-anchor-link" id="ApacheAriessampleapplications-aries-deploy"></span></h2>
 <p>Each of the two samples requires a Datasource.  However, before you can deploy the Datasources you need to obtain the tranql-connector-derby-embed-xa rar.   Unfortunately, this was not included in the Geronimo 3.0-M1 server images (but will be included in future images).  </p>
-<ul><li>For 3.0-M1 release you can obtain the necessary rar from any of the ibiblio mirrors:   <a shape="rect" class="external-link" href="http://mirrors.ibiblio.org/pub/mirrors/maven2/org/tranql/tranql-connector-derby-embed-xa/1.6/" rel="nofollow">Tranql RAR for derby</a></li><li>You must also download the XML for the datasource definitions - located here: <a shape="rect" href="apache-aries-sample-applications.data/aries-datasource.xml?version=2&amp;modificationDate=1277208649000&amp;api=v2" data-linked-resource-id="23003152" data-linked-resource-version="2" data-linked-resource-type="attachment" data-linked-resource-default-alias="aries-datasource.xml" data-nice-type="XML File" data-linked-resource-content-type="text/xml" data-linked-resource-container-id="21267180" data-linked-resource-container-version="43">aries-datasource.xml</a>. Or you can download <code>aries-datasource</code> plugin directly from Geronimo <a shape="rect" class="external-link" href="http://geronimo.apache.o
 rg/plugins/samples-3.0-M1/">samples plugin repository</a>.</li></ul>
+<ul><li>For 3.0-M1 release you can obtain the necessary rar from any of the ibiblio mirrors:   <a shape="rect" class="external-link" href="http://mirrors.ibiblio.org/pub/mirrors/maven2/org/tranql/tranql-connector-derby-embed-xa/1.6/" rel="nofollow">Tranql RAR for derby</a></li><li>You must also download the XML for the datasource definitions - located here: <a shape="rect" href="apache-aries-sample-applications.data/aries-datasource.xml?version=2&amp;modificationDate=1277208649000&amp;api=v2" data-linked-resource-id="23003152" data-linked-resource-version="2" data-linked-resource-type="attachment" data-linked-resource-default-alias="aries-datasource.xml" data-nice-type="XML File" data-linked-resource-content-type="text/xml" data-linked-resource-container-id="21267180" data-linked-resource-container-version="44">aries-datasource.xml</a>. Or you can download <code>aries-datasource</code> plugin directly from Geronimo <a shape="rect" class="external-link" href="http://geronimo.apache.o
 rg/plugins/samples-3.0-M1/">samples plugin repository</a>.</li></ul>
 
 
 <p>After you have both of the necessary files in your local file system use the following command to deploy the datasource:  </p>

Modified: websites/production/geronimo/content/GMOxDOC30/assembling-a-server-via-console.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC30/assembling-a-server-via-console.html (original)
+++ websites/production/geronimo/content/GMOxDOC30/assembling-a-server-via-console.html Thu Sep 19 19:00:43 2019
@@ -124,11 +124,11 @@ under the License.
 <p>The application client referred to in this tutorial is actually a Web Application Client.</p></div></div>
 
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731651221 {padding: 0px;}
-div.rbtoc1567731651221 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731651221 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919431268 {padding: 0px;}
+div.rbtoc1568919431268 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919431268 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731651221">
+/*]]>*/</style><div class="toc-macro rbtoc1568919431268">
 <ul class="toc-indentation"><li><a shape="rect" href="#AssemblingaserverviaConsole-Identifyingthefunctionalcomponentsrequiredbyourserver">Identifying the functional components required by our server</a></li><li><a shape="rect" href="#AssemblingaserverviaConsole-Assemblingacustomserver">Assembling a custom server</a></li></ul>
 </div>
 <h1 id="AssemblingaserverviaConsole-Identifyingthefunctionalcomponentsrequiredbyourserver">Identifying the functional components required by our server</h1>

Modified: websites/production/geronimo/content/GMOxDOC30/building-geronimo-from-eclipse.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC30/building-geronimo-from-eclipse.html (original)
+++ websites/production/geronimo/content/GMOxDOC30/building-geronimo-from-eclipse.html Thu Sep 19 19:00:43 2019
@@ -185,7 +185,7 @@ and on windows its usually at
 
 <div class="confluence-information-macro confluence-information-macro-information"><p class="title">Info:</p><span class="aui-icon aui-icon-small aui-iconfont-info confluence-information-macro-icon"></span><div class="confluence-information-macro-body">
 <ul><li>If you plan on contributing code or patches to the project, you have to configure eclipse to not use tabs. Select <strong>Window &gt; Preferences &gt; Java &gt; Code Style &gt; Formatter &gt; Java Conventions <code>[built-in]</code></strong>, and click on <strong>Edit</strong>. Under Indentation select Tab policy as "space only". Enter a new name for this profile and click <strong>OK</strong>.</li><li>You might want to configure the Geronimo development environment by importing the Geronimo formatter and code template files.
-	<ul><li>Click  <strong>Window &gt; Preferences &gt; Java &gt; Code Style &gt; Formatter &gt; Import</strong>, and specify local path of <a shape="rect" href="building-geronimo-from-eclipse.data/Geronimo-template-formatter.xml?version=1&amp;modificationDate=1244676755000&amp;api=v2" data-linked-resource-id="20874045" data-linked-resource-version="1" data-linked-resource-type="attachment" data-linked-resource-default-alias="Geronimo-template-formatter.xml" data-nice-type="XML File" data-linked-resource-content-type="text/xml" data-linked-resource-container-id="20645292" data-linked-resource-container-version="40">Geronimo-template-formatter.xml</a>.</li><li>Click <strong>Window &gt; Preferences &gt; Java &gt; Code Style &gt; Code Templates &gt; Import</strong>, and specify the path of <a shape="rect" href="building-geronimo-from-eclipse.data/Geronimo-template-code.xml?version=1&amp;modificationDate=1244676755000&amp;api=v2" data-linked-resource-id="20874046" data-linked-resource-vers
 ion="1" data-linked-resource-type="attachment" data-linked-resource-default-alias="Geronimo-template-code.xml" data-nice-type="XML File" data-linked-resource-content-type="text/xml" data-linked-resource-container-id="20645292" data-linked-resource-container-version="40">Geronimo-template-code.xml</a>.</li></ul>
+	<ul><li>Click  <strong>Window &gt; Preferences &gt; Java &gt; Code Style &gt; Formatter &gt; Import</strong>, and specify local path of <a shape="rect" href="building-geronimo-from-eclipse.data/Geronimo-template-formatter.xml?version=1&amp;modificationDate=1244676755000&amp;api=v2" data-linked-resource-id="20874045" data-linked-resource-version="1" data-linked-resource-type="attachment" data-linked-resource-default-alias="Geronimo-template-formatter.xml" data-nice-type="XML File" data-linked-resource-content-type="text/xml" data-linked-resource-container-id="20645292" data-linked-resource-container-version="41">Geronimo-template-formatter.xml</a>.</li><li>Click <strong>Window &gt; Preferences &gt; Java &gt; Code Style &gt; Code Templates &gt; Import</strong>, and specify the path of <a shape="rect" href="building-geronimo-from-eclipse.data/Geronimo-template-code.xml?version=1&amp;modificationDate=1244676755000&amp;api=v2" data-linked-resource-id="20874046" data-linked-resource-vers
 ion="1" data-linked-resource-type="attachment" data-linked-resource-default-alias="Geronimo-template-code.xml" data-nice-type="XML File" data-linked-resource-content-type="text/xml" data-linked-resource-container-id="20645292" data-linked-resource-container-version="41">Geronimo-template-code.xml</a>.</li></ul>
 	</li></ul>
 </div></div></div>
         </div>

Modified: websites/production/geronimo/content/GMOxDOC30/building-j2g-from-source.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC30/building-j2g-from-source.html (original)
+++ websites/production/geronimo/content/GMOxDOC30/building-j2g-from-source.html Thu Sep 19 19:00:43 2019
@@ -118,11 +118,11 @@ under the License.
         <div class="wiki-content">
           <div class="wiki-content maincontent">
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731679121 {padding: 0px;}
-div.rbtoc1567731679121 ul {list-style: disc;margin-left: 0px;padding-left: 20px;}
-div.rbtoc1567731679121 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919457500 {padding: 0px;}
+div.rbtoc1568919457500 ul {list-style: disc;margin-left: 0px;padding-left: 20px;}
+div.rbtoc1568919457500 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731679121">
+/*]]>*/</style><div class="toc-macro rbtoc1568919457500">
 <ul class="toc-indentation"><li><a shape="rect" href="#BuildingJ2Gfromsource-Buildingfromsource">Building from source</a>
 <ul class="toc-indentation"><li><a shape="rect" href="#BuildingJ2Gfromsource-Prerequisites">Prerequisites</a></li><li><a shape="rect" href="#BuildingJ2Gfromsource-ObtainingtheSourceCode">Obtaining the Source Code</a></li><li><a shape="rect" href="#BuildingJ2Gfromsource-Building">Building</a>
 <ul class="toc-indentation"><li><a shape="rect" href="#BuildingJ2Gfromsource-DisablingTests">Disabling Tests</a></li></ul>

Modified: websites/production/geronimo/content/GMOxDOC30/configure-apache-httpd-with-jakarta-tomcat-connector-modjk.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC30/configure-apache-httpd-with-jakarta-tomcat-connector-modjk.html (original)
+++ websites/production/geronimo/content/GMOxDOC30/configure-apache-httpd-with-jakarta-tomcat-connector-modjk.html Thu Sep 19 19:00:43 2019
@@ -126,7 +126,7 @@ under the License.
 
 <p>In addition to <strong>mod_jk</strong>, you will require a <code>workers.properties</code> file, also available with the Apache Tomcat source distribution. This properties file tells the <strong>mod_jk</strong> plugin how to connect to the Geronimo server. For a detailed explanation on all the available options for configuring the Jakarta Tomcat Connector, visit <a shape="rect" class="external-link" href="http://tomcat.apache.org/connectors-doc/config/workers.html">http://tomcat.apache.org/connectors-doc/config/workers.html</a>.</p>
 
-<div class="confluence-information-macro confluence-information-macro-information"><span class="aui-icon aui-icon-small aui-iconfont-info confluence-information-macro-icon"></span><div class="confluence-information-macro-body"><p>For practical purposes, the module <a shape="rect" href="configure-apache-httpd-with-jakarta-tomcat-connector-modjk.data/mod_jk-apache-2.2.3.so?version=1&amp;modificationDate=1203494952000&amp;api=v2" data-linked-resource-id="20874112" data-linked-resource-version="1" data-linked-resource-type="attachment" data-linked-resource-default-alias="mod_jk-apache-2.2.3.so" data-linked-resource-content-type="application/octet-stream" data-linked-resource-container-id="20645305" data-linked-resource-container-version="40">mod_jk-apache-2.2.3.so</a> for Windows and the <a shape="rect" href="configure-apache-httpd-with-jakarta-tomcat-connector-modjk.data/workers.properties?version=1&amp;modificationDate=1203494952000&amp;api=v2" data-linked-resource-id="20874113" data-
 linked-resource-version="1" data-linked-resource-type="attachment" data-linked-resource-default-alias="workers.properties" data-linked-resource-content-type="application/octet-stream" data-linked-resource-container-id="20645305" data-linked-resource-container-version="40">workers.properties</a> are included in the <strong>Attachments</strong> section in this article.</p></div></div>
+<div class="confluence-information-macro confluence-information-macro-information"><span class="aui-icon aui-icon-small aui-iconfont-info confluence-information-macro-icon"></span><div class="confluence-information-macro-body"><p>For practical purposes, the module <a shape="rect" href="configure-apache-httpd-with-jakarta-tomcat-connector-modjk.data/mod_jk-apache-2.2.3.so?version=1&amp;modificationDate=1203494952000&amp;api=v2" data-linked-resource-id="20874112" data-linked-resource-version="1" data-linked-resource-type="attachment" data-linked-resource-default-alias="mod_jk-apache-2.2.3.so" data-linked-resource-content-type="application/octet-stream" data-linked-resource-container-id="20645305" data-linked-resource-container-version="41">mod_jk-apache-2.2.3.so</a> for Windows and the <a shape="rect" href="configure-apache-httpd-with-jakarta-tomcat-connector-modjk.data/workers.properties?version=1&amp;modificationDate=1203494952000&amp;api=v2" data-linked-resource-id="20874113" data-
 linked-resource-version="1" data-linked-resource-type="attachment" data-linked-resource-default-alias="workers.properties" data-linked-resource-content-type="application/octet-stream" data-linked-resource-container-id="20645305" data-linked-resource-container-version="41">workers.properties</a> are included in the <strong>Attachments</strong> section in this article.</p></div></div>
 
 <p><a shape="rect" href="configure-apache-httpd-with-jakarta-tomcat-connector-modjk.html">Back to Top</a></p>
 

Modified: websites/production/geronimo/content/GMOxDOC30/configuring-a-mysql-datasource.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC30/configuring-a-mysql-datasource.html (original)
+++ websites/production/geronimo/content/GMOxDOC30/configuring-a-mysql-datasource.html Thu Sep 19 19:00:43 2019
@@ -126,7 +126,7 @@ under the License.
 
 
 <h1 id="ConfiguringaMySQLdatasource-CreatingadatasourceanddeployingitasastandaloneJEEconnectormodule">Creating a datasource and deploying it as a standalone JEE connector module</h1>
-<ol><li>See the attachment <a shape="rect" href="configuring-a-mysql-datasource.data/sample-mysql-xa-ds-plan-standalone.xml?version=1&amp;modificationDate=1232485735000&amp;api=v2" data-linked-resource-id="20874158" data-linked-resource-version="1" data-linked-resource-type="attachment" data-linked-resource-default-alias="sample-mysql-xa-ds-plan-standalone.xml" data-nice-type="XML File" data-linked-resource-content-type="text/xml" data-linked-resource-container-id="20645327" data-linked-resource-container-version="40">sample-mysql-xa-ds-plan-standalone.xml</a> to create a standalone Java EE connector deployment plan.</li><li>Install the mysql jdbc driver to the Geronimo repository by using the adminitration console, and ensure its Module ID is the same as the one defined in the sample plan. In this example, the Module ID of mysql JDBC driver is <code>mysql/mysql-connector-java/5.1.7/jar</code>.</li><li>Use <a shape="rect" href="deploying-and-undeploying-applications.html">command li
 ne</a> to deploy the datasource. Here is the sample command for deploying mysql xa datasource:
+<ol><li>See the attachment <a shape="rect" href="configuring-a-mysql-datasource.data/sample-mysql-xa-ds-plan-standalone.xml?version=1&amp;modificationDate=1232485735000&amp;api=v2" data-linked-resource-id="20874158" data-linked-resource-version="1" data-linked-resource-type="attachment" data-linked-resource-default-alias="sample-mysql-xa-ds-plan-standalone.xml" data-nice-type="XML File" data-linked-resource-content-type="text/xml" data-linked-resource-container-id="20645327" data-linked-resource-container-version="41">sample-mysql-xa-ds-plan-standalone.xml</a> to create a standalone Java EE connector deployment plan.</li><li>Install the mysql jdbc driver to the Geronimo repository by using the adminitration console, and ensure its Module ID is the same as the one defined in the sample plan. In this example, the Module ID of mysql JDBC driver is <code>mysql/mysql-connector-java/5.1.7/jar</code>.</li><li>Use <a shape="rect" href="deploying-and-undeploying-applications.html">command li
 ne</a> to deploy the datasource. Here is the sample command for deploying mysql xa datasource:
 <div class="preformatted panel" style="border-width: 1px;"><div class="preformattedContent panelContent">
 <pre>&lt;geronimo_home&gt;/bin/deploy.sh -u system -p manager deploy 
 &lt;GERONIMO_HOME&gt;/repository/org/tranql/tranql-connector-mysql-xa/1.2/tranql-connector-mysql-xa-1.2.rar sample-mysql-xa-ds-plan-standalone.xml
@@ -136,7 +136,7 @@ where <em>&lt;geronimo_home&gt;</em> is
 
 
 <h1 id="ConfiguringaMySQLdatasource-Embeddingadatasourcedefinitioninanapplicationdeploymentplan">Embedding a datasource definition in an application deployment plan</h1>
-<ol><li>See the attachment <a shape="rect" href="configuring-a-mysql-datasource.data/sample-mysql-xa-ds-plan-embeded.xml?version=1&amp;modificationDate=1232485735000&amp;api=v2" data-linked-resource-id="20874159" data-linked-resource-version="1" data-linked-resource-type="attachment" data-linked-resource-default-alias="sample-mysql-xa-ds-plan-embeded.xml" data-nice-type="XML File" data-linked-resource-content-type="text/xml" data-linked-resource-container-id="20645327" data-linked-resource-container-version="40">sample-mysql-xa-ds-plan-embeded.xml</a> to create an application deployment plan, and replace the web module and the ejb module according to your application.</li><li>Install the mysql jdbc driver to the Geronimo repository by using the adminitration console, and ensure its Module ID is the same as the one defined in the sample plan. In this example, the Module ID of mysql JDBC driver is <code>mysql/mysql-connector-java/5.1.7/jar</code>.</li><li>Use command line or adminitra
 tive console to <a shape="rect" href="deploying-and-undeploying-applications.html">deploy</a> your application with the deployment plan. For example, use the following command line:
+<ol><li>See the attachment <a shape="rect" href="configuring-a-mysql-datasource.data/sample-mysql-xa-ds-plan-embeded.xml?version=1&amp;modificationDate=1232485735000&amp;api=v2" data-linked-resource-id="20874159" data-linked-resource-version="1" data-linked-resource-type="attachment" data-linked-resource-default-alias="sample-mysql-xa-ds-plan-embeded.xml" data-nice-type="XML File" data-linked-resource-content-type="text/xml" data-linked-resource-container-id="20645327" data-linked-resource-container-version="41">sample-mysql-xa-ds-plan-embeded.xml</a> to create an application deployment plan, and replace the web module and the ejb module according to your application.</li><li>Install the mysql jdbc driver to the Geronimo repository by using the adminitration console, and ensure its Module ID is the same as the one defined in the sample plan. In this example, the Module ID of mysql JDBC driver is <code>mysql/mysql-connector-java/5.1.7/jar</code>.</li><li>Use command line or adminitra
 tive console to <a shape="rect" href="deploying-and-undeploying-applications.html">deploy</a> your application with the deployment plan. For example, use the following command line:
 <div class="preformatted panel" style="border-width: 1px;"><div class="preformattedContent panelContent">
 <pre>&lt;geronimo_home&gt;/bin/deploy.sh -u system -p manager deploy yourapp.ear sample-mysql-xa-ds-plan-embeded.xml
 </pre>

Modified: websites/production/geronimo/content/GMOxDOC30/configuring-datasources.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC30/configuring-datasources.html (original)
+++ websites/production/geronimo/content/GMOxDOC30/configuring-datasources.html Thu Sep 19 19:00:43 2019
@@ -146,10 +146,10 @@ under the License.
                           <a href="https://cwiki.apache.org/confluence/display/GMOxDOC30/Import+database+pools+from+WebLogic+8.1" title="Import database pools from WebLogic 8.1">Import database pools from WebLogic 8.1</a>
               <span class="smalltext">(Apache Geronimo v3.0)</span>
               <br>
-                          <a href="https://cwiki.apache.org/confluence/display/GMOxDOC30/Removing+database+pools" title="Removing database pools">Removing database pools</a>
+                          <a href="https://cwiki.apache.org/confluence/display/GMOxDOC30/Executing+SQL+statements+at+deployment+time" title="Executing SQL statements at deployment time">Executing SQL statements at deployment time</a>
               <span class="smalltext">(Apache Geronimo v3.0)</span>
               <br>
-                          <a href="https://cwiki.apache.org/confluence/display/GMOxDOC30/Executing+SQL+statements+at+deployment+time" title="Executing SQL statements at deployment time">Executing SQL statements at deployment time</a>
+                          <a href="https://cwiki.apache.org/confluence/display/GMOxDOC30/Removing+database+pools" title="Removing database pools">Removing database pools</a>
               <span class="smalltext">(Apache Geronimo v3.0)</span>
               <br>
                           <a href="https://cwiki.apache.org/confluence/display/GMOxDOC30/Using+the+Geronimo+database+pool+wizard" title="Using the Geronimo database pool wizard">Using the Geronimo database pool wizard</a>