You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by bu...@apache.org on 2011/07/12 20:06:36 UTC

svn commit: r792601 [12/49] - /websites/staging/openejb/trunk/content/

Modified: websites/staging/openejb/trunk/content/ejb-2.1-compatibility-example.html
==============================================================================
--- websites/staging/openejb/trunk/content/ejb-2.1-compatibility-example.html (original)
+++ websites/staging/openejb/trunk/content/ejb-2.1-compatibility-example.html Tue Jul 12 18:06:32 2011
@@ -152,62 +152,62 @@
           <P>
             <!-- $BODY -->
             <DIV id="PageContent">
-          <p><a name="EJB2.1CompatibilityE<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ample-Overview">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+          <p><a name="EJB2.1CompatibilityExample-Overview"></a></p>
 
 <h1>Overview</h1>
 
-<p>In EJB 3.0, your bean's interfaces are not required to e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">tend any specific
+<p>In EJB 3.0, your bean's interfaces are not required to extend any specific
 set of interfaces and generally have no requirements on them at all.  These
 are referred to in EJB spec lingo as <em>Business Interfaces</em>.</p>
 
 <p>In EJB 2.1 and prior, however, there were some pretty strict requirements
-on interfaces.  Namely, you had to have a "home" interface that e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">tended
-java<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">.ejb.EJBHome or java<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">.ejb.EJBLocalHome.  This interface served as a
-sort of factory to create your bean's interface which itself had to e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">tend
-either java<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">.ejb.EJBObject or java<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">.ejb.EJBLocalObject.  These legacy
+on interfaces.  Namely, you had to have a "home" interface that extended
+javax.ejb.EJBHome or javax.ejb.EJBLocalHome.  This interface served as a
+sort of factory to create your bean's interface which itself had to extend
+either javax.ejb.EJBObject or javax.ejb.EJBLocalObject.  These legacy
 styles of interfaces in EJB spec lingo are referred to as <em>Component
 Interfaces</em>.</p>
 
-<p>In this e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ample we see how one can support both business interfaces and
+<p>In this example we see how one can support both business interfaces and
 component interfaces on the same bean.  You may choose to do this for
-backwards compatibility with older clients or to maintain an older EJB 2.<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">
+backwards compatibility with older clients or to maintain an older EJB 2.x
 API still being used.  The advantage is that you can turn EJB 2.1 beans
 into EJB 3.0 beans without having to update any code consuming that EJB.</p>
 
-<p><em>The source for this e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ample is in the "component-interfaces" directory
-located in the <a href="openejb:download.html">openejb-e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">amples.zip</a>
+<p><em>The source for this example is in the "component-interfaces" directory
+located in the <a href="openejb:download.html">openejb-examples.zip</a>
  available on the download page.</em></p>
 
-<p><a name="EJB2.1CompatibilityE<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ample-TheCode">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+<p><a name="EJB2.1CompatibilityExample-TheCode"></a></p>
 
 <h1>The Code</h1>
 
-<p><a name="EJB2.1CompatibilityE<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ample-AnnotatedBeanClass">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+<p><a name="EJB2.1CompatibilityExample-AnnotatedBeanClass"></a></p>
 
 <h2>Annotated Bean Class</h2>
 
-<p>{snippet:id=code|url=openejb3<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">amples<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">component-interfaces<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">src<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">main<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="
 " border="0">java<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">org<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">superbiz<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">FriendlyPersonImpl.java|lang=java}</p>
+<p>{snippet:id=code|url=openejb3/examples/component-interfaces/src/main/java/org/superbiz/FriendlyPersonImpl.java|lang=java}</p>
 
-<p><a name="EJB2.1CompatibilityE<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ample-EJB2.1HomeAndRemoteviews">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+<p><a name="EJB2.1CompatibilityExample-EJB2.1HomeAndRemoteviews"></a></p>
 
 <h2>EJB 2.1 Home And Remote views</h2>
 
-<p>{snippet:id=code|url=openejb3<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">amples<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">component-interfaces<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">src<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">main<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="
 " border="0">java<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">org<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">superbiz<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">FriendlyPersonEjbHome.java|lang=java}</p>
+<p>{snippet:id=code|url=openejb3/examples/component-interfaces/src/main/java/org/superbiz/FriendlyPersonEjbHome.java|lang=java}</p>
 
-<p>{snippet:id=code|url=openejb3<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">amples<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">component-interfaces<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">src<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">main<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="
 " border="0">java<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">org<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">superbiz<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">FriendlyPersonEjbObject.java|lang=java}</p>
+<p>{snippet:id=code|url=openejb3/examples/component-interfaces/src/main/java/org/superbiz/FriendlyPersonEjbObject.java|lang=java}</p>
 
-<p><a name="EJB2.1CompatibilityE<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ample-TestCase">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+<p><a name="EJB2.1CompatibilityExample-TestCase"></a></p>
 
 <h1>Test Case</h1>
 
-<p>{snippet:id=code|url=openejb3<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">amples<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">component-interfaces<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">src<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">test<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="
 " border="0">java<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">org<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">superbiz<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">FriendlyPersonTest.java|lang=java|id=remotehome}</p>
+<p>{snippet:id=code|url=openejb3/examples/component-interfaces/src/test/java/org/superbiz/FriendlyPersonTest.java|lang=java|id=remotehome}</p>
 
-<p><a name="EJB2.1CompatibilityE<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ample-Runningit">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+<p><a name="EJB2.1CompatibilityExample-Runningit"></a></p>
 
 <h1>Running it</h1>
 
-<p>Running the e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ample is fairly simple.  In the "component-interfaces"
-directory of the <a href="openejb:download.html">e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">amples zip</a>
+<p>Running the example is fairly simple.  In the "component-interfaces"
+directory of the <a href="openejb:download.html">examples zip</a>
 , just run:</p>
 
 <blockquote>
@@ -221,31 +221,31 @@ directory of the <a href="openejb:downlo
 -------------------------------------------------------
 Running org.superbiz.FriendlyPersonTest
 Apache OpenEJB 3.0    build: 20080408-04:13
-http:&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;openejb.apache.org&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;
+http://openejb.apache.org/
 INFO - openejb.home =
 </code></pre>
 
-<p><IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">Users<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">dblevins<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">work<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">openejb-3.0<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">amples<IMG class="emo
 ticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">component-interfaces
+<p>/Users/dblevins/work/openejb-3.0/examples/component-interfaces
     INFO - openejb.base =
-<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">Users<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">dblevins<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">work<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">openejb-3.0<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">amples<IMG class="emotic
 on" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">component-interfaces
+/Users/dblevins/work/openejb-3.0/examples/component-interfaces
     INFO - Configuring Service(id=Default Security Service,
 type=SecurityService, provider-id=Default Security Service)
     INFO - Configuring Service(id=Default Transaction Manager,
 type=TransactionManager, provider-id=Default Transaction Manager)
-    INFO - Configuring Service(id=Default JDK 1.3 Pro<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">yFactory,
-type=Pro<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">yFactory, provider-id=Default JDK 1.3 Pro<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">yFactory)
+    INFO - Configuring Service(id=Default JDK 1.3 ProxyFactory,
+type=ProxyFactory, provider-id=Default JDK 1.3 ProxyFactory)
     INFO - Found EjbModule in classpath:
-<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">Users<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">dblevins<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">work<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">openejb-3.0<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">amples<IMG class="emotic
 on" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">component-interfaces<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">target<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">classes
+/Users/dblevins/work/openejb-3.0/examples/component-interfaces/target/classes
     INFO - Configuring app:
-<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">Users<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">dblevins<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">work<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">openejb-3.0<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">amples<IMG class="emotic
 on" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">component-interfaces<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">target<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">classes
+/Users/dblevins/work/openejb-3.0/examples/component-interfaces/target/classes
     INFO - Configuring Service(id=Default Stateful Container, type=Container,
 provider-id=Default Stateful Container)
     INFO - Auto-creating a container for bean FriendlyPerson:
 Container(type=STATEFUL, id=Default Stateful Container)
     INFO - Loaded Module:
-<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">Users<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">dblevins<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">work<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">openejb-3.0<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">amples<IMG class="emotic
 on" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">component-interfaces<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">target<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">classes
+/Users/dblevins/work/openejb-3.0/examples/component-interfaces/target/classes
     INFO - Assembling app:
-<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">Users<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">dblevins<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">work<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">openejb-3.0<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">amples<IMG class="emotic
 on" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">component-interfaces<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">target<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">classes
+/Users/dblevins/work/openejb-3.0/examples/component-interfaces/target/classes
     INFO - Jndi(name=FriendlyPersonRemoteHome) -->
 Ejb(deployment-id=FriendlyPerson)
     INFO - Jndi(name=FriendlyPersonLocalHome) -->
@@ -256,7 +256,7 @@ Ejb(deployment-id=FriendlyPerson)
     INFO - Created Ejb(deployment-id=FriendlyPerson, ejb-name=FriendlyPerson,
 container=Default Stateful Container)
     INFO - Deployed
-Application(path=<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">Users<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">dblevins<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">work<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">openejb-3.0<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">amples<
 IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">component-interfaces<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">target<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">classes)
+Application(path=/Users/dblevins/work/openejb-3.0/examples/component-interfaces/target/classes)
     Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.741 sec</p>
 
 <pre><code>Results :

Modified: websites/staging/openejb/trunk/content/ejb-3-roadmap.html
==============================================================================
--- websites/staging/openejb/trunk/content/ejb-3-roadmap.html (original)
+++ websites/staging/openejb/trunk/content/ejb-3-roadmap.html Tue Jul 12 18:06:32 2011
@@ -154,24 +154,24 @@
             <DIV id="PageContent">
           <p>{swizzlejira}
 1. set( $jira =
-$rss.fetch("http:<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"><IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">issues.apache.org<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">jira<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">sr<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">jira.issueviews:searchrequest-<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" a
 lt="" border="0">ml<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">temp<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">SearchRequest.<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ml?&amp;pid=12310530&amp;component=12311366")
+$rss.fetch("http://issues.apache.org/jira/sr/jira.issueviews:searchrequest-xml/temp/SearchRequest.xml?&amp;pid=12310530&amp;component=12311366")
 )
-1. set( $a<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">is =
-$rss.fetch("http:<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"><IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">issues.apache.org<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">jira<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">si<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">jira.issueviews:issue-<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" bo
 rder="0">ml<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">OPENEJB-114<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">OPENEJB-114.<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ml")
+1. set( $axis =
+$rss.fetch("http://issues.apache.org/jira/si/jira.issueviews:issue-xml/OPENEJB-114/OPENEJB-114.xml")
 )
 1. set( $corba =
-$rss.fetch("http:<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"><IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">issues.apache.org<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">jira<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">si<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">jira.issueviews:issue-<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" bo
 rder="0">ml<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">OPENEJB-113<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">OPENEJB-113.<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ml")
+$rss.fetch("http://issues.apache.org/jira/si/jira.issueviews:issue-xml/OPENEJB-113/OPENEJB-113.xml")
 )
 1. set( $geronimo =
-$rss.fetch("http:<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"><IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">issues.apache.org<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">jira<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">si<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">jira.issueviews:issue-<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" bo
 rder="0">ml<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">OPENEJB-524<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">OPENEJB-524.<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ml")
+$rss.fetch("http://issues.apache.org/jira/si/jira.issueviews:issue-xml/OPENEJB-524/OPENEJB-524.xml")
 )
 1. set( $issues = $jira.fillSubTasks() )</p>
 
-<p><a name="EJB3RoadMap-EJB3.0RoadMap">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+<p><a name="EJB3RoadMap-EJB3.0RoadMap"></a></p>
 
 <h1>EJB 3.0 Road Map</h1>
 
-<p><a name="EJB3RoadMap-SimplifiedLifecycle">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+<p><a name="EJB3RoadMap-SimplifiedLifecycle"></a></p>
 
 <h2>Simplified Lifecycle</h2>
 
@@ -182,7 +182,7 @@ $rss.fetch("http:<IMG class="emoticon" s
 {swizzlejiraissues:issues=$as.param($lifecycle)|columns=summary;assignee;priority;status|style=progress}</li>
 </ol>
 
-<p><a name="EJB3RoadMap-DependencyInjection">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+<p><a name="EJB3RoadMap-DependencyInjection"></a></p>
 
 <h2>Dependency Injection</h2>
 
@@ -191,7 +191,7 @@ $rss.fetch("http:<IMG class="emoticon" s
 {swizzlejiraissues:issues=$as.param($dependencyInjection)|columns=summary;assignee;priority;status|style=progress}</li>
 </ol>
 
-<p><a name="EJB3RoadMap-BusinessInterfaces">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+<p><a name="EJB3RoadMap-BusinessInterfaces"></a></p>
 
 <h2>Business Interfaces</h2>
 
@@ -202,7 +202,7 @@ $businessInterfaces.union($jira.getIssue
 {swizzlejiraissues:issues=$as.param($businessInterfaces)|columns=summary;assignee;priority;status|style=progress}</li>
 </ol>
 
-<p><a name="EJB3RoadMap-EJB3.0&lt;->EJB2.1Compatability">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+<p><a name="EJB3RoadMap-EJB3.0&lt;->EJB2.1Compatability"></a></p>
 
 <h2>EJB 3.0 &lt;-> EJB 2.1 Compatability</h2>
 
@@ -211,7 +211,7 @@ $businessInterfaces.union($jira.getIssue
 {swizzlejiraissues:issues=$as.param($ejb2compat)|columns=summary;assignee;priority;status|style=progress}</li>
 </ol>
 
-<p><a name="EJB3RoadMap-Annotations">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+<p><a name="EJB3RoadMap-Annotations"></a></p>
 
 <h2>Annotations</h2>
 
@@ -220,7 +220,7 @@ $businessInterfaces.union($jira.getIssue
 {swizzlejiraissues:issues=$as.param($annotations)|columns=summary;assignee;priority;status|style=progress}</li>
 </ol>
 
-<p><a name="EJB3RoadMap-JNDIENC">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+<p><a name="EJB3RoadMap-JNDIENC"></a></p>
 
 <h2>JNDI ENC</h2>
 
@@ -229,7 +229,7 @@ $businessInterfaces.union($jira.getIssue
 {swizzlejiraissues:issues=$as.param($jndi)|columns=summary;assignee;priority;status|style=progress}</li>
 </ol>
 
-<p><a name="EJB3RoadMap-Interceptors">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+<p><a name="EJB3RoadMap-Interceptors"></a></p>
 
 <h2>Interceptors</h2>
 
@@ -240,31 +240,31 @@ $businessInterfaces.union($jira.getIssue
 {swizzlejiraissues:issues=$as.param($interceptors)|columns=summary;assignee;priority;status|style=progress}</li>
 </ol>
 
-<p><a name="EJB3RoadMap-Integration">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+<p><a name="EJB3RoadMap-Integration"></a></p>
 
 <h2>Integration</h2>
 
 <ol>
-<li>set( $integration = $a<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">is.issues )</li>
+<li>set( $integration = $axis.issues )</li>
 <li>set( $integration = $integration.union($corba.issues) )</li>
 <li>set( $integration = $integration.union($geronimo.issues) )
 {swizzlejiraissues:issues=$as.param($integration)|columns=summary;assignee;priority;status|style=progress}</li>
 </ol>
 
-<p><a name="EJB3RoadMap-CMP2.<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">viaJPA">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+<p><a name="EJB3RoadMap-CMP2.xviaJPA"></a></p>
 
-<h2>CMP 2.<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0"> via JPA</h2>
+<h2>CMP 2.x via JPA</h2>
 
 <ol>
 <li>set( $cmp =
-$rss.fetch("http:<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"><IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">issues.apache.org<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">jira<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">si<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">jira.issueviews:issue-<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" bo
 rder="0">ml<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">OPENEJB-123<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">OPENEJB-123.<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ml")
+$rss.fetch("http://issues.apache.org/jira/si/jira.issueviews:issue-xml/OPENEJB-123/OPENEJB-123.xml")
 )</li>
 <li>set( $void = $cmp.fillSubTasks() )</li>
 <li>set( $cmp = $cmp.getIssue("OPENEJB-123") )
 {swizzlejiraissues:issues=$as.param($cmp.subTasks)|columns=summary;assignee;priority;status|style=progress}</li>
 </ol>
 
-<p><a name="EJB3RoadMap-Validation">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+<p><a name="EJB3RoadMap-Validation"></a></p>
 
 <h2>Validation</h2>
 
@@ -273,7 +273,7 @@ $rss.fetch("http:<IMG class="emoticon" s
 {swizzlejiraissues:issues=$as.param($validation)|columns=summary;assignee;priority;status|style=progress}</li>
 </ol>
 
-<p><a name="EJB3RoadMap-ComplianceTests">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+<p><a name="EJB3RoadMap-ComplianceTests"></a></p>
 
 <h2>Compliance Tests</h2>
 
@@ -282,13 +282,13 @@ $rss.fetch("http:<IMG class="emoticon" s
 {swizzlejiraissues:issues=$as.param($itests)|columns=summary;assignee;priority;status|style=progress}</li>
 </ol>
 
-<p><a name="EJB3RoadMap-E<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">amples">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+<p><a name="EJB3RoadMap-Examples"></a></p>
 
-<h2>E<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">amples</h2>
+<h2>Examples</h2>
 
 <ol>
-<li>set( $e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">amples = $jira.getIssue("OPENEJB-342").subTasks)
-{swizzlejiraissues:issues=$as.param($e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">amples)|columns=summary;assignee;priority;status|style=progress}</li>
+<li>set( $examples = $jira.getIssue("OPENEJB-342").subTasks)
+{swizzlejiraissues:issues=$as.param($examples)|columns=summary;assignee;priority;status|style=progress}</li>
 </ol>
 
 <p>{swizzlejira}</p>

Modified: websites/staging/openejb/trunk/content/ejb-3.0-specification.html
==============================================================================
--- websites/staging/openejb/trunk/content/ejb-3.0-specification.html (original)
+++ websites/staging/openejb/trunk/content/ejb-3.0-specification.html Tue Jul 12 18:06:32 2011
@@ -152,26 +152,26 @@
           <P>
             <!-- $BODY -->
             <DIV id="PageContent">
-          <p><a name="EJB3.0Specification-Specification">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+          <p><a name="EJB3.0Specification-Specification"></a></p>
 
 <h1>Specification</h1>
 
-<p>The EJB 3.0 specification can be downloaded from the [JSR 220](http:<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"><IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">www.jcp.org<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">en<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">jsr<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">detail?id=220)
+<p>The EJB 3.0 specification can be downloaded from the <a href="http://www.jcp.org/en/jsr/detail?id=220">JSR 220</a>
  at the JCP (Java Community Process) website after clicking through the
 JCP's online agreement.  The specification is very large, but there's a
 download named <em>'ejb-3</em>0-fr-spec-simplified.pdf'_ that is very short and
 highly recommended as an introduction to EJB 3.0.</p>
 
-<p><a name="EJB3.0Specification-Documentation">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+<p><a name="EJB3.0Specification-Documentation"></a></p>
 
 <h1>Documentation</h1>
 
 <ol>
-<li>[Annotations, XML and Defaults](annotations,-<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ml-and-defaults.html)</li>
+<li><a href="annotations,-xml-and-defaults.html">Annotations, XML and Defaults</a></li>
 <li><a href="security-annotations.html">Security Annotations</a></li>
 <li><a href="basics---security#securitypropagation.html">Security Propagation</a></li>
 <li><a href="transaction-annotations.html">Transaction Annotations</a></li>
-<li>[EJB Injection](injection-of-other-ejbs-e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ample.html)</li>
+<li><a href="injection-of-other-ejbs-example.html">EJB Injection</a></li>
 <li><a href="resource-injection.html">Resource Injection</a></li>
 </ol>
 

Modified: websites/staging/openejb/trunk/content/ejb-3.1-roadmap.html
==============================================================================
--- websites/staging/openejb/trunk/content/ejb-3.1-roadmap.html (original)
+++ websites/staging/openejb/trunk/content/ejb-3.1-roadmap.html Tue Jul 12 18:06:32 2011
@@ -154,20 +154,20 @@
             <DIV id="PageContent">
           <p>{swizzlejira}
 1. set( $jira =
-$rss.fetch("https:<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"><IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">issues.apache.org<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">jira<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">sr<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">jira.issueviews:searchrequest-<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" 
 alt="" border="0">ml<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">temp<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">SearchRequest.<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ml?&amp;pid=12310530&amp;component=12313252")
+$rss.fetch("https://issues.apache.org/jira/sr/jira.issueviews:searchrequest-xml/temp/SearchRequest.xml?&amp;pid=12310530&amp;component=12313252")
 )
 1. set( $issues = $jira.fillSubTasks() )
 1. set( $parents = <a href="-"1133",-"1134",-"1135",-"1136",-"1137",-"1138",-"1139",-"1140",-"1141",-"1142",-"1143",-"1197".html"> "1133", "1134", "1135", "1136", "1137", "1138", "1139", "1140", "1141", "1142", "1143", "1197"</a>
  )</p>
 
-<p><a name="EJB3.1RoadMap-EJB3.1RoadMap">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+<p><a name="EJB3.1RoadMap-EJB3.1RoadMap"></a></p>
 
 <h1>EJB 3.1 Road Map</h1>
 
 <ol>
 <li>foreach( $parent in $parents )</li>
 <li><p>set( $issue = $jira.getIssue("OPENEJB-$parent") )
-<a name="EJB3.1RoadMap-$issue.summary">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+<a name="EJB3.1RoadMap-$issue.summary"></a></p>
 
 <h2>$issue.summary</h2></li>
 <li><p>set( $tasks = $issue.subTasks)

Modified: websites/staging/openejb/trunk/content/ejb-annotation-example.html
==============================================================================
--- websites/staging/openejb/trunk/content/ejb-annotation-example.html (original)
+++ websites/staging/openejb/trunk/content/ejb-annotation-example.html Tue Jul 12 18:06:32 2011
@@ -152,18 +152,18 @@
           <P>
             <!-- $BODY -->
             <DIV id="PageContent">
-          <p><a name="EJBAnnotationE<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ample-EJBAnnotationE<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ample">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+          <p><a name="EJBAnnotationExample-EJBAnnotationExample"></a></p>
 
-<h1>EJB Annotation E<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ample</h1>
+<h1>EJB Annotation Example</h1>
 
-<p>Each EJB 3.0 annotation e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ample comes with JUnit unit tests that can be run
+<p>Each EJB 3.0 annotation example comes with JUnit unit tests that can be run
 in Eclipse, IntelliJ, NetBeans, Maven, Ant or any IDE or build system
 without special plugins using OpenEJB as an embedded EJB container.  The
-easiest way to run an ejb annotation e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ample in your IDE is to use maven
+easiest way to run an ejb annotation example in your IDE is to use maven
 (<em>mvn eclipse:eclipse</em> or <em>mvn idea:idea</em>) to generate project
 descriptors.</p>
 
-<p>{include:OPENEJB<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">30:E<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">amples Table}</p>
+<p>{include:OPENEJBx30:Examples Table}</p>
 
             </DIV>
           </P>

Modified: websites/staging/openejb/trunk/content/ejb-annotation-examples.html
==============================================================================
--- websites/staging/openejb/trunk/content/ejb-annotation-examples.html (original)
+++ websites/staging/openejb/trunk/content/ejb-annotation-examples.html Tue Jul 12 18:06:32 2011
@@ -152,18 +152,18 @@
           <P>
             <!-- $BODY -->
             <DIV id="PageContent">
-          <p><a name="EJBAnnotationE<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">amples-EJBAnnotationE<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">amples">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+          <p><a name="EJBAnnotationExamples-EJBAnnotationExamples"></a></p>
 
-<h1>EJB Annotation E<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">amples</h1>
+<h1>EJB Annotation Examples</h1>
 
-<p>All EJB 3.0 annotation e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">amples come with JUnit unit tests that can be run
+<p>All EJB 3.0 annotation examples come with JUnit unit tests that can be run
 in Eclipse, IntelliJ, NetBeans, Maven, Ant or any IDE or build system
 without special plugins using OpenEJB as an embedded EJB container.  The
-easiest way to run the ejb annotation e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">amples in your IDE is to use maven
+easiest way to run the ejb annotation examples in your IDE is to use maven
 (<em>mvn eclipse:eclipse</em> or <em>mvn idea:idea</em>) to generate project
 descriptors.</p>
 
-<p>{include:OPENEJB<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">30:E<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">amples Table}</p>
+<p>{include:OPENEJBx30:Examples Table}</p>
 
             </DIV>
           </P>

Modified: websites/staging/openejb/trunk/content/ejb-example.html
==============================================================================
--- websites/staging/openejb/trunk/content/ejb-example.html (original)
+++ websites/staging/openejb/trunk/content/ejb-example.html Tue Jul 12 18:06:32 2011
@@ -152,17 +152,17 @@
           <P>
             <!-- $BODY -->
             <DIV id="PageContent">
-          <p><a name="EJBE<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ample-EJBE<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ample">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+          <p><a name="EJBExample-EJBExample"></a></p>
 
-<h1>EJB E<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ample</h1>
+<h1>EJB Example</h1>
 
-<p>Each EJB 3.0 e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ample comes with JUnit unit tests that can be run in
+<p>Each EJB 3.0 example comes with JUnit unit tests that can be run in
 Eclipse, IntelliJ, NetBeans, Maven, Ant or any IDE or build system without
 special plugins using OpenEJB as an embedded EJB container.  The easiest
-way to run an e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ample in your IDE is to use maven (<em>mvn eclipse:eclipse</em>
+way to run an example in your IDE is to use maven (<em>mvn eclipse:eclipse</em>
 or <em>mvn idea:idea</em>) to generate project descriptors.</p>
 
-<p>{include:OPENEJB<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">30:E<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">amples Table}</p>
+<p>{include:OPENEJBx30:Examples Table}</p>
 
             </DIV>
           </P>

Modified: websites/staging/openejb/trunk/content/ejb-examples.html
==============================================================================
--- websites/staging/openejb/trunk/content/ejb-examples.html (original)
+++ websites/staging/openejb/trunk/content/ejb-examples.html Tue Jul 12 18:06:32 2011
@@ -152,17 +152,17 @@
           <P>
             <!-- $BODY -->
             <DIV id="PageContent">
-          <p><a name="EJBE<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">amples-EJBE<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">amples">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+          <p><a name="EJBExamples-EJBExamples"></a></p>
 
-<h1>EJB E<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">amples</h1>
+<h1>EJB Examples</h1>
 
-<p>All EJB 3.0 e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">amples come with JUnit unit tests that can be run in Eclipse,
+<p>All EJB 3.0 examples come with JUnit unit tests that can be run in Eclipse,
 IntelliJ, NetBeans, Maven, Ant or any IDE or build system without special
 plugins using OpenEJB as an embedded EJB container.  The easiest way to run
-the e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">amples in your IDE is to use maven (<em>mvn eclipse:eclipse</em> or {{mvn
+the examples in your IDE is to use maven (<em>mvn eclipse:eclipse</em> or {{mvn
 idea:idea}}) to generate project descriptors.</p>
 
-<p>{include:OPENEJB<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">30:E<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">amples Table}</p>
+<p>{include:OPENEJBx30:Examples Table}</p>
 
             </DIV>
           </P>

Modified: websites/staging/openejb/trunk/content/ejb-glossary.html
==============================================================================
--- websites/staging/openejb/trunk/content/ejb-glossary.html (original)
+++ websites/staging/openejb/trunk/content/ejb-glossary.html Tue Jul 12 18:06:32 2011
@@ -153,12 +153,12 @@
             <!-- $BODY -->
             <DIV id="PageContent">
           <ul>
-<li><em>JPA</em> - java<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">.persistence API</li>
-<li><em>component interface</em> - refers to the legacy interfaces that e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">tend
-either java<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">.ejb.EJBObject or java<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">.ejb.EJBLocalObject</li>
+<li><em>JPA</em> - javax.persistence API</li>
+<li><em>component interface</em> - refers to the legacy interfaces that extend
+either javax.ejb.EJBObject or javax.ejb.EJBLocalObject</li>
 <li><em>business interface</em> - refers to the new style of local or remote
-interfaces that does not e<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">tend either java<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">.ejb.EJBObject or
-java<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">.ejb.EJBLocalObject</li>
+interfaces that does not extend either javax.ejb.EJBObject or
+javax.ejb.EJBLocalObject</li>
 </ul>
 
             </DIV>

Modified: websites/staging/openejb/trunk/content/ejb-howto.html
==============================================================================
--- websites/staging/openejb/trunk/content/ejb-howto.html (original)
+++ websites/staging/openejb/trunk/content/ejb-howto.html Tue Jul 12 18:06:32 2011
@@ -152,7 +152,7 @@
           <P>
             <!-- $BODY -->
             <DIV id="PageContent">
-          <p><a name="EJBHowTo-EJBHowTo">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+          <p><a name="EJBHowTo-EJBHowTo"></a></p>
 
 <h1>EJB HowTo</h1>
 
@@ -162,7 +162,7 @@ plugins using OpenEJB as an embedded EJB
 the howtos in your IDE is to use maven (<em>mvn eclipse:eclipse</em> or {{mvn
 idea:idea}}) to generate project descriptors.</p>
 
-<p>{include:OPENEJB<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">30:E<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">amples Table}</p>
+<p>{include:OPENEJBx30:Examples Table}</p>
 
             </DIV>
           </P>

Modified: websites/staging/openejb/trunk/content/ejb-local-ref.html
==============================================================================
--- websites/staging/openejb/trunk/content/ejb-local-ref.html (original)
+++ websites/staging/openejb/trunk/content/ejb-local-ref.html Tue Jul 12 18:06:32 2011
@@ -152,7 +152,7 @@
           <P>
             <!-- $BODY -->
             <DIV id="PageContent">
-          <p><a name="ejb-local-ref-Viaannotation">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+          <p><a name="ejb-local-ref-Viaannotation"></a></p>
 
 <h1>Via annotation</h1>
 
@@ -160,9 +160,9 @@
 
 <pre><code>package org.superbiz.refs;
 
-import java&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;.ejb.EJB;
-import java&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;.ejb.Stateless;
-import java&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;.naming.InitialConte&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;t;
+import javax.ejb.EJB;
+import javax.ejb.Stateless;
+import javax.naming.InitialContext;
 
 @Stateless
 @EJB(name = "myFooEjb", beanInterface = FooLocal.class)
@@ -171,36 +171,36 @@ public class MyEjbLocalRefBean implement
     @EJB
     private BarLocal myBarEjb;
 
-    public void someBusinessMethod() throws E&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;ception {
-        if (myBarEjb == null) throw new NullPointerE&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;ception("myBarEjb not injected");
+    public void someBusinessMethod() throws Exception {
+        if (myBarEjb == null) throw new NullPointerException("myBarEjb not injected");
 
-        &lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt; Both can be looked up from JNDI as well
-        InitialConte&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;t conte&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;t = new InitialConte&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;t();
-        FooLocal fooLocal = (FooLocal) conte&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;t.lookup("java:comp&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;env&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;myFooEjb");
-        BarLocal barLocal = (BarLocal) conte&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;t.lookup("java:comp&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;env&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;org.superbiz.refs.MyEjbLocalRefBean&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;myBarEjb");
+        // Both can be looked up from JNDI as well
+        InitialContext context = new InitialContext();
+        FooLocal fooLocal = (FooLocal) context.lookup("java:comp/env/myFooEjb");
+        BarLocal barLocal = (BarLocal) context.lookup("java:comp/env/org.superbiz.refs.MyEjbLocalRefBean/myBarEjb");
     }
 }
 </code></pre>
 
-<p><a name="ejb-local-ref-Via<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ml">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+<p><a name="ejb-local-ref-Viaxml"></a></p>
 
-<h1>Via <IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ml</h1>
+<h1>Via xml</h1>
 
-<p>The above @EJB annotation usage is 100% equivalent to the following <IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ml.</p>
+<p>The above @EJB annotation usage is 100% equivalent to the following xml.</p>
 
 <pre><code>&lt;ejb-local-ref&gt;
-  &lt;ejb-ref-name&gt;myFooEjb&lt;&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;ejb-ref-name&gt;
-  &lt;local&gt;org.superbiz.refs.FooLocal&lt;&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;local&gt;
-&lt;&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;ejb-local-ref&gt;
+  &lt;ejb-ref-name&gt;myFooEjb&lt;/ejb-ref-name&gt;
+  &lt;local&gt;org.superbiz.refs.FooLocal&lt;/local&gt;
+&lt;/ejb-local-ref&gt;
 
 &lt;ejb-local-ref&gt;
-  &lt;ejb-ref-name&gt;org.superbiz.refs.MyEjbLocalRefBean&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;myBarEjb&lt;&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;ejb-ref-name&gt;
-  &lt;local&gt;org.superbiz.refs.BarLocal&lt;&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;local&gt;
+  &lt;ejb-ref-name&gt;org.superbiz.refs.MyEjbLocalRefBean/myBarEjb&lt;/ejb-ref-name&gt;
+  &lt;local&gt;org.superbiz.refs.BarLocal&lt;/local&gt;
   &lt;injection-target&gt;
-    &lt;injection-target-class&gt;org.superbiz.refs.MyEjbLocalRefBean&lt;&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;injection-target-class&gt;
-    &lt;injection-target-name&gt;myBarEjb&lt;&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;injection-target-name&gt;
-  &lt;&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;injection-target&gt;
-&lt;&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;ejb-local-ref&gt;
+    &lt;injection-target-class&gt;org.superbiz.refs.MyEjbLocalRefBean&lt;/injection-target-class&gt;
+    &lt;injection-target-name&gt;myBarEjb&lt;/injection-target-name&gt;
+  &lt;/injection-target&gt;
+&lt;/ejb-local-ref&gt;
 </code></pre>
 
             </DIV>

Modified: websites/staging/openejb/trunk/content/ejb-ref.html
==============================================================================
--- websites/staging/openejb/trunk/content/ejb-ref.html (original)
+++ websites/staging/openejb/trunk/content/ejb-ref.html Tue Jul 12 18:06:32 2011
@@ -152,15 +152,15 @@
           <P>
             <!-- $BODY -->
             <DIV id="PageContent">
-          <p><a name="ejb-ref-Viaannotation">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+          <p><a name="ejb-ref-Viaannotation"></a></p>
 
 <h1>Via annotation</h1>
 
 <pre><code>package org.superbiz.refs;
 
-import java&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;.ejb.EJB;
-import java&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;.ejb.Stateless;
-import java&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;.naming.InitialConte&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;t;
+import javax.ejb.EJB;
+import javax.ejb.Stateless;
+import javax.naming.InitialContext;
 
 @Stateless
 @EJB(name = "myFooEjb", beanInterface = FooRemote.class)
@@ -169,36 +169,36 @@ public class MyEjbRemoteRefBean implemen
     @EJB
     private BarRemote myBarEjb;
 
-    public void someBusinessMethod() throws E&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;ception {
-        if (myBarEjb == null) throw new NullPointerE&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;ception("myBarEjb not injected");
+    public void someBusinessMethod() throws Exception {
+        if (myBarEjb == null) throw new NullPointerException("myBarEjb not injected");
 
-        &lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt; Both can be looked up from JNDI as well
-        InitialConte&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;t conte&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;t = new InitialConte&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;t();
-        FooRemote fooRemote = (FooRemote) conte&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;t.lookup("java:comp&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;env&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;myFooEjb");
-        BarRemote barRemote = (BarRemote) conte&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;t.lookup("java:comp&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;env&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;org.superbiz.refs.MyEjbRemoteRefBean&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;myBarEjb");
+        // Both can be looked up from JNDI as well
+        InitialContext context = new InitialContext();
+        FooRemote fooRemote = (FooRemote) context.lookup("java:comp/env/myFooEjb");
+        BarRemote barRemote = (BarRemote) context.lookup("java:comp/env/org.superbiz.refs.MyEjbRemoteRefBean/myBarEjb");
     }
 }
 </code></pre>
 
-<p><a name="ejb-ref-Via<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ml">&lt;<IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0">a></p>
+<p><a name="ejb-ref-Viaxml"></a></p>
 
-<h1>Via <IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ml</h1>
+<h1>Via xml</h1>
 
-<p>The above @EJB annotation usage is 100% equivalent to the following <IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/error.gif" height="16" width="16" align="absmiddle" alt="" border="0">ml.</p>
+<p>The above @EJB annotation usage is 100% equivalent to the following xml.</p>
 
 <pre><code>&lt;ejb-ref&gt;
-    &lt;ejb-ref-name&gt;myFooEjb&lt;&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;ejb-ref-name&gt;
-    &lt;remote&gt;org.superbiz.refs.FooRemote&lt;&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;remote&gt;
-&lt;&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;ejb-ref&gt;
+    &lt;ejb-ref-name&gt;myFooEjb&lt;/ejb-ref-name&gt;
+    &lt;remote&gt;org.superbiz.refs.FooRemote&lt;/remote&gt;
+&lt;/ejb-ref&gt;
 &lt;ejb-ref&gt;
 
-&lt;ejb-ref-name&gt;org.superbiz.refs.MyEjbRemoteRefBean&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;myBarEjb&lt;&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;ejb-ref-name&gt;
-    &lt;remote&gt;org.superbiz.refs.BarRemote&lt;&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;remote&gt;
+&lt;ejb-ref-name&gt;org.superbiz.refs.MyEjbRemoteRefBean/myBarEjb&lt;/ejb-ref-name&gt;
+    &lt;remote&gt;org.superbiz.refs.BarRemote&lt;/remote&gt;
     &lt;injection-target&gt;
-      &lt;injection-target-class&gt;org.superbiz.refs.MyEjbRemoteRefBean&lt;&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;injection-target-class&gt;
-      &lt;injection-target-name&gt;myBarEjb&lt;&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;injection-target-name&gt;
-    &lt;&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;injection-target&gt;
-&lt;&lt;IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" height="16" width="16" align="absmiddle" alt="" border="0"&gt;ejb-ref&gt;
+      &lt;injection-target-class&gt;org.superbiz.refs.MyEjbRemoteRefBean&lt;/injection-target-class&gt;
+      &lt;injection-target-name&gt;myBarEjb&lt;/injection-target-name&gt;
+    &lt;/injection-target&gt;
+&lt;/ejb-ref&gt;
 </code></pre>
 
             </DIV>