Here's a list of what i encountered doing the build:

1. Needed to make a few changes to the build.bat batch file to get it to work 
on win98.  These are just workarounds, such as changing 
for %%i in (%OPENEJB_HOME%\dist\openejb*.jar) do call cp.bat %%i
to
for %%i in (dist\open*.jar) do call cp.bat %%i

2. In build.properties, set the using.jdk.1.2=true flag.

3. In build.properties, make changes for the correct parser versions:
jaxp.home=${base.path}/lib
jaxp.jar=xmlParserAPIs-2.0.2.jar
# jaxp.parser.jar=xerces-J_1.4.0.jar
jaxp.parser.jar=xercesImpl-2.0.2.jar
jaxp.xsltprocessor.jar=xalan-2.4.D.1.jar
jaxp.xalan1compat.jar=xalanj1compat.jar
xalan.jar=xalan-2.4.D.1.jar

4. In build.xml, comment our the lines to check castor jar:
  <!--
  <target name="check.castor" unless="castor.present">
    <antcall target="property-warning">
      <param name="name" value="castor.jar"/>
      <param name="value" value="${castor.home}/${castor.jar}"/>
    </antcall>
  </target>
  -->

Also delete the line "check.castor" from the <target> element.  For some 
reason, it throws an error when it tries to check this jar file.  

5. Also the build-openejb-server.xml configuration file wrongly looks for the 
castor.jar in the dist\ directory.



-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
http://OpenEJB.sf.net
OpenEJB-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/openejb-user

Reply via email to