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 2018/05/21 13:00:10 UTC

svn commit: r1030161 [5/12] - in /websites/production/geronimo/content: GMOxDOC12/ GMOxDOC12/administering-security-realms.data/ GMOxDOC12/administering-the-apache-geronimo-server.data/ GMOxDOC12/configuring-the-jms-server.data/ GMOxDOC12/create-a-data...

Modified: websites/production/geronimo/content/GMOxDOC21/mytime-very-simple-session-ejb-example.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC21/mytime-very-simple-session-ejb-example.html (original)
+++ websites/production/geronimo/content/GMOxDOC21/mytime-very-simple-session-ejb-example.html Mon May 21 13:00:07 2018
@@ -110,7 +110,7 @@ The primary purpose of the example is to
 
 <p><strong>MyTimeBean.java</strong> is an EJB that can tell time. The EJB is in the package  org.apache.geronimo.samples.mytimepak. By using the @Stateless annotation Geronimo will recognize that this is a stateless session bean. There is no need for a ejb-jar.xml.</p>
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>MyTimeBean.java</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 package org.apache.geronimo.samples.mytimepak;
 
 import javax.ejb.Stateless;
@@ -127,7 +127,7 @@ public class MyTimeBean implements MyTim
 </div></div>
 <p><strong>MyTimeLocal.java</strong> is the Local interface. As this EJB will only be used from a JSP-page that is running in the same server (same JVM) I use a Local interface that do not make use of the network.</p>
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>MyTimeLocal.java</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 package org.apache.geronimo.samples.mytimepak;
 public interface MyTimeLocal {
    public java.lang.String getTime() ;
@@ -136,7 +136,7 @@ public interface MyTimeLocal {
 </div></div>
 <p><strong>index.jsp</strong> utilizes the MyTimeBean to tell time.</p>
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>index.jsp</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 &lt;%@ page contentType="text/html" import="javax.naming.Context, javax.naming.InitialContext " %&gt;
 &lt;%@ page import="org.apache.geronimo.samples.mytimepak.MyTimeLocal" %&gt;
 &lt;html
@@ -168,7 +168,7 @@ This is the time returned from the EJB:
 
 <p><strong>plan.xml</strong> is generated by building the sample and can be found under <strong>./mytime-jetty/target/resources/META-INF/plan.xml</strong> to deploy on jetty or <strong>./mytime-tomcat/target/resources/META-INF/plan.xml</strong> to deploy on tomcat following a successful build of the sample.  Shown below is the deployment plan for tomcat.</p>
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>plan.xml</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 &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

Modified: websites/production/geronimo/content/GMOxDOC21/release-notes-216txt.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC21/release-notes-216txt.html (original)
+++ websites/production/geronimo/content/GMOxDOC21/release-notes-216txt.html Mon May 21 13:00:07 2018
@@ -103,7 +103,7 @@
           <div class="wiki-content maincontent">
 
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 Release Notes -- Apache Geronimo -- Version 2.1.6
 
 

Modified: websites/production/geronimo/content/GMOxDOC21/tomcat-native-clustering.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC21/tomcat-native-clustering.html (original)
+++ websites/production/geronimo/content/GMOxDOC21/tomcat-native-clustering.html Mon May 21 13:00:07 2018
@@ -118,7 +118,7 @@ A cluster configuration should be consid
 
 <ul><li>Ensure that every object placed in the HTTP session implements java.io.Serializable. The clustering feature serializes the objects when it distributes them to the other nodes in the cluster.</li><li>The deployment descriptor for your Web application, that is the <code>web.xml</code> file in the Web archive, must indicate that your Web application is distributable. To do this, insert the <strong>distributable</strong> element in the deployment descriptor.
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>Excerpt from web.xml</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 &lt;?xml version="1.0" encoding="ISO-8859-1"?&gt;
 &lt;!DOCTYPE web-app
     PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
@@ -145,7 +145,7 @@ A cluster configuration should be consid
 
 
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>Excerpt from config.xml</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 &lt;gbean name="TomcatEngine"&gt;
   &lt;attribute name="initParams"&gt;
     name=geronimo
@@ -166,7 +166,7 @@ A cluster configuration should be consid
 
 <ul><li>Sample geronimo-web.xml for geronimo 2.1.4 and below
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>geronimo-web.xml</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 &lt;?xml version="1.0" encoding="UTF-8"?&gt;
 &lt;web-app xmlns="http://geronimo.apache.org/xml/ns/j2ee/web/tomcat-2.0.1"
          xmlns:dep="http://geronimo.apache.org/xml/ns/deployment-1.2"&gt;
@@ -290,7 +290,7 @@ After applying fix to 2.1 through GERONI
 
 
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>geronimo-web.xml</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 &lt;?xml version="1.0" encoding="UTF-8"?&gt;
 &lt;web-app xmlns="http://geronimo.apache.org/xml/ns/j2ee/web/tomcat-2.0.1"
          xmlns:dep="http://geronimo.apache.org/xml/ns/deployment-1.2"&gt;
@@ -441,7 +441,7 @@ After applying fix to 2.1 through GERONI
 <p>To convert this example to a multicast configuration, the <code>DisableMCastInterceptor</code>, <code>StaticMemberInterceptor</code>, and <code>StaticMember</code> definitions should be removed.  Also, the value for the <em>address</em> attribute for the <code>ReceiverGBean</code> definition should be changed to <strong>auto</strong>. </p>
 
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>excerpt from geronimo-web.xml</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 ...
     &lt;cluster&gt;TomcatCluster&lt;/cluster&gt;
         &lt;gbean name="TomcatCluster" class="org.apache.geronimo.tomcat.cluster.CatalinaClusterGBean"&gt;
@@ -600,7 +600,7 @@ After applying fix to 2.1 through GERONI
 
 <p>Interceptors can perform actions when a message is sent or received. Use a reference <code>NextInterceptor</code> in interceptor configurations to chain interceptors together. You can control how the client requests are processed by arranging the order of the interceptor chain. In the following sample code, when the <code>TcpFailureDetector</code> intercepter catches errors, it calls the next interceptor <code>StaticMember1Interceptor</code>. The static member referenced inside <code>StaticMember1Interceptor</code>, static member 2 in this example, will immediately take over the work of the first static member. </p>
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>excerpt of interceptor chain</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 ...
 &lt;gbean name="TcpFailureDetector" class="org.apache.geronimo.tomcat.cluster.ChannelInterceptorGBean"&gt;
  	 &lt;attribute name="className"&gt;org.apache.catalina.tribes.group.interceptors.TcpFailureDetector&lt;/attribute&gt;
@@ -626,7 +626,7 @@ After applying fix to 2.1 through GERONI
 
 <p>All the static members involved should be defined in the deployment plan as well as the relationship between these static members. Use a reference <code>NextStaticMember</code> in the definition of each static member, except for the last one, to chain static members together. When static member 2 in this example fails to take over the work, static member 3 will immediately take over the work. It is the same for longer static  member chain. When a static member fails to take over the work of the previous static member, it calls the next static member in the chain. The request is passed along until a static member can handle the work or it gets to the end. </p>
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>excerpt of static member chain</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 ...
 &lt;gbean name="StaticMember2" class="org.apache.geronimo.tomcat.cluster.StaticMemberGBean"&gt;
 	  	 &lt;attribute name="className"&gt;org.apache.catalina.tribes.membership.StaticMember&lt;/attribute&gt;
@@ -646,7 +646,7 @@ After applying fix to 2.1 through GERONI
 
 <p>See the following deployment plan snippet as a complete example of setting up application-scoped unicast clustering with more than two nodes. </p>
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>excerpt from geronimo-web.xml</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 ...
  	 &lt;cluster&gt;TomcatCluster&lt;/cluster&gt;
  	 &lt;gbean name="TomcatCluster" class="org.apache.geronimo.tomcat.cluster.CatalinaClusterGBean"&gt;

Modified: websites/production/geronimo/content/GMOxDOC21/using-datasource-pool-wizard-in-gep.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC21/using-datasource-pool-wizard-in-gep.html (original)
+++ websites/production/geronimo/content/GMOxDOC21/using-datasource-pool-wizard-in-gep.html Mon May 21 13:00:07 2018
@@ -152,7 +152,7 @@
 
 <p>Now you have created a new datasource pool. You can click the <strong>Source</strong> tab to review the deployment plan of the connector. The following figure shows a sample deployment plan with a new datasource connector embedded:<br clear="none" class="atl-forced-newline"></p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;"><b>geronimo-application.xml</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 &lt;?xml version="1.0" encoding="UTF-8"?&gt;&lt;app:application application-name="TestEAR" xmlns:app="http://geronimo.apache.org/xml/ns/j2ee/application-2.0" 
 xmlns:client="http://geronimo.apache.org/xml/ns/j2ee/application-client-2.0" xmlns:conn="http://geronimo.apache.org/xml/ns/j2ee/connector-1.2" 
 xmlns:dep="http://geronimo.apache.org/xml/ns/deployment-1.2" xmlns:ejb="http://openejb.apache.org/xml/ns/openejb-jar-2.2" 

Modified: websites/production/geronimo/content/GMOxDOC21/using-eclipse-xml-tools-in-apache-geronimo.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC21/using-eclipse-xml-tools-in-apache-geronimo.html (original)
+++ websites/production/geronimo/content/GMOxDOC21/using-eclipse-xml-tools-in-apache-geronimo.html Mon May 21 13:00:07 2018
@@ -112,17 +112,17 @@
 
 <p>This tutorial will take you with the following steps:</p>
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1523343312978 {padding: 0px;}
-div.rbtoc1523343312978 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1523343312978 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1526907248336 {padding: 0px;}
+div.rbtoc1526907248336 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1526907248336 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1523343312978">
+/*]]>*/</style><div class="toc-macro rbtoc1526907248336">
 <ul class="toc-indentation"><li><a shape="rect" href="#UsingEclipseXMLtoolsinApacheGeronimo-ConfiguringEclipseforgeronimoschema">Configuring Eclipse for geronimo schema</a></li><li><a shape="rect" href="#UsingEclipseXMLtoolsinApacheGeronimo-Usingtheconfigurationinapplicationdevelopment">Using the configuration in application development</a></li></ul>
 </div>
 <h1 id="UsingEclipseXMLtoolsinApacheGeronimo-ConfiguringEclipseforgeronimoschema">Configuring Eclipse for geronimo schema</h1>
 <ol><li>Geronimo schema can be found &lt;GERONIMO_HOME&gt;/schema. Copy all these schema to a folder say geronimoschema.</li><li>Add the following XML catalog file to this folder and zip it. This will give you geronimoschema.zip
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;"><b>geronimoXmlCatalog.xmlcatalog</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 &lt;?xml version="1.0" encoding="UTF-8"?&gt;
 &lt;catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog"&gt;
   &lt;uri name="http://geronimo.apache.org/xml/ns/attributes-1.2" uri="platform:/resource/geronimoschema/attributes-1.2.xsd"/&gt;

Modified: websites/production/geronimo/content/GMOxDOC21/using-spnego-in-geronimo.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC21/using-spnego-in-geronimo.html (original)
+++ websites/production/geronimo/content/GMOxDOC21/using-spnego-in-geronimo.html Mon May 21 13:00:07 2018
@@ -105,11 +105,11 @@
 <p>Using the <a shape="rect" class="external-link" href="ftp://ftp.isi.edu/in-notes/rfc2478.txt" rel="nofollow" title="SPNEGO">Simple and Protected GSS-API Negotiation Mechanism(SPNEGO)</a> in Geronimo allows HTTP users to log in and authenticate only once in their desktop, then they can receive automatic authentication from the Geronimo server. Note that the feature is only supported in Geronimo 2.1.5 or later versions</p>
 
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1523343320277 {padding: 0px;}
-div.rbtoc1523343320277 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1523343320277 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1526907255746 {padding: 0px;}
+div.rbtoc1526907255746 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1526907255746 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1523343320277">
+/*]]>*/</style><div class="toc-macro rbtoc1526907255746">
 <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>
@@ -154,7 +154,7 @@ where
 <h2 id="UsingSPNEGOinGeronimo-SettinguptheGeronimoserver">Setting up the Geronimo server</h2>
 <ol><li>Copy the Keroes keytab file <code>krb5.keytab</code> to one of directories of your Geronimo Server. The file was created during <a shape="rect" href="using-spnego-in-geronimo.html">Setting up the Domain Controller Machine</a>.</li><li>Create a basic Kerbeores configuration file named <code>krb5.ini</code> in order to use the SPNEGO for the server. The files should be stored on local server and with the following keys list defining the Kerberoes key distribution center(KDC) name and the realm setting for the SPNEGO authentication.
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;"><b>krb5.ini</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;"> 
+<pre class="brush: java; gutter: false; theme: Default"> 
 [libdefaults]
   default_realm = XYZ.COM
      default_keytab_name = FILE:c:\winnt\krb5.keytab
@@ -175,7 +175,7 @@ where
 <p>set JAVA_OPTS=-Djava.security.krb5.conf=C:\winnt\krb5.ini -Dcom.ibm.security.jgss.debug=all -Dcom.ibm.security.krb5.Krb5Debug=all -Djavax.security.auth.useSubjectCredsOnly=false</p>
 </div></div></li><li>Create a system-scope realm for the Geronimo server as followed. The sample code is a combination of SPNEGO and .properties file realms in order that the authentication will fall back on .Properties realm once the SPNEGO authentication fails. You can remove the .properties file realm if unnecessary.
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;"><b>spnego_properties_realm.xml</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 &lt;module xmlns="http://geronimo.apache.org/xml/ns/deployment-1.2"&gt;
     &lt;environment&gt;
         &lt;moduleId&gt;
@@ -222,7 +222,7 @@ where
 </pre>
 </div></div></li><li>Configure the deployment plan of your application to make sure the SPNEGO realm is invoked properly. See the sample code below for reference.
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;"><b>geronimo-web.xml</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 &lt;?xml version="1.0" encoding="UTF-8"?&gt;
 &lt;web:web-app xmlns:app="http://geronimo.apache.org/xml/ns/j2ee/application-2.0"    xmlns:client="http://geronimo.apache.org/xml/ns/j2ee/application-client-2.0" 
         xmlns:conn="http://geronimo.apache.org/xml/ns/j2ee/connector-1.2" xmlns:dep="http://geronimo.apache.org/xml/ns/deployment-1.2" 
@@ -261,7 +261,7 @@ where
 </pre>
 </div></div></li><li>Configure the deployment descriptor to make sure your application uses SPNEGO authentication and the respective realm provider that Geronimo server supports.
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;"><b>excerpt of web.xml</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 &lt;?xml version="1.0" encoding="ISO-8859-1"?&gt;
 ...
    &lt;login-config&gt;

Modified: websites/production/geronimo/content/GMOxDOC21/web-application-for-ejb-access.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC21/web-application-for-ejb-access.html (original)
+++ websites/production/geronimo/content/GMOxDOC21/web-application-for-ejb-access.html Mon May 21 13:00:07 2018
@@ -110,11 +110,11 @@
 
 <p>The application development will take you through the following:</p>
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1523343302304 {padding: 0px;}
-div.rbtoc1523343302304 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1523343302304 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1526907241842 {padding: 0px;}
+div.rbtoc1526907241842 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1526907241842 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1523343302304">
+/*]]>*/</style><div class="toc-macro rbtoc1526907241842">
 <ul class="toc-indentation"><li><a shape="rect" href="#WebApplicationforEJBaccess-DefineNewGeronimoServerRuntime">Define New Geronimo Server Runtime</a></li><li><a shape="rect" href="#WebApplicationforEJBaccess-CreatingaEJBProject">Creating a EJB Project</a></li><li><a shape="rect" href="#WebApplicationforEJBaccess-CreatingaDynamicWebProject">Creating a Dynamic Web Project</a></li><li><a shape="rect" href="#WebApplicationforEJBaccess-AddingcodetoEJBProject">Adding code to EJB Project</a></li><li><a shape="rect" href="#WebApplicationforEJBaccess-AddingcodetoWebProject">Adding code to Web Project</a></li><li><a shape="rect" href="#WebApplicationforEJBaccess-Somemoreconfigurations">Some more configurations</a></li><li><a shape="rect" href="#WebApplicationforEJBaccess-DeployandRun">Deploy and Run</a></li></ul>
 </div>
 
@@ -156,7 +156,7 @@ div.rbtoc1523343302304 li {margin-left:
 <h1 id="WebApplicationforEJBaccess-AddingcodetoEJBProject">Adding code to EJB Project</h1>
 <ol><li>Add the following code to the interface <strong>Converter.java</strong>.
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>Converter.java</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 package ejb;
 
 import java.math.BigDecimal;
@@ -172,7 +172,7 @@ public interface Converter {
 </div></div>
 Here the <strong>@Remote</strong> annotation is used to declare it as a Remote Interface.<br clear="none" class="atl-forced-newline"></li><li>Add the following code to the class <strong>ConverterBean.java</strong>
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>ConverterBean.java</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 package ejb;
 
 import java.math.BigDecimal;
@@ -202,7 +202,7 @@ This complete the EJB code.</li></ol>
 <h1 id="WebApplicationforEJBaccess-AddingcodetoWebProject">Adding code to Web Project</h1>
 <ol><li>Add the following code to <strong>index.jsp</strong>.
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>index.jsp</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 &lt;html&gt;
 &lt;head&gt;
 &lt;title&gt;Converter&lt;/title&gt;
@@ -229,7 +229,7 @@ This complete the EJB code.</li></ol>
 
 <ol><li>Add the following code to <strong>ConverterHandler</strong> servlet.
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>ConverterHandler.java</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 package webejb;
 import ejb.Converter;
 
@@ -275,7 +275,7 @@ The <strong>@EJB(name = "ejb/Converter")
 
 <ol><li>Modify the deployment plan that is <strong>geronimo-web.xml</strong> as follows:
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>geronimo-web.xml</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 &lt;?xml version="1.0" encoding="UTF-8"?&gt;
 &lt;web-app xmlns="http://geronimo.apache.org/xml/ns/j2ee/web-2.0.1" 
 xmlns:nam="http://geronimo.apache.org/xml/ns/naming-1.2" 

Modified: websites/production/geronimo/content/GMOxDOC21/web-application-for-jdbc-access.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC21/web-application-for-jdbc-access.html (original)
+++ websites/production/geronimo/content/GMOxDOC21/web-application-for-jdbc-access.html Mon May 21 13:00:07 2018
@@ -112,11 +112,11 @@
 
 <p>The application development will take you through the following</p>
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1523343299033 {padding: 0px;}
-div.rbtoc1523343299033 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1523343299033 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1526907238469 {padding: 0px;}
+div.rbtoc1526907238469 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1526907238469 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1523343299033">
+/*]]>*/</style><div class="toc-macro rbtoc1526907238469">
 <ul class="toc-indentation"><li><a shape="rect" href="#WebApplicationforJDBCaccess-CreatingaDynamicWebProject">Creating a Dynamic Web Project</a></li><li><a shape="rect" href="#WebApplicationforJDBCaccess-CreatingadatabaseusingAdministrativeConsole">Creating a database using Administrative Console</a></li><li><a shape="rect" href="#WebApplicationforJDBCaccess-CreatingadatasourceusingAdministrativeConsole">Creating a datasource using Administrative Console</a></li><li><a shape="rect" href="#WebApplicationforJDBCaccess-AddingcodeforImageUploadtoderbydatabase">Adding code for Image Upload to derby database</a></li><li><a shape="rect" href="#WebApplicationforJDBCaccess-Codetoretrievetheimagefromderbydatabase">Code to retrieve the image from derby database</a></li><li><a shape="rect" href="#WebApplicationforJDBCaccess-Modifyingdeploymentplan">Modifying deployment plan</a></li><li><a shape="rect" href="#WebApplicationforJDBCaccess-DeployandRun">Deploy and Run</a></li></ul>
 </div>
 
@@ -136,7 +136,7 @@ div.rbtoc1523343299033 li {margin-left:
 <span class="confluence-embedded-file-wrapper"><img class="confluence-embedded-image" src="web-application-for-jdbc-access.data/createDB4.png"></span><br clear="none" class="atl-forced-newline"> <br clear="none" class="atl-forced-newline"> <br clear="none" class="atl-forced-newline"></li><li>Run the query as shown in the figure. This query will create table PICTURES with the columns <strong>name</strong> and <strong>pic</strong>.<br clear="none" class="atl-forced-newline"> \\\ <br clear="none" class="atl-forced-newline">
 <span class="confluence-embedded-file-wrapper"><img class="confluence-embedded-image" src="web-application-for-jdbc-access.data/createDB5.png"></span><br clear="none" class="atl-forced-newline"> <br clear="none" class="atl-forced-newline"> <br clear="none" class="atl-forced-newline">
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>CreateTable.sql</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 create table pictures(name varchar(32) not null primary key, pic blob(16M));
 </pre>
 </div></div></li></ol>
@@ -158,7 +158,7 @@ create table pictures(name varchar(32) n
 <span class="confluence-embedded-file-wrapper"><img class="confluence-embedded-image" src="web-application-for-jdbc-access.data/code2.png"></span><br clear="none" class="atl-forced-newline"> <br clear="none" class="atl-forced-newline"> <br clear="none" class="atl-forced-newline"></li><li>Select Finish. This will create a template for index.jsp.<br clear="none" class="atl-forced-newline"> <br clear="none" class="atl-forced-newline"> <br clear="none" class="atl-forced-newline">
 <span class="confluence-embedded-file-wrapper"><img class="confluence-embedded-image" src="web-application-for-jdbc-access.data/code3.png"></span><br clear="none" class="atl-forced-newline"> <br clear="none" class="atl-forced-newline"> <br clear="none" class="atl-forced-newline"></li><li>Add the following code to index.jsp.
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>index.jsp</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 &lt;%@ page language="java" contentType="text/html; charset=ISO-8859-1"
     pageEncoding="ISO-8859-1"%&gt;
 &lt;!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"&gt;
@@ -204,7 +204,7 @@ The <strong>&lt;form action="/WebJDBC/Im
 <span class="confluence-embedded-file-wrapper"><img class="confluence-embedded-image" src="web-application-for-jdbc-access.data/code6.png"></span><br clear="none" class="atl-forced-newline"> <br clear="none" class="atl-forced-newline"> <br clear="none" class="atl-forced-newline"></li><li>Select Finish.<br clear="none" class="atl-forced-newline"> <br clear="none" class="atl-forced-newline"> <br clear="none" class="atl-forced-newline">
 <span class="confluence-embedded-file-wrapper"><img class="confluence-embedded-image" src="web-application-for-jdbc-access.data/code7.png"></span></li><li>Add the following code to ImageUpload.java.
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>ImageUpload.java</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 package jdbc;
 
 import java.io.File;
@@ -283,7 +283,7 @@ doProcess(request, response);
 <h1 id="WebApplicationforJDBCaccess-Codetoretrievetheimagefromderbydatabase">Code to retrieve the image from derby database</h1>
 <ol><li>Create a jsp page with the name ImageDownload.jsp.</li><li>Append the jsp with the following code
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>ImageDownload.jsp</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 &lt;%@ page language="java" contentType="text/html; charset=ISO-8859-1"
     pageEncoding="ISO-8859-1"%&gt;
 &lt;!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"&gt;
@@ -317,7 +317,7 @@ Name of the Image
 </div></div>
 As can be seen from <strong>&lt;form action="/WebJDBC/ImageDownload"&gt;</strong> this jsp requests ImageDownload servlet when the form is submitted.</li><li>Create a new servlet ImageDownload.java and add the following code
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>ImageDownload.java</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 package jdbc;
 
 import java.io.IOException;
@@ -404,7 +404,7 @@ import javax.sql.DataSource;
 <h1 id="WebApplicationforJDBCaccess-Modifyingdeploymentplan">Modifying deployment plan</h1>
 <p>Next step is to modify the deployment plan that is geronimo-web.xml. We need to add the dependency element for JDBC resource. Also we need to add a resource reference element for the userds datasource.</p>
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>geronimo-web.xml</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 &lt;?xml version="1.0" encoding="UTF-8"?&gt;
 &lt;web-app xmlns="http://geronimo.apache.org/xml/ns/j2ee/web-2.0.1"
          xmlns:nam="http://geronimo.apache.org/xml/ns/naming-1.2"

Modified: websites/production/geronimo/content/GMOxDOC21/web-application-for-jms-access.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC21/web-application-for-jms-access.html (original)
+++ websites/production/geronimo/content/GMOxDOC21/web-application-for-jms-access.html Mon May 21 13:00:07 2018
@@ -112,11 +112,11 @@
 
 <p>The application development will take you through the following</p>
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1523343296246 {padding: 0px;}
-div.rbtoc1523343296246 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1523343296246 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1526907235477 {padding: 0px;}
+div.rbtoc1526907235477 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1526907235477 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1523343296246">
+/*]]>*/</style><div class="toc-macro rbtoc1526907235477">
 <ul class="toc-indentation"><li><a shape="rect" href="#WebApplicationforJMSaccess-CreatingaDynamicWebProject">Creating a Dynamic Web Project</a></li><li><a shape="rect" href="#WebApplicationforJMSaccess-CreatingConnectionFactoryandDestination">Creating Connection Factory and Destination</a></li><li><a shape="rect" href="#WebApplicationforJMSaccess-Addingproducer,consumerandUIcodetotheapplication">Adding producer, consumer and UI code to the application</a></li><li><a shape="rect" href="#WebApplicationforJMSaccess-Modifyingthedeploymentplan">Modifying the deployment plan</a></li><li><a shape="rect" href="#WebApplicationforJMSaccess-DeployandRun">Deploy and Run</a></li></ul>
 </div>
 <h1 id="WebApplicationforJMSaccess-CreatingaDynamicWebProject">Creating a Dynamic Web Project</h1>
@@ -154,7 +154,7 @@ Destination is an object which is used b
 <span class="confluence-embedded-file-wrapper"><img class="confluence-embedded-image" src="web-application-for-jms-access.data/AddSource1.png"></span><br clear="none" class="atl-forced-newline"> <br clear="none" class="atl-forced-newline"> <br clear="none" class="atl-forced-newline"></li><li>Select Next and later <strong>Finish</strong>.<br clear="none" class="atl-forced-newline"> <br clear="none" class="atl-forced-newline"> <br clear="none" class="atl-forced-newline">
 <span class="confluence-embedded-file-wrapper"><img class="confluence-embedded-image" src="web-application-for-jms-access.data/AddSource2.png"></span><br clear="none" class="atl-forced-newline"> <br clear="none" class="atl-forced-newline"> <br clear="none" class="atl-forced-newline"></li><li>Add the following code to UserServlet.java
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>UserServlet.java</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 package webjms;
 
 import java.io.IOException;
@@ -261,7 +261,7 @@ Lets try to understand the code
 <span class="confluence-embedded-file-wrapper"><img class="confluence-embedded-image" src="web-application-for-jms-access.data/AddSource4.png"></span><br clear="none" class="atl-forced-newline"> <br clear="none" class="atl-forced-newline"> <br clear="none" class="atl-forced-newline">
 Add the following code to AdminServlet.java
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>AdminServlet.java</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 package webjms;
 
 import java.io.IOException;
@@ -352,7 +352,7 @@ import javax.servlet.http.HttpServletRes
 <span class="confluence-embedded-file-wrapper"><img class="confluence-embedded-image" src="web-application-for-jms-access.data/AddSource7.png"></span><br clear="none" class="atl-forced-newline"> <br clear="none" class="atl-forced-newline"> <br clear="none" class="atl-forced-newline">
 Add the following code to index.jsp
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>index.jsp</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 &lt;%@ page language="java" contentType="text/html; charset=ISO-8859-1"
     pageEncoding="ISO-8859-1"%&gt;
 &lt;!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"&gt;
@@ -394,7 +394,7 @@ This will create the producer, consumer
 <h1 id="WebApplicationforJMSaccess-Modifyingthedeploymentplan">Modifying the deployment plan</h1>
 <p>Modify the deployment plan as shown below</p>
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>geronimo-web.xml</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 &lt;?xml version="1.0" encoding="UTF-8"?&gt;
 &lt;web-app xmlns="http://geronimo.apache.org/xml/ns/j2ee/web-1.2" 
          xmlns:nam="http://geronimo.apache.org/xml/ns/naming-1.2" 

Modified: websites/production/geronimo/content/GMOxDOC22/accessing-ejb-in-web-applications.data/ganymede_CreateEJB3a.jpg
==============================================================================
Binary files - no diff available.

Modified: websites/production/geronimo/content/GMOxDOC22/accessing-ejb-in-web-applications.data/ganymede_createproj3.jpg
==============================================================================
Binary files - no diff available.

Modified: websites/production/geronimo/content/GMOxDOC22/accessing-ejb-in-web-applications.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC22/accessing-ejb-in-web-applications.html (original)
+++ websites/production/geronimo/content/GMOxDOC22/accessing-ejb-in-web-applications.html Mon May 21 13:00:07 2018
@@ -109,11 +109,11 @@
 
 <p>Details on installing eclipse are provided in the <a shape="rect" href="development-environment.html">Development environment</a> section. This tutorial is organized in the following sections:</p>
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1523343359946 {padding: 0px;}
-div.rbtoc1523343359946 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1523343359946 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1526907299847 {padding: 0px;}
+div.rbtoc1526907299847 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1526907299847 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1523343359946">
+/*]]>*/</style><div class="toc-macro rbtoc1526907299847">
 <ul class="toc-indentation"><li><a shape="rect" href="#AccessingEJBinWebapplications-DefineanewGeronimoServerRuntime">Define a new Geronimo Server Runtime</a></li><li><a shape="rect" href="#AccessingEJBinWebapplications-CreatingaEJBProject">Creating a EJB Project</a></li><li><a shape="rect" href="#AccessingEJBinWebapplications-CreatingaDynamicWebProject">Creating a Dynamic Web Project</a></li><li><a shape="rect" href="#AccessingEJBinWebapplications-AddingcodetoEJBProject">Adding code to EJB Project</a></li><li><a shape="rect" href="#AccessingEJBinWebapplications-AddingcodetoWebProject">Adding code to Web Project</a></li><li><a shape="rect" href="#AccessingEJBinWebapplications-Somemoreconfigurations">Some more configurations</a></li><li><a shape="rect" href="#AccessingEJBinWebapplications-DeployandRun">Deploy and Run</a></li></ul>
 </div>
 
@@ -154,7 +154,7 @@ div.rbtoc1523343359946 li {margin-left:
 <h1 id="AccessingEJBinWebapplications-AddingcodetoEJBProject">Adding code to EJB Project</h1>
 <ol><li>Add the following code to the interface <code>Converter.java</code>.
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>Converter.java</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 package ejb;
 
 import java.math.BigDecimal;
@@ -170,7 +170,7 @@ public interface Converter {
 </div></div>
 Here the <strong>@Remote</strong> annotation is used to declare it as a Remote Interface.<br clear="none" class="atl-forced-newline"></li><li>Add the following code to the class <code>ConverterBean.java</code>
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>ConverterBean.java</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 package ejb;
 
 import java.math.BigDecimal;
@@ -200,7 +200,7 @@ This complete the EJB code.</li></ol>
 <h1 id="AccessingEJBinWebapplications-AddingcodetoWebProject">Adding code to Web Project</h1>
 <ol><li>Add the following code to <code>index.jsp</code>.
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>index.jsp</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 &lt;html&gt;
 &lt;head&gt;
 &lt;title&gt;Converter&lt;/title&gt;
@@ -227,7 +227,7 @@ This complete the EJB code.</li></ol>
 
 <ol><li>Add the following code to <em>ConverterHandler</em> servlet.
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>ConverterHandler.java</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 package webejb;
 import ejb.Converter;
 
@@ -273,7 +273,7 @@ The <strong>@EJB(name = "ejb/Converter")
 
 <ol><li>Modify the deployment plan that is <code>geronimo-web.xml</code> as follows:
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>geronimo-web.xml</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 &lt;?xml version="1.0" encoding="UTF-8"?&gt;
 &lt;web-app xmlns="http://geronimo.apache.org/xml/ns/j2ee/web-2.0.1" 
 xmlns:nam="http://geronimo.apache.org/xml/ns/naming-1.2" 

Modified: websites/production/geronimo/content/GMOxDOC22/accessing-jdbc-in-web-applications.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC22/accessing-jdbc-in-web-applications.html (original)
+++ websites/production/geronimo/content/GMOxDOC22/accessing-jdbc-in-web-applications.html Mon May 21 13:00:07 2018
@@ -112,11 +112,11 @@
 <p>Details on installing eclipse are provided in the <a shape="rect" href="development-environment.html">Development environment</a> section. This tutorial is organized in the following sections:</p>
 
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1523343332242 {padding: 0px;}
-div.rbtoc1523343332242 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1523343332242 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1526907270792 {padding: 0px;}
+div.rbtoc1526907270792 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1526907270792 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1523343332242">
+/*]]>*/</style><div class="toc-macro rbtoc1526907270792">
 <ul class="toc-indentation"><li><a shape="rect" href="#AccessingJDBCinWebapplications-CreatingadynamicWebproject">Creating a dynamic Web project</a></li><li><a shape="rect" href="#AccessingJDBCinWebapplications-Creatingadatabaseusingtheadministrativeconsole">Creating a database using the administrative console</a></li><li><a shape="rect" href="#AccessingJDBCinWebapplications-Creatingadatasourceusingtheadministrativeconsole">Creating a datasource using the administrative console</a></li><li><a shape="rect" href="#AccessingJDBCinWebapplications-Addingcodeforimageuploadtoderbydatabase">Adding code for image upload to derby database</a></li><li><a shape="rect" href="#AccessingJDBCinWebapplications-Codetoretrievetheimagefromderbydatabase">Code to retrieve the image from derby database</a></li><li><a shape="rect" href="#AccessingJDBCinWebapplications-Modifyingdeploymentplan">Modifying deployment plan</a></li><li><a shape="rect" href="#AccessingJDBCinWebapplications-Deployandrun">Deploy an
 d run</a></li></ul>
 </div>
 
@@ -139,7 +139,7 @@ div.rbtoc1523343332242 li {margin-left:
 <span class="confluence-embedded-file-wrapper"><img class="confluence-embedded-image" src="accessing-jdbc-in-web-applications.data/createDB4.png"></span><br clear="none" class="atl-forced-newline"> <br clear="none" class="atl-forced-newline"> <br clear="none" class="atl-forced-newline"></li><li>Run the query as shown in the figure. This query will create table <em>PICTURES</em> with the columns <em>name</em> and <em>pic</em>.<br clear="none" class="atl-forced-newline"> <br clear="none" class="atl-forced-newline">
 <span class="confluence-embedded-file-wrapper"><img class="confluence-embedded-image" src="accessing-jdbc-in-web-applications.data/createDB5.png"></span><br clear="none" class="atl-forced-newline"> <br clear="none" class="atl-forced-newline"> <br clear="none" class="atl-forced-newline">
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>CreateTable.sql</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 create table pictures(name varchar(32) not null primary key, pic blob(16M));
 </pre>
 </div></div>
@@ -162,7 +162,7 @@ create table pictures(name varchar(32) n
 <span class="confluence-embedded-file-wrapper"><img class="confluence-embedded-image" src="accessing-jdbc-in-web-applications.data/code2.png"></span><br clear="none" class="atl-forced-newline"> <br clear="none" class="atl-forced-newline"> <br clear="none" class="atl-forced-newline"></li><li>Select <strong>Finish</strong>. This will create a template for <code>index.jsp</code>.<br clear="none" class="atl-forced-newline"> <br clear="none" class="atl-forced-newline">
 <span class="confluence-embedded-file-wrapper"><img class="confluence-embedded-image" src="accessing-jdbc-in-web-applications.data/code3.png"></span><br clear="none" class="atl-forced-newline"> <br clear="none" class="atl-forced-newline"> <br clear="none" class="atl-forced-newline"></li><li>Add the following code to <code>index.jsp</code>.
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>index.jsp</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 &lt;%@ page language="java" contentType="text/html; charset=ISO-8859-1"
     pageEncoding="ISO-8859-1"%&gt;
 &lt;!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"&gt;
@@ -208,7 +208,7 @@ The <strong>&lt;form action="/WebJDBC/Im
 <span class="confluence-embedded-file-wrapper"><img class="confluence-embedded-image" src="accessing-jdbc-in-web-applications.data/code6.png"></span><br clear="none" class="atl-forced-newline"> </li><li>Select <strong>Finish</strong>.<br clear="none" class="atl-forced-newline">
 <span class="confluence-embedded-file-wrapper"><img class="confluence-embedded-image" src="accessing-jdbc-in-web-applications.data/code7.png"></span> <br clear="none" class="atl-forced-newline"> </li><li>Add the following code to <code>ImageUpload.java</code>.
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>ImageUpload.java</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 package jdbc;
 
 import java.io.File;
@@ -285,7 +285,7 @@ doProcess(request, response);
 <h2 id="AccessingJDBCinWebapplications-Codetoretrievetheimagefromderbydatabase">Code to retrieve the image from derby database</h2>
 <ol><li>Create a <strong>JSP</strong> page with the name <code>ImageDownload.jsp</code>.</li><li>Add the following code to <code>ImageDownload.jsp</code>:
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>ImageDownload.jsp</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 &lt;%@ page language="java" contentType="text/html; charset=ISO-8859-1"
     pageEncoding="ISO-8859-1"%&gt;
 &lt;!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"&gt;
@@ -319,7 +319,7 @@ Name of the Image
 </div></div>
 As can be seen from <strong>&lt;form action="/WebJDBC/ImageDownload"&gt;</strong> this JSP requests the <strong>ImageDownload</strong> servlet when the form is submitted. </li><li>Create a new servlet <code>ImageDownload.java</code> and add the following code:
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>ImageDownload.java</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 package jdbc;
 
 import java.io.IOException;
@@ -407,7 +407,7 @@ import javax.sql.DataSource;
 <h2 id="AccessingJDBCinWebapplications-Modifyingdeploymentplan">Modifying deployment plan</h2>
 <p>The next step is to modify the <code>geronimo-web.xml</code> deployment plan. We need to add the dependency element for the <strong>JDBC</strong> resource. Also we need to add a resource reference element for the <em>userds</em> datasource.</p>
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>geronimo-web.xml</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 &lt;?xml version="1.0" encoding="UTF-8"?&gt;
 &lt;web-app xmlns="http://geronimo.apache.org/xml/ns/j2ee/web-2.0.1"
          xmlns:nam="http://geronimo.apache.org/xml/ns/naming-1.2"

Modified: websites/production/geronimo/content/GMOxDOC22/add-new-https-listener.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC22/add-new-https-listener.html (original)
+++ websites/production/geronimo/content/GMOxDOC22/add-new-https-listener.html Mon May 21 13:00:07 2018
@@ -112,7 +112,7 @@
 
 <p>Starting from v2.2, Geronimo uses <code>server.xml</code> to configure Tomcat. You need to update <code>server.xml</code> to use HTTPS Connector with APR enabled. Use the following code snippet as an example.</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
        &lt;Connector name="TomcatWebSSLConnector" 
                    port="${HTTPSPort + PortOffset}"
                    host="${ServerHostname}"

Modified: websites/production/geronimo/content/GMOxDOC22/app-per-port-running-multiple-web-apps-on-different-ports.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC22/app-per-port-running-multiple-web-apps-on-different-ports.html (original)
+++ websites/production/geronimo/content/GMOxDOC22/app-per-port-running-multiple-web-apps-on-different-ports.html Mon May 21 13:00:07 2018
@@ -126,7 +126,7 @@
 <h2 id="app-per-port-Runningmultiplewebappsondifferentports-Access">Access</h2>
 <p>The separate web apps can be accessed at</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 http://localhost:8090/war1/
 http://localhost:8091/war2/
 </pre>

Modified: websites/production/geronimo/content/GMOxDOC22/assembling-a-server-via-console.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC22/assembling-a-server-via-console.html (original)
+++ websites/production/geronimo/content/GMOxDOC22/assembling-a-server-via-console.html Mon May 21 13:00:07 2018
@@ -106,11 +106,11 @@
 <p>Application client referred in this tutorial is actually a Web Application Client.</p></div></div>
 
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1523343353511 {padding: 0px;}
-div.rbtoc1523343353511 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1523343353511 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1526907291411 {padding: 0px;}
+div.rbtoc1526907291411 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1526907291411 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1523343353511">
+/*]]>*/</style><div class="toc-macro rbtoc1526907291411">
 <ul class="toc-indentation"><li><a shape="rect" href="#AssemblingaserverviaConsole-Identifyingthefunctionalcomponentsrequiredbyourserver">Identifying the functional components required by our server</a></li><li><a shape="rect" href="#AssemblingaserverviaConsole-Assemblingacustomserver">Assembling a custom server</a></li></ul>
 </div>
 <h1 id="AssemblingaserverviaConsole-Identifyingthefunctionalcomponentsrequiredbyourserver">Identifying the functional components required by our server</h1>

Modified: websites/production/geronimo/content/GMOxDOC22/building-j2g-from-source.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC22/building-j2g-from-source.html (original)
+++ websites/production/geronimo/content/GMOxDOC22/building-j2g-from-source.html Mon May 21 13:00:07 2018
@@ -100,11 +100,11 @@
         <div class="wiki-content">
           <div class="wiki-content maincontent">
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1523343337028 {padding: 0px;}
-div.rbtoc1523343337028 ul {list-style: disc;margin-left: 0px;padding-left: 20px;}
-div.rbtoc1523343337028 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1526907271562 {padding: 0px;}
+div.rbtoc1526907271562 ul {list-style: disc;margin-left: 0px;padding-left: 20px;}
+div.rbtoc1526907271562 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1523343337028">
+/*]]>*/</style><div class="toc-macro rbtoc1526907271562">
 <ul class="toc-indentation"><li><a shape="rect" href="#BuildingJ2Gfromsource-Buildingfromsource">Building from source</a>
 <ul class="toc-indentation"><li><a shape="rect" href="#BuildingJ2Gfromsource-Prerequisites">Prerequisites</a></li><li><a shape="rect" href="#BuildingJ2Gfromsource-ObtainingtheSourceCode">Obtaining the Source Code</a></li><li><a shape="rect" href="#BuildingJ2Gfromsource-Building">Building</a>
 <ul class="toc-indentation"><li><a shape="rect" href="#BuildingJ2Gfromsource-DisablingTests">Disabling Tests</a></li></ul>

Modified: websites/production/geronimo/content/GMOxDOC22/calculator-using-ejb-30-functions.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC22/calculator-using-ejb-30-functions.html (original)
+++ websites/production/geronimo/content/GMOxDOC22/calculator-using-ejb-30-functions.html Mon May 21 13:00:07 2018
@@ -110,7 +110,7 @@
 
 <p><strong>Calculator.java</strong>: A stateless session bean that implements a simple java interface instead of an EJB component interface like EJBObject, EJBLocalObject or java.rmi.Remote. By annotating this class as a @Stateless session there is no need for a deployment descriptor to describe it separately. This class implements both a local and remote business interface, namely CalculatorLocal and CalculatorRemote.</p>
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>Calculator.java</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 package org.apache.geronimo.samples.slsb.calculator;
 
 import javax.ejb.Stateless;
@@ -131,7 +131,7 @@ public class Calculator implements Calcu
 </div></div>
 <p><strong>CalculatorLocal.java</strong>: Since this is a local business interface, it is optional that the coder marks this class with a @Local annotation. A business interface which is not annotated with @Local or @Remote is assumed to be Local.</p>
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>CalculatorLocal.java</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 package org.apache.geronimo.samples.slsb.calculator;
 
 public interface CalculatorLocal {
@@ -144,7 +144,7 @@ public interface CalculatorLocal {
 </div></div>
 <p><strong>CalculatorRemote.java</strong>: Since this is a remote business interface, it must be annotated with the @Remote annotation.</p>
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>CalculatorRemote.java</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 package org.apache.geronimo.samples.slsb.calculator;
 
 import javax.ejb.Remote;
@@ -161,7 +161,7 @@ public interface CalculatorRemote {
 </div></div>
 <p><strong>CalculatorServlet.java</strong>: This is a servlet to process the form on the jsp page. It uses the stateless session bean Calculator to do some computation and returns the result. Note that CalculatorLocal is being annotated with the @EJB annotation. The ejb container will route every request to different bean instances. Note: a stateful session bean must be declared at the type level, whereas a stateless session bean may be declared at any level.</p>
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>CalculatorServlet.java</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 package org.apache.geronimo.samples.calculator;
 
 import java.io.IOException;
@@ -223,7 +223,7 @@ public class CalculatorServlet extends H
 </div></div>
 <p><strong>application.xml</strong>: The JAR file is referenced to provide the functionality of this deployable. The WAR file is referenced in order to show the usage of this deployable through a web based interface. The context-root is set to be /calculator so that the URL for this application will be http://&lt;hostname&gt;:&lt;port&gt;/calculator.  This is generated by maven during the build and may be found in the ear or at calculator-stateless-ear/target/application.xml.  The versions will vary depending on the source code version.</p>
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>application.xml</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 &lt;?xml version="1.0" encoding="UTF-8"?&gt;
 &lt;?xml version="1.0" encoding="UTF-8"?&gt;
 &lt;application xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/application_5.xsd" version="5"&gt;
@@ -243,7 +243,7 @@ public class CalculatorServlet extends H
 </div></div>
 <p><strong>plan.xml</strong>: A Geronimo plan is not needed for standalone deployment of this application but is recommended to fix the module id. This example is completed by the car-maven-plugin in calculator-stateless-jetty.  The dependencies are not actually needed for standalone deployment.</p>
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>plan.xml</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 &lt;?xml version="1.0" encoding="UTF-8"?&gt;
 &lt;application xmlns="http://geronimo.apache.org/xml/ns/j2ee/application-1.2"&gt;
   &lt;dep:environment xmlns:dep="http://geronimo.apache.org/xml/ns/deployment-1.2"&gt;

Modified: websites/production/geronimo/content/GMOxDOC22/configure-apache-httpd-as-a-reverse-proxy-modproxy.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC22/configure-apache-httpd-as-a-reverse-proxy-modproxy.html (original)
+++ websites/production/geronimo/content/GMOxDOC22/configure-apache-httpd-as-a-reverse-proxy-modproxy.html Mon May 21 13:00:07 2018
@@ -105,13 +105,13 @@
 
 <ol><li>Open the <code>httpd.conf</code> file located in the <code>&lt;httpd_home&gt;\conf</code> directory.</li><li>Look for the following LoadModule directives and uncomment them by removing the <strong>#</strong> at the beginning of the line.
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 LoadModule proxy_module modules/mod_proxy.so
 LoadModule proxy_http_module modules/mod_proxy_http.so
 </pre>
 </div></div></li><li>At the bottom of the <code>httpd.conf</code> add the following lines to enable the re-routing.
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 ProxyPass /console http://localhost:8080/console
 ProxyPass /images http://localhost:8080/images
 ProxyPassreverse / http://localhost:8080/
@@ -131,7 +131,7 @@ ProxyPassreverse / http://localhost:8080
 
 <p><strong>Note:</strong> If you prefer to use <strong>mod_proxy_ajp</strong> rather than <strong>mod_proxy_http</strong>, you need to load <code>proxy_ajp_module</code> in <code>httpd.conf</code> and change the routing port to 8009(default) as followed:</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 LoadModule proxy_module modules/mod_proxy.so
 LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
 ...

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

Modified: websites/production/geronimo/content/GMOxDOC22/configuring-a-mysql-datasource.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC22/configuring-a-mysql-datasource.html (original)
+++ websites/production/geronimo/content/GMOxDOC22/configuring-a-mysql-datasource.html Mon May 21 13:00:07 2018
@@ -108,7 +108,7 @@
 
 
 <h1 id="ConfiguringaMySQLdatasource-CreatingadatasourceanddeployingitasastandaloneJEEconnectormodule">Creating a datasource and deploying it as a standalone JEE connector module</h1>
-<ol><li>Refer to the attachment <a shape="rect" href="configuring-a-mysql-datasource.data/sample-mysql-xa-ds-plan-standalone.xml?version=1&amp;modificationDate=1232485735000&amp;api=v2" data-linked-resource-id="9609" data-linked-resource-version="1" data-linked-resource-type="attachment" data-linked-resource-default-alias="sample-mysql-xa-ds-plan-standalone.xml" data-nice-type="XML File" data-linked-resource-content-type="text/xml" data-linked-resource-container-id="108022" data-linked-resource-container-version="29">sample-mysql-xa-ds-plan-standalone.xml</a> to create a standalone JEE connector deployment plan</li><li>Install the mysql jdbc driver to geronimo repository via the adminitrative console, and ensure its Module ID is the same as the defined one in the sample plan. In this example, the Module ID of mysql JDBC driver is <code>mysql/mysql-connector-java/5.1.7/jar</code>.</li><li>Use <a shape="rect" href="deploying-and-undeploying-applications.html">command line</a> to deplo
 y it. Here is the sample command for mysql xa datasource:
+<ol><li>Refer to the attachment <a shape="rect" href="configuring-a-mysql-datasource.data/sample-mysql-xa-ds-plan-standalone.xml?version=1&amp;modificationDate=1232485735000&amp;api=v2" data-linked-resource-id="9609" data-linked-resource-version="1" data-linked-resource-type="attachment" data-linked-resource-default-alias="sample-mysql-xa-ds-plan-standalone.xml" data-nice-type="XML File" data-linked-resource-content-type="text/xml" data-linked-resource-container-id="108022" data-linked-resource-container-version="31">sample-mysql-xa-ds-plan-standalone.xml</a> to create a standalone JEE connector deployment plan</li><li>Install the mysql jdbc driver to geronimo repository via the adminitrative console, and ensure its Module ID is the same as the defined one in the sample plan. In this example, the Module ID of mysql JDBC driver is <code>mysql/mysql-connector-java/5.1.7/jar</code>.</li><li>Use <a shape="rect" href="deploying-and-undeploying-applications.html">command line</a> to deplo
 y it. Here is the sample command for mysql xa datasource:
 <div class="preformatted panel" style="border-width: 1px;"><div class="preformattedContent panelContent">
 <pre>&lt;geronimo_home&gt;/bin/deploy.sh -u system -p manager deploy 
 &lt;GERONIMO_HOME&gt;/repository/org/tranql/tranql-connector-mysql-xa/1.2/tranql-connector-mysql-xa-1.2.rar sample-mysql-xa-ds-plan-standalone.xml
@@ -118,7 +118,7 @@ where <em>&lt;geronimo_home&gt;</em> is
 
 
 <h1 id="ConfiguringaMySQLdatasource-Embeddingadatasourcedefinitioninanapplicationdeploymentplan">Embedding a datasource definition in an application deployment plan</h1>
-<ol><li>Refer to the attachment <a shape="rect" href="configuring-a-mysql-datasource.data/sample-mysql-xa-ds-plan-embeded.xml?version=1&amp;modificationDate=1232485735000&amp;api=v2" data-linked-resource-id="9610" data-linked-resource-version="1" data-linked-resource-type="attachment" data-linked-resource-default-alias="sample-mysql-xa-ds-plan-embeded.xml" data-nice-type="XML File" data-linked-resource-content-type="text/xml" data-linked-resource-container-id="108022" data-linked-resource-container-version="29">sample-mysql-xa-ds-plan-embeded.xml</a> to create an application deployment plan, replace web module and ejb module according to your application.</li><li>Install the mysql jdbc driver to geronimo repository via the adminitrative console, and ensure its Module ID is the same as the defined one in the sample plan. In this example, the Module ID of mysql JDBC driver is <code>mysql/mysql-connector-java/5.1.7/jar</code>.</li><li>Use command line or adminitrative console to <a sha
 pe="rect" href="deploying-and-undeploying-applications.html">deploy</a> your application with the plan. For example, the command line as follows:
+<ol><li>Refer to the attachment <a shape="rect" href="configuring-a-mysql-datasource.data/sample-mysql-xa-ds-plan-embeded.xml?version=1&amp;modificationDate=1232485735000&amp;api=v2" data-linked-resource-id="9610" data-linked-resource-version="1" data-linked-resource-type="attachment" data-linked-resource-default-alias="sample-mysql-xa-ds-plan-embeded.xml" data-nice-type="XML File" data-linked-resource-content-type="text/xml" data-linked-resource-container-id="108022" data-linked-resource-container-version="31">sample-mysql-xa-ds-plan-embeded.xml</a> to create an application deployment plan, replace web module and ejb module according to your application.</li><li>Install the mysql jdbc driver to geronimo repository via the adminitrative console, and ensure its Module ID is the same as the defined one in the sample plan. In this example, the Module ID of mysql JDBC driver is <code>mysql/mysql-connector-java/5.1.7/jar</code>.</li><li>Use command line or adminitrative console to <a sha
 pe="rect" href="deploying-and-undeploying-applications.html">deploy</a> your application with the plan. For example, the command line as follows:
 <div class="preformatted panel" style="border-width: 1px;"><div class="preformattedContent panelContent">
 <pre>&lt;geronimo_home&gt;/bin/deploy.sh -u system -p manager deploy yourapp.ear sample-mysql-xa-ds-plan-embeded.xml
 </pre>
@@ -129,7 +129,7 @@ where <em>&lt;geronimo_home&gt;</em> is
 
 <p>The transaction configuration element is something like:</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 &lt;connectionmanager&gt;
   &lt;xa-transaction&gt;
      &lt;transaction-caching/&gt;
@@ -141,7 +141,7 @@ where <em>&lt;geronimo_home&gt;</em> is
 
 <p>And for local transaction:</p>
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 &lt;connectionmanager&gt;
    &lt;local-transaction/&gt;
    ...

Modified: websites/production/geronimo/content/GMOxDOC22/configuring-databases-in-geronimo.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC22/configuring-databases-in-geronimo.html (original)
+++ websites/production/geronimo/content/GMOxDOC22/configuring-databases-in-geronimo.html Mon May 21 13:00:07 2018
@@ -103,11 +103,11 @@
 <p>This topic is about how to create a new embedded database in Geronimo with available <strong>DB Manager</strong> and configure the location of embedded Derby system database to another location instead of the default <code>/var/derby</code> directory. </p>
 
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1523343336788 {padding: 0px;}
-div.rbtoc1523343336788 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1523343336788 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1526907271261 {padding: 0px;}
+div.rbtoc1526907271261 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1526907271261 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1523343336788">
+/*]]>*/</style><div class="toc-macro rbtoc1526907271261">
 <ul class="toc-indentation"><li><a shape="rect" href="#ConfiguringdatabasesinGeronimo-Creatinganewdatabase">Creating a new database</a></li><li><a shape="rect" href="#ConfiguringdatabasesinGeronimo-ConfiguringthelocationofsystemDerbydatabases">Configuring the location of system Derby databases</a></li></ul>
 </div>
 
@@ -131,7 +131,7 @@ div.rbtoc1523343336788 li {margin-left:
 <h1 id="ConfiguringdatabasesinGeronimo-ConfiguringthelocationofsystemDerbydatabases">Configuring the location of system Derby databases</h1>
 <p>By default, all system databases are created in the <code>/var/derby</code> directory when Geronimo server starts up for the first time. You can override the default <em>derbySystemHome</em> attribute of the DerbySystem GBean. Find the system-database module in <code>/var/config/config.xml</code> and it looks like as below:</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;"><b>excerpt of config.xml</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
    &lt;module name="org.apache.geronimo.configs/system-database/2.2/car"&gt;
        &lt;gbean name="DerbyNetwork"&gt;
            &lt;attribute name="host"&gt;${ServerHostname}&lt;/attribute&gt;

Modified: websites/production/geronimo/content/GMOxDOC22/configuring-http-header-based-authentication.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC22/configuring-http-header-based-authentication.html (original)
+++ websites/production/geronimo/content/GMOxDOC22/configuring-http-header-based-authentication.html Mon May 21 13:00:07 2018
@@ -106,7 +106,7 @@
 
 <p>Applications which use the HTTP header-based authentication must configure their deployment descriptor as follows:</p>
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>Excerpt from a deployment descriptor</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 &lt;login-config&gt;
       &lt;auth-method&gt;GENERIC&lt;/auth-method&gt;
       &lt;realm-name&gt;TestPropsRealm&lt;/realm-name&gt;
@@ -124,7 +124,7 @@
 <p>You can configure the security realm for HTTP header-based authentication. The following <code>TestPropsRealm.xml</code> file is a deployment plan used to create a <a shape="rect" href="administering-security-realms.html">Properties file security realm</a> on the Geronimo server. Applications which use this security realm can achieve Single Sign-on.</p>
 
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>Excerpt from TestPropsRealm.xml</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 &lt;module xmlns="http://geronimo.apache.org/xml/ns/deployment-1.2"&gt;
     &lt;environment&gt;
         &lt;moduleId&gt;

Modified: websites/production/geronimo/content/GMOxDOC22/configuring-multiple-repositories.html
==============================================================================
--- websites/production/geronimo/content/GMOxDOC22/configuring-multiple-repositories.html (original)
+++ websites/production/geronimo/content/GMOxDOC22/configuring-multiple-repositories.html Mon May 21 13:00:07 2018
@@ -105,11 +105,11 @@
 
 <p>This document is organized into the following sections:</p>
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1523343337760 {padding: 0px;}
-div.rbtoc1523343337760 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1523343337760 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1526907276313 {padding: 0px;}
+div.rbtoc1526907276313 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1526907276313 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1523343337760">
+/*]]>*/</style><div class="toc-macro rbtoc1526907276313">
 <ul class="toc-indentation"><li><a shape="rect" href="#Configuringmultiplerepositories-Creatingmultiplerepositoriesonasingleserverinstance">Creating multiple repositories on a single server instance</a>
 <ul class="toc-indentation"><li><a shape="rect" href="#Configuringmultiplerepositories-Creatingarepositorybesidesthedefaultrepository">Creating a repository besides the default repository</a></li><li><a shape="rect" href="#Configuringmultiplerepositories-Deployinganapplicationtotherepository">Deploying an application to the repository</a></li></ul>
 </li><li><a shape="rect" href="#Configuringmultiplerepositories-Creatingmultiplerepositoriesonmultipleserverinstances">Creating multiple repositories on multiple server instances</a>
@@ -129,7 +129,7 @@ div.rbtoc1523343337760 li {margin-left:
 
 <ol><li>Start Geronimo.</li><li>Create a directory repo2 under <code>&lt;geronimo_home&gt;</code>, for example, <code>&lt;geronimo_home&gt;/repo2</code>.</li><li>Create a file <code>repo2.xml</code> under the <code>&lt;geronimo_home&gt;/repo2</code> directory, for example:
 <div class="code panel pdl" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>repo2.xml</b></div><div class="codeContent panelContent pdl">
-<pre class="brush: java; gutter: false; theme: Default" style="font-size:12px;">
+<pre class="brush: java; gutter: false; theme: Default">
 &lt;module xmlns="http://geronimo.apache.org/xml/ns/deployment-1.2"&gt;
  &lt;environment&gt;
   &lt;moduleId&gt;