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/03/31 19:02:40 UTC

svn commit: r1042927 [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 Sun Mar 31 19:02:39 2019
@@ -128,7 +128,118 @@ 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>
 
-<div class="error"><span class="error">Error formatting macro: snippet: java.lang.IndexOutOfBoundsException: Index: 20, Size: 20</span> </div>
+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>
 
 
 <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>
@@ -192,7 +303,189 @@ under the License.
 
 <p>The schema for security configuration is as follows:</p>
 
-<div class="error"><span class="error">Error formatting macro: snippet: java.lang.IndexOutOfBoundsException: Index: 20, Size: 20</span> </div>
+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>
 
 
 <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 Sun Mar 31 19:02:39 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.rbtoc1553649030277 {padding: 0px;}
-div.rbtoc1553649030277 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1553649030277 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1554058763631 {padding: 0px;}
+div.rbtoc1554058763631 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1554058763631 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1553649030277">
+/*]]>*/</style><div class="toc-macro rbtoc1554058763631">
 <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 Sun Mar 31 19:02:39 2019
@@ -124,11 +124,11 @@ under the License.
 
 <p>The document is organized as follows.</p>
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1553649037423 {padding: 0px;}
-div.rbtoc1553649037423 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1553649037423 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1554058770699 {padding: 0px;}
+div.rbtoc1554058770699 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1554058770699 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1553649037423">
+/*]]>*/</style><div class="toc-macro rbtoc1554058770699">
 <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 Sun Mar 31 19:02:39 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.rbtoc1553649038080 {padding: 0px;}
-div.rbtoc1553649038080 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1553649038080 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1554058771304 {padding: 0px;}
+div.rbtoc1554058771304 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1554058771304 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1553649038080">
+/*]]>*/</style><div class="toc-macro rbtoc1554058771304">
 <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 Sun Mar 31 19:02:39 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.rbtoc1553648974528 {padding: 0px;}
-div.rbtoc1553648974528 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1553648974528 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1554058702486 {padding: 0px;}
+div.rbtoc1554058702486 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1554058702486 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1553648974528">
+/*]]>*/</style><div class="toc-macro rbtoc1554058702486">
 <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 Sun Mar 31 19:02:39 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.rbtoc1553649024884 {padding: 0px;}
-div.rbtoc1553649024884 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1553649024884 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1554058758116 {padding: 0px;}
+div.rbtoc1554058758116 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1554058758116 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1553649024884">
+/*]]>*/</style><div class="toc-macro rbtoc1554058758116">
 <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 Sun Mar 31 19:02:39 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.rbtoc1553649061899 {padding: 0px;}
-div.rbtoc1553649061899 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1553649061899 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1554058794033 {padding: 0px;}
+div.rbtoc1554058794033 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1554058794033 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1553649061899">
+/*]]>*/</style><div class="toc-macro rbtoc1554058794033">
 <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 Sun Mar 31 19:02:39 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.rbtoc1553648986744 {padding: 0px;}
-div.rbtoc1553648986744 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1553648986744 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1554058720623 {padding: 0px;}
+div.rbtoc1554058720623 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1554058720623 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1553648986744">
+/*]]>*/</style><div class="toc-macro rbtoc1554058720623">
 <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 Sun Mar 31 19:02:39 2019
@@ -135,15 +135,15 @@ under the License.
 
 <p>The tutorial is divided into the following sections.</p>
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1553648985010 {padding: 0px;}
-div.rbtoc1553648985010 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1553648985010 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1554058719340 {padding: 0px;}
+div.rbtoc1554058719340 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1554058719340 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1553648985010">
+/*]]>*/</style><div class="toc-macro rbtoc1554058719340">
 <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="30">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="31">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 Sun Mar 31 19:02:39 2019
@@ -127,11 +127,11 @@ under the License.
 <p>This document is organized in the following sections:</p>
 
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1553648967380 {padding: 0px;}
-div.rbtoc1553648967380 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1553648967380 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1554058697252 {padding: 0px;}
+div.rbtoc1554058697252 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1554058697252 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1553648967380">
+/*]]>*/</style><div class="toc-macro rbtoc1554058697252">
 <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.rbtoc1553648967380 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 Sun Mar 31 19:02:39 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="31">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="32">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 Sun Mar 31 19:02:39 2019
@@ -125,11 +125,11 @@ under the License.
 
 <p>The tutorial is divided into the following sections.</p>
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1553648997950 {padding: 0px;}
-div.rbtoc1553648997950 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1553648997950 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1554058732168 {padding: 0px;}
+div.rbtoc1554058732168 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1554058732168 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1553648997950">
+/*]]>*/</style><div class="toc-macro rbtoc1554058732168">
 <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.rbtoc1553648997950 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="30">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="31">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 Sun Mar 31 19:02:39 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.rbtoc1553649057028 {padding: 0px;}
-div.rbtoc1553649057028 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1553649057028 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1554058787136 {padding: 0px;}
+div.rbtoc1554058787136 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1554058787136 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1553649057028">
+/*]]>*/</style><div class="toc-macro rbtoc1554058787136">
 <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 Sun Mar 31 19:02:39 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.rbtoc1553649005135 {padding: 0px;}
-div.rbtoc1553649005135 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1553649005135 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1554058736965 {padding: 0px;}
+div.rbtoc1554058736965 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1554058736965 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1553649005135">
+/*]]>*/</style><div class="toc-macro rbtoc1554058736965">
 <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 Sun Mar 31 19:02:39 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.rbtoc1553649006997 {padding: 0px;}
-div.rbtoc1553649006997 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1553649006997 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1554058740857 {padding: 0px;}
+div.rbtoc1554058740857 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1554058740857 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1553649006997">
+/*]]>*/</style><div class="toc-macro rbtoc1554058740857">
 <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 Sun Mar 31 19:02:39 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.rbtoc1553649041678 {padding: 0px;}
-div.rbtoc1553649041678 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1553649041678 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1554058774809 {padding: 0px;}
+div.rbtoc1554058774809 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1554058774809 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1553649041678">
+/*]]>*/</style><div class="toc-macro rbtoc1554058774809">
 <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 Sun Mar 31 19:02:39 2019
@@ -122,11 +122,11 @@ under the License.
 
 <p>This article is organized in to following sections.</p>
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1553649032974 {padding: 0px;}
-div.rbtoc1553649032974 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1553649032974 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1554058766364 {padding: 0px;}
+div.rbtoc1554058766364 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1554058766364 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1553649032974">
+/*]]>*/</style><div class="toc-macro rbtoc1554058766364">
 <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 Sun Mar 31 19:02:39 2019
@@ -124,11 +124,11 @@ under the License.
 <p>This document is organized in the following sections:</p>
 
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1553649046489 {padding: 0px;}
-div.rbtoc1553649046489 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1553649046489 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1554058779859 {padding: 0px;}
+div.rbtoc1554058779859 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1554058779859 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1553649046489">
+/*]]>*/</style><div class="toc-macro rbtoc1554058779859">
 <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 Sun Mar 31 19:02:39 2019
@@ -124,11 +124,11 @@ under the License.
 <p>This document is organized into the following sections:</p>
 
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1553649057563 {padding: 0px;}
-div.rbtoc1553649057563 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1553649057563 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1554058791440 {padding: 0px;}
+div.rbtoc1554058791440 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1554058791440 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1553649057563">
+/*]]>*/</style><div class="toc-macro rbtoc1554058791440">
 <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 Sun Mar 31 19:02:39 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.rbtoc1553649047631 {padding: 0px;}
-div.rbtoc1553649047631 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1553649047631 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1554058780384 {padding: 0px;}
+div.rbtoc1554058780384 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1554058780384 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1553649047631">
+/*]]>*/</style><div class="toc-macro rbtoc1554058780384">
 <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 Sun Mar 31 19:02:39 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.rbtoc1553649024089 {padding: 0px;}
-div.rbtoc1553649024089 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1553649024089 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1554058757293 {padding: 0px;}
+div.rbtoc1554058757293 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1554058757293 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1553649024089">
+/*]]>*/</style><div class="toc-macro rbtoc1554058757293">
 <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 Sun Mar 31 19:02:39 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.rbtoc1553648970821 {padding: 0px;}
-div.rbtoc1553648970821 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1553648970821 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1554058700150 {padding: 0px;}
+div.rbtoc1554058700150 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1554058700150 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1553648970821">
+/*]]>*/</style><div class="toc-macro rbtoc1554058700150">
 <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 Sun Mar 31 19:02:39 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.rbtoc1553649043693 {padding: 0px;}
-div.rbtoc1553649043693 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1553649043693 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1554058777800 {padding: 0px;}
+div.rbtoc1554058777800 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1554058777800 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1553649043693">
+/*]]>*/</style><div class="toc-macro rbtoc1554058777800">
 <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 Sun Mar 31 19:02:39 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.rbtoc1553649053358 {padding: 0px;}
-div.rbtoc1553649053358 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1553649053358 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1554058788184 {padding: 0px;}
+div.rbtoc1554058788184 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1554058788184 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1553649053358">
+/*]]>*/</style><div class="toc-macro rbtoc1554058788184">
 <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 Sun Mar 31 19:02:39 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 Sun Mar 31 19:02:39 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 Sun Mar 31 19:02:39 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="28">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="29">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 Sun Mar 31 19:02:39 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=c21d66a462e5cb08f8187b4c6346b2aec6297345" 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=da7d8909e223bf34b83ba65d3966e3ead35e7d14" 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=c21d66a462e5cb08f8187b4c6346b2aec6297345">
+                    <param valuetype="data" name="data" value="https://cwiki.apache.org/confluence/download/attachments/64639/geronimopluggedin.swf?atl_token=da7d8909e223bf34b83ba65d3966e3ead35e7d14">
                     <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=c21d66a462e5cb08f8187b4c6346b2aec6297345">
+                    <param valuetype="data" name="movie" value="https://cwiki.apache.org/confluence/download/attachments/64639/geronimopluggedin.swf?atl_token=da7d8909e223bf34b83ba65d3966e3ead35e7d14">
                     <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=c21d66a462e5cb08f8187b4c6346b2aec6297345">
+                    <param valuetype="data" name="src" value="https://cwiki.apache.org/confluence/download/attachments/64639/geronimopluggedin.swf?atl_token=da7d8909e223bf34b83ba65d3966e3ead35e7d14">
                     <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=c21d66a462e5cb08f8187b4c6346b2aec6297345" 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=da7d8909e223bf34b83ba65d3966e3ead35e7d14" 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 Sun Mar 31 19:02:39 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.rbtoc1553649102625 {padding: 0px;}
-div.rbtoc1553649102625 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1553649102625 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1554058838803 {padding: 0px;}
+div.rbtoc1554058838803 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1554058838803 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1553649102625">
+/*]]>*/</style><div class="toc-macro rbtoc1554058838803">
 <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 Sun Mar 31 19:02:39 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.rbtoc1553649104150 {padding: 0px;}
-div.rbtoc1553649104150 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1553649104150 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1554058836379 {padding: 0px;}
+div.rbtoc1554058836379 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1554058836379 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1553649104150">
+/*]]>*/</style><div class="toc-macro rbtoc1554058836379">
 <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 Sun Mar 31 19:02:39 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.rbtoc1553649102126 {padding: 0px;}
-div.rbtoc1553649102126 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1553649102126 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1554058835886 {padding: 0px;}
+div.rbtoc1554058835886 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1554058835886 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1553649102126">
+/*]]>*/</style><div class="toc-macro rbtoc1554058835886">
 <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 Sun Mar 31 19:02:39 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.rbtoc1553649103148 {padding: 0px;}
-div.rbtoc1553649103148 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1553649103148 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1554058838309 {padding: 0px;}
+div.rbtoc1554058838309 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1554058838309 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1553649103148">
+/*]]>*/</style><div class="toc-macro rbtoc1554058838309">
 <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 Sun Mar 31 19:02:39 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.rbtoc1553649103656 {padding: 0px;}
-div.rbtoc1553649103656 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1553649103656 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1554058839292 {padding: 0px;}
+div.rbtoc1554058839292 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1554058839292 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1553649103656">
+/*]]>*/</style><div class="toc-macro rbtoc1554058839292">
 <ul class="toc-indentation"><li><a shape="rect" href="#VFSCommands-copy">copy</a></li></ul>
 </div>