These directions worked for WebSphere 6.1.0.15. Fundamentally the
problem is the lack of JAR files in the default WebSphere CLASSPATH, or
the wrong versions. Two things are neccessary to correct this problem:
<ol><li>Adjust WebSphere application server settings</li><li>Adjust Guvnor
settings in WebSphere (the application specific settings)</li><li>Modify
the Guvnor pom.xml file to include additional classes (these classes
are not included in WebSphere, so must be included in the WAR file)</li></ol>


<p><b>Adjust WebSphere AS Settings</b><br />
 I'm not certain if these custom websphere application server settings
are required, but since they are present in the working configuration,
I will document them here. The custom settings, and directions on how
to configure them, can be found at: <a rel="nofollow"
href="http://docs.jboss.org/seam/2.0.1.GA/reference/en/html/websphere.html">http://docs.jboss.org/seam/2.0.1.GA/reference/en/html/websphere.html</a><br
/>
General instructions for setting custom properties are found
at: http://www-01.ibm.com/support/docview.wss?rss=180&amp;uid=swg21284395</p>

<p><b>Adjust 'Guvnor' Application Specific Settings</b></p>


<p>In order to ensure we get the 'right' application settings, we
configure the application to load from it's own class loader first.
Directions to configure this property can be found at <a rel="nofollow"
href="https://zuxho14:9045/ibm/help/index.jsp?topic=/com.ibm.ws.console.appmanagement/urun_rapp_classload.html">https://zuxho14:9045/ibm/help/index.jsp?topic=/com.ibm.ws.console.appmanagement/urun_rapp_classload.html</a>.
Select the &quot;<tt>Classes loaded with application class loader first&quot;
Option.</tt></p>

<p><b>Modify Guvnor's pom.xml File</b></p>

<p>The following lines need to be added to Guvnor's pom.xml before rebuilding
Guvnor:</p>

<p>        &lt;dependency&gt;<br />
            &lt;groupId&gt;javax.persistence&lt;/groupId&gt;<br />
            &lt;artifactId&gt;persistence-api&lt;/artifactId&gt;<br />
            &lt;version&gt;1.0&lt;/version&gt;<br />
        &lt;/dependency&gt;</p>

<p>        &lt;dependency&gt;<br />
            &lt;groupId&gt;javax.annotation&lt;/groupId&gt;<br />
            &lt;artifactId&gt;jsr250-api&lt;/artifactId&gt;<br />
            &lt;version&gt;1.0&lt;/version&gt;<br />
        &lt;/dependency&gt;</p>

<p>         &lt;dependency&gt;<br />
            &lt;groupId&gt;org.hibernate&lt;/groupId&gt;<br />
            &lt;artifactId&gt;hibernate-validator&lt;/artifactId&gt;<br />
            &lt;version&gt;3.0.0.GA&lt;/version&gt;<br />
        &lt;/dependency&gt;</p>


This was sufficient to get Guvnor running on 2/10/08. I did not
install this version of WebSphere, and do not know what other changes
were made before I got here. YMMV.
<br clear="all" />
<br />
<br />
----------------------------------------------------------------<br />
This message was sent using IMP, the Internet Messaging Program.<br />