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 [4/4] - in /websites/production/geronimo/content: GMOxDEV/ GMOxDOC10/ GMOxDOC11/ GMOxDOC12/ GMOxDOC20/ GMOxDOC20ja/ GMOxDOC21/ GMOxDOC22/ GMOxDOC30/ GMOxKB/ cache/ doc/ gshell/

Modified: websites/production/geronimo/content/GMOxDOC30/configuring-run-as-and-default-subjects-and-principal-role-mapping.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC30/configuring-run-as-and-default-subjects-and-principal-role-mapping.html (original)
+++ websites/production/geronimo/content/GMOxDOC30/configuring-run-as-and-default-subjects-and-principal-role-mapping.html Thu Sep 19 19:00:43 2019
@@ -128,118 +128,7 @@ under the License.
 
 <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>
+<div class="error"><span class="error">Error formatting macro: snippet: java.lang.IndexOutOfBoundsException: Index: 20, Size: 20</span> </div>
 
 
 <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>
@@ -303,189 +192,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>
+<div class="error"><span class="error">Error formatting macro: snippet: java.lang.IndexOutOfBoundsException: Index: 20, Size: 20</span> </div>
 
 
 <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 application 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/GMOxDOC30/converting-applications-into-plugins-using-the-administration-console.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC30/converting-applications-into-plugins-using-the-administration-console.html (original)
+++ websites/production/geronimo/content/GMOxDOC30/converting-applications-into-plugins-using-the-administration-console.html Thu Sep 19 19:00:43 2019
@@ -125,11 +125,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.rbtoc1567731670420 {padding: 0px;}
-div.rbtoc1567731670420 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731670420 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919449265 {padding: 0px;}
+div.rbtoc1568919449265 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919449265 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731670420">
+/*]]>*/</style><div class="toc-macro rbtoc1568919449265">
 <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/GMOxDOC30/creating-deployment-plans-for-java-persistence-api.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC30/creating-deployment-plans-for-java-persistence-api.html (original)
+++ websites/production/geronimo/content/GMOxDOC30/creating-deployment-plans-for-java-persistence-api.html Thu Sep 19 19:00:43 2019
@@ -124,11 +124,11 @@ under the License.
 
 <p>The document is organized as follows.</p>
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731677928 {padding: 0px;}
-div.rbtoc1567731677928 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731677928 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919456439 {padding: 0px;}
+div.rbtoc1568919456439 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919456439 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731677928">
+/*]]>*/</style><div class="toc-macro rbtoc1568919456439">
 <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/GMOxDOC30/creating-deployment-plans-for-web-applications.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC30/creating-deployment-plans-for-web-applications.html (original)
+++ websites/production/geronimo/content/GMOxDOC30/creating-deployment-plans-for-web-applications.html Thu Sep 19 19:00:43 2019
@@ -123,11 +123,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.rbtoc1567731678559 {padding: 0px;}
-div.rbtoc1567731678559 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731678559 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919457017 {padding: 0px;}
+div.rbtoc1568919457017 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919457017 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731678559">
+/*]]>*/</style><div class="toc-macro rbtoc1568919457017">
 <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/GMOxDOC30/deploying-and-running-ejb-application-clients.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC30/deploying-and-running-ejb-application-clients.html (original)
+++ websites/production/geronimo/content/GMOxDOC30/deploying-and-running-ejb-application-clients.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.rbtoc1567731619425 {padding: 0px;}
-div.rbtoc1567731619425 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731619425 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919406020 {padding: 0px;}
+div.rbtoc1568919406020 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919406020 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731619425">
+/*]]>*/</style><div class="toc-macro rbtoc1568919406020">
 <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/GMOxDOC30/deploying-and-undeploying-applications.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC30/deploying-and-undeploying-applications.html (original)
+++ websites/production/geronimo/content/GMOxDOC30/deploying-and-undeploying-applications.html Thu Sep 19 19:00:43 2019
@@ -121,11 +121,11 @@ under the License.
 
 <p>There are several alternatives available for Deploying and undeploying applications:</p>
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731665824 {padding: 0px;}
-div.rbtoc1567731665824 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731665824 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919445966 {padding: 0px;}
+div.rbtoc1568919445966 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919445966 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731665824">
+/*]]>*/</style><div class="toc-macro rbtoc1568919445966">
 <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-Viagogocommandgogodeploy">Via gogo command</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/GMOxDOC30/developing-a-hello-world-blueprint-application.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC30/developing-a-hello-world-blueprint-application.html (original)
+++ websites/production/geronimo/content/GMOxDOC30/developing-a-hello-world-blueprint-application.html Thu Sep 19 19:00:43 2019
@@ -129,11 +129,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.rbtoc1567731700514 {padding: 0px;}
-div.rbtoc1567731700514 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731700514 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919476841 {padding: 0px;}
+div.rbtoc1568919476841 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919476841 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731700514">
+/*]]>*/</style><div class="toc-macro rbtoc1568919476841">
 <ul class="toc-indentation"><li><a shape="rect" href="#DevelopingaHelloWorldBlueprintapplication-CreatinganOSGiEnterpriseApplicationusingEclipse">Creating an OSGi Enterprise Application using Eclipse</a></li><li><a shape="rect" href="#DevelopingaHelloWorldBlueprintapplication-Addingaclasstotheapiproject">Adding a class to the api project</a></li><li><a shape="rect" href="#DevelopingaHelloWorldBlueprintapplication-ImplementingtheHelloWorldServiceinteface">Implementing the HelloWorldService inteface</a></li><li><a shape="rect" href="#DevelopingaHelloWorldBlueprintapplication-Creatingtheclienttoconsumetheservices">Creating the client to consume the services</a></li><li><a shape="rect" href="#DevelopingaHelloWorldBlueprintapplication-Runanddeploy">Run and deploy</a></li></ul>
 </div>
 

Modified: websites/production/geronimo/content/GMOxDOC30/developing-a-hello-world-web-application.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC30/developing-a-hello-world-web-application.html (original)
+++ websites/production/geronimo/content/GMOxDOC30/developing-a-hello-world-web-application.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.rbtoc1567731629036 {padding: 0px;}
-div.rbtoc1567731629036 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731629036 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919415976 {padding: 0px;}
+div.rbtoc1568919415976 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919415976 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731629036">
+/*]]>*/</style><div class="toc-macro rbtoc1568919415976">
 <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/GMOxDOC30/developing-container-managed-persistence-with-jpa.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC30/developing-container-managed-persistence-with-jpa.html (original)
+++ websites/production/geronimo/content/GMOxDOC30/developing-container-managed-persistence-with-jpa.html Thu Sep 19 19:00:43 2019
@@ -135,15 +135,15 @@ under the License.
 
 <p>The tutorial is divided into the following sections.</p>
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731637696 {padding: 0px;}
-div.rbtoc1567731637696 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731637696 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919412925 {padding: 0px;}
+div.rbtoc1568919412925 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919412925 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731637696">
+/*]]>*/</style><div class="toc-macro rbtoc1568919412925">
 <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="20873760" 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="20645262" data-linked-resource-container-version="41">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="20873760" 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="20645262" data-linked-resource-container-version="42">link</a>.</p>
 
 <h2 id="DevelopingcontainermanagedpersistencewithJPA-SettingtheEclipseenvironment">Setting the Eclipse environment</h2>
 

Modified: websites/production/geronimo/content/GMOxDOC30/developing-ejb-applications.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC30/developing-ejb-applications.html (original)
+++ websites/production/geronimo/content/GMOxDOC30/developing-ejb-applications.html Thu Sep 19 19:00:43 2019
@@ -127,11 +127,11 @@ under the License.
 <p>This document is organized in the following sections:</p>
 
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731616691 {padding: 0px;}
-div.rbtoc1567731616691 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731616691 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919400205 {padding: 0px;}
+div.rbtoc1568919400205 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919400205 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731616691">
+/*]]>*/</style><div class="toc-macro rbtoc1568919400205">
 <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>
 
@@ -167,10 +167,10 @@ div.rbtoc1567731616691 li {margin-left:
               <a href="javascript:hideChildren()">Hide Children</a></span>
           </div>
           <div class="greybox" id="children" style="display: none;">
-                                      <a href="https://cwiki.apache.org/confluence/display/GMOxDOC30/JMS+application+with+Message-Driven+Bean" title="JMS application with Message-Driven Bean">JMS application with Message-Driven Bean</a>
+                                      <a href="https://cwiki.apache.org/confluence/display/GMOxDOC30/Referring+to+an+EJB+from+outside+its+EAR" title="Referring to an EJB from outside its EAR">Referring to an EJB from outside its EAR</a>
               <span class="smalltext">(Apache Geronimo v3.0)</span>
               <br>
-                          <a href="https://cwiki.apache.org/confluence/display/GMOxDOC30/Referring+to+an+EJB+from+outside+its+EAR" title="Referring to an EJB from outside its EAR">Referring to an EJB from outside its EAR</a>
+                          <a href="https://cwiki.apache.org/confluence/display/GMOxDOC30/JMS+application+with+Message-Driven+Bean" title="JMS application with Message-Driven Bean">JMS application with Message-Driven Bean</a>
               <span class="smalltext">(Apache Geronimo v3.0)</span>
               <br>
                           <a href="https://cwiki.apache.org/confluence/display/GMOxDOC30/Stateless+Session+Bean" title="Stateless Session Bean">Stateless Session Bean</a>

Modified: websites/production/geronimo/content/GMOxDOC30/developing-persistence-for-jsf-applications-with-jpa.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC30/developing-persistence-for-jsf-applications-with-jpa.html (original)
+++ websites/production/geronimo/content/GMOxDOC30/developing-persistence-for-jsf-applications-with-jpa.html Thu Sep 19 19:00:43 2019
@@ -124,7 +124,7 @@ under the License.
 
 <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="20873757" 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="20645260" data-linked-resource-container-version="42">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="20873757" 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="20645260" data-linked-resource-container-version="43">link</a>.</p>
 
 <p>In order to develop, deploy and run the application, the following environment is required.</p>
 

Modified: websites/production/geronimo/content/GMOxDOC30/developing-user-interface-with-jsf.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC30/developing-user-interface-with-jsf.html (original)
+++ websites/production/geronimo/content/GMOxDOC30/developing-user-interface-with-jsf.html Thu Sep 19 19:00:43 2019
@@ -125,11 +125,11 @@ under the License.
 
 <p>The tutorial is divided into the following sections.</p>
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731641235 {padding: 0px;}
-div.rbtoc1567731641235 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731641235 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919421952 {padding: 0px;}
+div.rbtoc1568919421952 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919421952 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731641235">
+/*]]>*/</style><div class="toc-macro rbtoc1568919421952">
 <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>
@@ -141,7 +141,7 @@ div.rbtoc1567731641235 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="20873958" 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="20645271" data-linked-resource-container-version="41">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="20873958" 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="20645271" data-linked-resource-container-version="42">link</a>.</p>
 
 <h2 id="DevelopinguserinterfacewithJSF-SettinguptheEclipseenvironment">Setting up the Eclipse environment</h2>
 

Modified: websites/production/geronimo/content/GMOxDOC30/ejb-failover.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC30/ejb-failover.html (original)
+++ websites/production/geronimo/content/GMOxDOC30/ejb-failover.html Thu Sep 19 19:00:43 2019
@@ -122,11 +122,11 @@ under the License.
 <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.rbtoc1567731695297 {padding: 0px;}
-div.rbtoc1567731695297 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731695297 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919471362 {padding: 0px;}
+div.rbtoc1568919471362 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919471362 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731695297">
+/*]]>*/</style><div class="toc-macro rbtoc1568919471362">
 <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/GMOxDOC30/how-to-build-geronimo-eclipse-plugin-from-source.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC30/how-to-build-geronimo-eclipse-plugin-from-source.html (original)
+++ websites/production/geronimo/content/GMOxDOC30/how-to-build-geronimo-eclipse-plugin-from-source.html Thu Sep 19 19:00:43 2019
@@ -124,11 +124,11 @@ under the License.
 <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.rbtoc1567731647223 {padding: 0px;}
-div.rbtoc1567731647223 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731647223 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919428036 {padding: 0px;}
+div.rbtoc1568919428036 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919428036 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731647223">
+/*]]>*/</style><div class="toc-macro rbtoc1568919428036">
 <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/GMOxDOC30/how-to-develop-geronimo-eclipse-plugin-in-eclipse.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC30/how-to-develop-geronimo-eclipse-plugin-in-eclipse.html (original)
+++ websites/production/geronimo/content/GMOxDOC30/how-to-develop-geronimo-eclipse-plugin-in-eclipse.html Thu Sep 19 19:00:43 2019
@@ -120,11 +120,11 @@ under the License.
           <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 Helios SR1 (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.rbtoc1567731648983 {padding: 0px;}
-div.rbtoc1567731648983 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731648983 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919427165 {padding: 0px;}
+div.rbtoc1568919427165 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919427165 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731648983">
+/*]]>*/</style><div class="toc-macro rbtoc1568919427165">
 <ul class="toc-indentation"><li><a shape="rect" href="#HowtoDevelopGeronimoEclipsePlugininEclipse-SetJavaInstalledJREtoJava6">Set Java Installed JRE to Java 6</a></li><li><a shape="rect" href="#HowtoDevelopGeronimoEclipsePlugininEclipse-SettheClassPathvariable">Set the ClassPath variable</a></li><li><a shape="rect" href="#HowtoDevelopGeronimoEclipsePlugininEclipse-Setthetargetplatform">Set the target platform</a></li><li><a shape="rect" href="#HowtoDevelopGeronimoEclipsePlugininEclipse-ImportthesourcecodeinyourEclipseWorkspace">Import the source code in your Eclipse Workspace</a></li><li><a shape="rect" href="#HowtoDevelopGeronimoEclipsePlugininEclipse-RunandDebugConfigurations">Run and Debug Configurations</a></li></ul>
 </div></li></ol>
 

Modified: websites/production/geronimo/content/GMOxDOC30/how-to-open-a-bug-for-geronimo-eclipse-plugin.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC30/how-to-open-a-bug-for-geronimo-eclipse-plugin.html (original)
+++ websites/production/geronimo/content/GMOxDOC30/how-to-open-a-bug-for-geronimo-eclipse-plugin.html Thu Sep 19 19:00:43 2019
@@ -131,11 +131,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.rbtoc1567731682454 {padding: 0px;}
-div.rbtoc1567731682454 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731682454 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919460226 {padding: 0px;}
+div.rbtoc1568919460226 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919460226 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731682454">
+/*]]>*/</style><div class="toc-macro rbtoc1568919460226">
 <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/GMOxDOC30/inventory-simple-database-access-application.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC30/inventory-simple-database-access-application.html (original)
+++ websites/production/geronimo/content/GMOxDOC30/inventory-simple-database-access-application.html Thu Sep 19 19:00:43 2019
@@ -122,11 +122,11 @@ under the License.
 
 <p>This article is organized in to following sections.</p>
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731673510 {padding: 0px;}
-div.rbtoc1567731673510 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731673510 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919452586 {padding: 0px;}
+div.rbtoc1568919452586 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919452586 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731673510">
+/*]]>*/</style><div class="toc-macro rbtoc1568919452586">
 <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/GMOxDOC30/ldap-realm.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC30/ldap-realm.html (original)
+++ websites/production/geronimo/content/GMOxDOC30/ldap-realm.html Thu Sep 19 19:00:43 2019
@@ -124,11 +124,11 @@ under the License.
 <p>This document is organized in the following sections:</p>
 
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731688262 {padding: 0px;}
-div.rbtoc1567731688262 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731688262 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919465030 {padding: 0px;}
+div.rbtoc1568919465030 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919465030 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731688262">
+/*]]>*/</style><div class="toc-macro rbtoc1568919465030">
 <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/GMOxDOC30/managing-osgi-bundles.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC30/managing-osgi-bundles.html (original)
+++ websites/production/geronimo/content/GMOxDOC30/managing-osgi-bundles.html Thu Sep 19 19:00:43 2019
@@ -124,11 +124,11 @@ under the License.
 <p>This document is organized into the following sections:</p>
 
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731696876 {padding: 0px;}
-div.rbtoc1567731696876 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731696876 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919473311 {padding: 0px;}
+div.rbtoc1568919473311 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919473311 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731696876">
+/*]]>*/</style><div class="toc-macro rbtoc1568919473311">
 <ul class="toc-indentation"><li><a shape="rect" href="#ManagingOSGiBundles-InstallinganOSGiBundle">Installing an OSGi Bundle</a></li><li><a shape="rect" href="#ManagingOSGiBundles-ManagingtheStatusofOSGiBundles">Managing the Status of OSGi Bundles</a></li><li><a shape="rect" href="#ManagingOSGiBundles-ViewingDifferentGroupsofBundles">Viewing Different Groups of Bundles</a></li><li><a shape="rect" href="#ManagingOSGiBundles-ViewingthePackageofOSGiBundles">Viewing the Package of OSGi Bundles</a></li><li><a shape="rect" href="#ManagingOSGiBundles-ViewingtheInformationofOSGiBundles">Viewing the Information of OSGi Bundles</a></li></ul>
 </div>
 

Modified: websites/production/geronimo/content/GMOxDOC30/replacing-default-realm-in-geronimo.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC30/replacing-default-realm-in-geronimo.html (original)
+++ websites/production/geronimo/content/GMOxDOC30/replacing-default-realm-in-geronimo.html Thu Sep 19 19:00:43 2019
@@ -123,11 +123,11 @@ under the License.
 
 <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 or LDAP realms in a production environment. To demonstrate how to replace the default realm, we will use two samples as followed:</p>
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731687650 {padding: 0px;}
-div.rbtoc1567731687650 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731687650 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919463989 {padding: 0px;}
+div.rbtoc1568919463989 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919463989 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731687650">
+/*]]>*/</style><div class="toc-macro rbtoc1568919463989">
 <ul class="toc-indentation"><li><a shape="rect" href="#ReplacingdefaultRealminGeronimo-Withadatabase-basedrealm">With a database-based realm</a></li><li><a shape="rect" href="#ReplacingdefaultRealminGeronimo-WithaLDAP-basedrealm">With a LDAP-based realm</a></li></ul>
 </div>
 

Modified: websites/production/geronimo/content/GMOxDOC30/starting-and-stopping-applications.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC30/starting-and-stopping-applications.html (original)
+++ websites/production/geronimo/content/GMOxDOC30/starting-and-stopping-applications.html Thu Sep 19 19:00:43 2019
@@ -120,11 +120,11 @@ under the License.
 <p>There are several alternatives available for starting and stopping applications:</p>
 
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731664591 {padding: 0px;}
-div.rbtoc1567731664591 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731664591 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919449836 {padding: 0px;}
+div.rbtoc1568919449836 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919449836 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731664591">
+/*]]>*/</style><div class="toc-macro rbtoc1568919449836">
 <ul class="toc-indentation"><li><a shape="rect" href="#Startingandstoppingapplications-ViaGeronimoAdministrationConsole">Via Geronimo Administration Console</a></li><li><a shape="rect" href="#Startingandstoppingapplications-ViaDeployertool">Via Deployer tool</a></li><li><a shape="rect" href="#Startingandstoppingapplications-ViaGShell">Via GShell</a></li></ul>
 </div>
 

Modified: websites/production/geronimo/content/GMOxDOC30/stateless-session-bean.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC30/stateless-session-bean.html (original)
+++ websites/production/geronimo/content/GMOxDOC30/stateless-session-bean.html Thu Sep 19 19:00:43 2019
@@ -152,11 +152,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.rbtoc1567731621851 {padding: 0px;}
-div.rbtoc1567731621851 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731621851 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919402711 {padding: 0px;}
+div.rbtoc1568919402711 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919402711 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731621851">
+/*]]>*/</style><div class="toc-macro rbtoc1568919402711">
 <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/GMOxDOC30/tomcat-native-clustering.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC30/tomcat-native-clustering.html (original)
+++ websites/production/geronimo/content/GMOxDOC30/tomcat-native-clustering.html Thu Sep 19 19:00:43 2019
@@ -121,11 +121,11 @@ under the License.
 <p>The Tomcat Web container provides a native clustering solution that can be configured through Geronimo by using gbean definitions within <code>config.xml</code> or by 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.rbtoc1567731685553 {padding: 0px;}
-div.rbtoc1567731685553 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731685553 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919462535 {padding: 0px;}
+div.rbtoc1568919462535 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919462535 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731685553">
+/*]]>*/</style><div class="toc-macro rbtoc1568919462535">
 <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/GMOxDOC30/using-spnego-in-geronimo.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC30/using-spnego-in-geronimo.html (original)
+++ websites/production/geronimo/content/GMOxDOC30/using-spnego-in-geronimo.html Thu Sep 19 19:00:43 2019
@@ -121,11 +121,11 @@ under the License.
 
 <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. </p>
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731693697 {padding: 0px;}
-div.rbtoc1567731693697 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731693697 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919469764 {padding: 0px;}
+div.rbtoc1568919469764 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919469764 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731693697">
+/*]]>*/</style><div class="toc-macro rbtoc1568919469764">
 <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/GMOxKB/general.html
==============================================================================
--- websites/production/geronimo/content/GMOxKB/general.html (original)
+++ websites/production/geronimo/content/GMOxKB/general.html Thu Sep 19 19:00:43 2019
@@ -111,13 +111,13 @@
                                       <a href="https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=13403" title="Can my company use Geronimo? Are there any restrictions?">Can my company use Geronimo? Are there any restrictions?</a>
               <span class="smalltext">(Apache Geronimo Knowledge Base)</span>
               <br>
-                          <a href="https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=89043" title="Where can I get the latest builds of Geronimo?">Where can I get the latest builds of Geronimo?</a>
+                          <a href="https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=7541" title="Where is the mailing list, and how can I subscribe?">Where is the mailing list, and how can I subscribe?</a>
               <span class="smalltext">(Apache Geronimo Knowledge Base)</span>
               <br>
                           <a href="https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=13404" title="How is Geronimo designed? Do I need to learn lots of custom config stuff?">How is Geronimo designed? Do I need to learn lots of custom config stuff?</a>
               <span class="smalltext">(Apache Geronimo Knowledge Base)</span>
               <br>
-                          <a href="https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=7541" title="Where is the mailing list, and how can I subscribe?">Where is the mailing list, and how can I subscribe?</a>
+                          <a href="https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=89043" title="Where can I get the latest builds of Geronimo?">Where can I get the latest builds of Geronimo?</a>
               <span class="smalltext">(Apache Geronimo Knowledge Base)</span>
               <br>
                           <a href="https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=13609" title="Does this project use a wiki?">Does this project use a wiki?</a>

Modified: websites/production/geronimo/content/GMOxKB/geronimo-developer-questions.html
==============================================================================
--- websites/production/geronimo/content/GMOxKB/geronimo-developer-questions.html (original)
+++ websites/production/geronimo/content/GMOxKB/geronimo-developer-questions.html Thu Sep 19 19:00:43 2019
@@ -108,10 +108,10 @@
               <a href="javascript:hideChildren()">Hide Children</a></span>
           </div>
           <div class="greybox" id="children" style="display: none;">
-                                      <a href="https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=51124" title="What format should I use for SVN Commit messages?">What format should I use for SVN Commit messages?</a>
+                                      <a href="https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=13444" title="How do I get the latest version?">How do I get the latest version?</a>
               <span class="smalltext">(Apache Geronimo Knowledge Base)</span>
               <br>
-                          <a href="https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=13444" title="How do I get the latest version?">How do I get the latest version?</a>
+                          <a href="https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=51124" title="What format should I use for SVN Commit messages?">What format should I use for SVN Commit messages?</a>
               <span class="smalltext">(Apache Geronimo Knowledge Base)</span>
               <br>
                           <a href="https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=13449" title="What on Earth is a GBean? Why are they different from MBeans?">What on Earth is a GBean? Why are they different from MBeans?</a>

Modified: websites/production/geronimo/content/cache/GMOxDEV.pageCache
==============================================================================
Binary files - no diff available.

Modified: websites/production/geronimo/content/cache/GMOxDOC10.pageCache
==============================================================================
Binary files - no diff available.

Modified: websites/production/geronimo/content/cache/GMOxDOC11.pageCache
==============================================================================
Binary files - no diff available.

Modified: websites/production/geronimo/content/cache/GMOxDOC12.pageCache
==============================================================================
Binary files - no diff available.

Modified: websites/production/geronimo/content/cache/GMOxDOC20.pageCache
==============================================================================
Binary files - no diff available.

Modified: websites/production/geronimo/content/cache/GMOxDOC20es.pageCache
==============================================================================
Binary files - no diff available.

Modified: websites/production/geronimo/content/cache/GMOxDOC20ja.pageCache
==============================================================================
Binary files - no diff available.

Modified: websites/production/geronimo/content/cache/GMOxDOC21.pageCache
==============================================================================
Binary files - no diff available.

Modified: websites/production/geronimo/content/cache/GMOxDOC22.pageCache
==============================================================================
Binary files - no diff available.

Modified: websites/production/geronimo/content/cache/GMOxDOC30.pageCache
==============================================================================
Binary files - no diff available.

Modified: websites/production/geronimo/content/cache/GMOxKB.pageCache
==============================================================================
Binary files - no diff available.

Modified: websites/production/geronimo/content/cache/GMOxPMGT.pageCache
==============================================================================
Binary files - no diff available.

Modified: websites/production/geronimo/content/cache/GMOxSAMPLES.pageCache
==============================================================================
Binary files - no diff available.

Modified: websites/production/geronimo/content/cache/GMOxSBOX.pageCache
==============================================================================
Binary files - no diff available.

Modified: websites/production/geronimo/content/cache/GMOxSITE.pageCache
==============================================================================
Binary files - no diff available.

Modified: websites/production/geronimo/content/cache/geronimo.pageCache
==============================================================================
Binary files - no diff available.

Modified: websites/production/geronimo/content/cache/gshell.pageCache
==============================================================================
Binary files - no diff available.

Modified: websites/production/geronimo/content/cache/xbean.pageCache
==============================================================================
Binary files - no diff available.

Modified: websites/production/geronimo/content/doc/java-ee-50-app-development-on-geronimo-simplified-using-eclipse.html
==============================================================================
--- websites/production/geronimo/content/doc/java-ee-50-app-development-on-geronimo-simplified-using-eclipse.html (original)
+++ websites/production/geronimo/content/doc/java-ee-50-app-development-on-geronimo-simplified-using-eclipse.html Thu Sep 19 19:00:43 2019
@@ -104,7 +104,7 @@
 3) Debugging the Java EE application using Eclipse Debugger.</p>
 
 <p>Session material can be downloaded from here:<br clear="none">
-<a shape="rect" href="java-ee-50-app-development-on-geronimo-simplified-using-eclipse.data/JavaEE_App_Development_Geronimo_Eclipse.zip?version=1&amp;modificationDate=1194823193000&amp;api=v2" data-linked-resource-id="59670921" data-linked-resource-version="1" data-linked-resource-type="attachment" data-linked-resource-default-alias="JavaEE_App_Development_Geronimo_Eclipse.zip" data-nice-type="Zip Archive" data-linked-resource-content-type="application/zip" data-linked-resource-container-id="65585" data-linked-resource-container-version="39">JavaEE_App_Development_Geronimo_Eclipse.zip</a></p></div>
+<a shape="rect" href="java-ee-50-app-development-on-geronimo-simplified-using-eclipse.data/JavaEE_App_Development_Geronimo_Eclipse.zip?version=1&amp;modificationDate=1194823193000&amp;api=v2" data-linked-resource-id="59670921" data-linked-resource-version="1" data-linked-resource-type="attachment" data-linked-resource-default-alias="JavaEE_App_Development_Geronimo_Eclipse.zip" data-nice-type="Zip Archive" data-linked-resource-content-type="application/zip" data-linked-resource-container-id="65585" data-linked-resource-container-version="40">JavaEE_App_Development_Geronimo_Eclipse.zip</a></p></div>
         </div>
 
         

Modified: websites/production/geronimo/content/doc/pluggable-administration-console.html
==============================================================================
--- websites/production/geronimo/content/doc/pluggable-administration-console.html (original)
+++ websites/production/geronimo/content/doc/pluggable-administration-console.html Thu Sep 19 19:00:43 2019
@@ -98,18 +98,18 @@
 <p>The following presentation shows the new pluggable console for Little-G. This new console allows easier integration for the newly installed plugins providing a framework for integrating the corresponding administration portlets.</p>
 
 <p></p><div class="embeddedObject">
-    <object allowscriptaccess="never" allownetworking="none" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" data="https://cwiki.apache.org/confluence/download/attachments/64639/geronimopluggedin.swf?atl_token=16336d9659aac3418fbdd4aae29370efbc956009" height="600" type="application/x-shockwave-flash" width="800">
+    <object allowscriptaccess="never" allownetworking="none" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" data="https://cwiki.apache.org/confluence/download/attachments/64639/geronimopluggedin.swf?atl_token=4c1878c9ff3095f0451029fe0b014650d4620fef" height="600" type="application/x-shockwave-flash" width="800">
      <param valuetype="data" name="AllowScriptAccess" value="never">  <param valuetype="data" name="allowNetworking" value="none">                 <param valuetype="data" name="play" value="false">
                     <param valuetype="data" name="autostart" value="false">
-                    <param valuetype="data" name="data" value="https://cwiki.apache.org/confluence/download/attachments/64639/geronimopluggedin.swf?atl_token=16336d9659aac3418fbdd4aae29370efbc956009">
+                    <param valuetype="data" name="data" value="https://cwiki.apache.org/confluence/download/attachments/64639/geronimopluggedin.swf?atl_token=4c1878c9ff3095f0451029fe0b014650d4620fef">
                     <param valuetype="data" name="loop" value="false">
                     <param valuetype="data" name="menu" value="false">
-                    <param valuetype="data" name="movie" value="https://cwiki.apache.org/confluence/download/attachments/64639/geronimopluggedin.swf?atl_token=16336d9659aac3418fbdd4aae29370efbc956009">
+                    <param valuetype="data" name="movie" value="https://cwiki.apache.org/confluence/download/attachments/64639/geronimopluggedin.swf?atl_token=4c1878c9ff3095f0451029fe0b014650d4620fef">
                     <param valuetype="data" name="quality" value="high">
                     <param valuetype="data" name="scale" value="exactfit">
-                    <param valuetype="data" name="src" value="https://cwiki.apache.org/confluence/download/attachments/64639/geronimopluggedin.swf?atl_token=16336d9659aac3418fbdd4aae29370efbc956009">
+                    <param valuetype="data" name="src" value="https://cwiki.apache.org/confluence/download/attachments/64639/geronimopluggedin.swf?atl_token=4c1878c9ff3095f0451029fe0b014650d4620fef">
                     <param valuetype="data" name="type" value="application/x-shockwave-flash">
-                <embed allowscriptaccess="never" allownetworking="none" play="false" autostart="false" height="600" pluginspage="https://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" quality="high" src="https://cwiki.apache.org/confluence/download/attachments/64639/geronimopluggedin.swf?atl_token=16336d9659aac3418fbdd4aae29370efbc956009" type="application/x-shockwave-flash" scale="exactfit" width="800">
+                <embed allowscriptaccess="never" allownetworking="none" play="false" autostart="false" height="600" pluginspage="https://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" quality="high" src="https://cwiki.apache.org/confluence/download/attachments/64639/geronimopluggedin.swf?atl_token=4c1878c9ff3095f0451029fe0b014650d4620fef" type="application/x-shockwave-flash" scale="exactfit" width="800">
     </embed>
                         </object>
 

Modified: websites/production/geronimo/content/gshell/bsf-commands.html
==============================================================================
--- websites/production/geronimo/content/gshell/bsf-commands.html (original)
+++ websites/production/geronimo/content/gshell/bsf-commands.html Thu Sep 19 19:00:43 2019
@@ -340,11 +340,11 @@
             <div class="wiki-content">
                 <div class="wiki-content maincontent"><h1 id="BSFCommands-BSFCommands">    BSF Commands</h1>
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731742557 {padding: 0px;}
-div.rbtoc1567731742557 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731742557 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919515419 {padding: 0px;}
+div.rbtoc1568919515419 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919515419 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731742557">
+/*]]>*/</style><div class="toc-macro rbtoc1568919515419">
 <ul class="toc-indentation"><li><a shape="rect" href="#BSFCommands-script">script</a></li></ul>
 </div>
 

Modified: websites/production/geronimo/content/gshell/builtin-commands.html
==============================================================================
--- websites/production/geronimo/content/gshell/builtin-commands.html (original)
+++ websites/production/geronimo/content/gshell/builtin-commands.html Thu Sep 19 19:00:43 2019
@@ -340,11 +340,11 @@
             <div class="wiki-content">
                 <div class="wiki-content maincontent"><h1 id="BuiltinCommands-BuiltinCommands">    Builtin Commands</h1>
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731743332 {padding: 0px;}
-div.rbtoc1567731743332 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731743332 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919516413 {padding: 0px;}
+div.rbtoc1568919516413 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919516413 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731743332">
+/*]]>*/</style><div class="toc-macro rbtoc1568919516413">
 <ul class="toc-indentation"><li><a shape="rect" href="#BuiltinCommands-help">help</a></li><li><a shape="rect" href="#BuiltinCommands-set">set</a></li><li><a shape="rect" href="#BuiltinCommands-unset">unset</a></li><li><a shape="rect" href="#BuiltinCommands-clear">clear</a></li><li><a shape="rect" href="#BuiltinCommands-exit">exit</a></li><li><a shape="rect" href="#BuiltinCommands-source">source</a></li><li><a shape="rect" href="#BuiltinCommands-echo">echo</a></li></ul>
 </div>
 

Modified: websites/production/geronimo/content/gshell/optional-commands.html
==============================================================================
--- websites/production/geronimo/content/gshell/optional-commands.html (original)
+++ websites/production/geronimo/content/gshell/optional-commands.html Thu Sep 19 19:00:43 2019
@@ -340,11 +340,11 @@
             <div class="wiki-content">
                 <div class="wiki-content maincontent"><h1 id="OptionalCommands-OptionalCommands">    Optional Commands</h1>
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731745284 {padding: 0px;}
-div.rbtoc1567731745284 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731745284 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919514925 {padding: 0px;}
+div.rbtoc1568919514925 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919514925 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731745284">
+/*]]>*/</style><div class="toc-macro rbtoc1568919514925">
 <ul class="toc-indentation"><li><a shape="rect" href="#OptionalCommands-sleep">sleep</a></li><li><a shape="rect" href="#OptionalCommands-exec">exec</a></li><li><a shape="rect" href="#OptionalCommands-java">java</a></li><li><a shape="rect" href="#OptionalCommands-wait">wait</a></li><li><a shape="rect" href="#OptionalCommands-cat">cat</a></li></ul>
 </div>
 

Modified: websites/production/geronimo/content/gshell/remote-shell-commands.html
==============================================================================
--- websites/production/geronimo/content/gshell/remote-shell-commands.html (original)
+++ websites/production/geronimo/content/gshell/remote-shell-commands.html Thu Sep 19 19:00:43 2019
@@ -340,11 +340,11 @@
             <div class="wiki-content">
                 <div class="wiki-content maincontent"><h1 id="RemoteShellCommands-RemoteShellCommands">    Remote Shell Commands</h1>
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731744075 {padding: 0px;}
-div.rbtoc1567731744075 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731744075 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919516935 {padding: 0px;}
+div.rbtoc1568919516935 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919516935 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731744075">
+/*]]>*/</style><div class="toc-macro rbtoc1568919516935">
 <ul class="toc-indentation"><li><a shape="rect" href="#RemoteShellCommands-rsh-server">rsh-server</a></li><li><a shape="rect" href="#RemoteShellCommands-rsh">rsh</a></li></ul>
 </div>
 

Modified: websites/production/geronimo/content/gshell/vfs-commands.html
==============================================================================
--- websites/production/geronimo/content/gshell/vfs-commands.html (original)
+++ websites/production/geronimo/content/gshell/vfs-commands.html Thu Sep 19 19:00:43 2019
@@ -340,11 +340,11 @@
             <div class="wiki-content">
                 <div class="wiki-content maincontent"><h1 id="VFSCommands-VFSCommands">    VFS Commands</h1>
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1567731744760 {padding: 0px;}
-div.rbtoc1567731744760 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1567731744760 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1568919515902 {padding: 0px;}
+div.rbtoc1568919515902 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1568919515902 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1567731744760">
+/*]]>*/</style><div class="toc-macro rbtoc1568919515902">
 <ul class="toc-indentation"><li><a shape="rect" href="#VFSCommands-copy">copy</a></li></ul>
 </div>