Hello-
I am trying to use weblogic.ejbc to build an ejb jar file.
I am getting the following exception:
Loaded java/lang.Win32Process from c:\apps\JavaSoft\JRE\1.3\lib\rt.jar
java.io.IOException: CreateProcess ........
RatingServerBeanEOImpl.java error =2 ...
Has anyone have any idea why it might be happening?
The attached is from my build.xml file.
<target name="ejbjars"
depends="compileServer"
description="Create deployable jar files from the EJB class
files,
deployment descriptors, and the ejbc compiler">
<jar jarfile="rawRating.jar">
<fileset dir="${destDir}"
includes="com/capgroup/opac/server/rating/*.class" />
<fileset dir="${srcDir}/com/capgroup/opac/server/rating"
includes="META-INF/*.xml" />
</jar>
<!-- can't seem to control weblogic.ejbc classpath without forking -->
<java classname="weblogic.ejbc"
fork="yes"
maxmemory="256"
classpathref="project.class.path">
<arg value="rawRating.jar"/>
<arg value="rating.jar"/>
<jvmarg value="-verbose" />
</java>
</target>