Has anyone seen this message at the bottom before?
Here is the task in the build.xml:
<target name="dataservice" depends="init">
<ejbjar
descriptordir="${src.dir}/xml/META-INF"
srcdir="${dev.classes.dir}"
destdir="${dev.ejb.dir}"
basejarname="DataServiceEJB">
<weblogic destdir="${dev.ejb.dir}" newCMP="true"
classpath="${classpath}"/>
<include name="**/ejb-jar.xml"/>
<exclude name="**/weblogic*.xml"/>
</ejbjar>
</target>
I have 3 EJB's defined in the xml files.
I recieve the following output from: ant -v dataservice
dataservice:
[ejbjar] 1 deployment descriptors located.
[ejbjar] Mapped publicId -//Sun Microsystems, Inc.//DTD
Enterprise JavaBeans 1.1//EN to resource /weblogic/ejb/deploy
ment/xml/ejb-jar.dtd
[ejbjar] Resolved -//Sun Microsystems, Inc.//DTD Enterprise
JavaBeans 1.1//EN to local resource /weblogic/ejb/deploym
ent/xml/ejb-jar.dtd
[ejbjar] Mapped publicId -//BEA Systems, Inc.//DTD WebLogic 5.1.0
EJB//EN to resource /weblogic/ejb/deployment/xml/we
blogic-ejb-jar.dtd
[ejbjar] Resolved -//BEA Systems, Inc.//DTD WebLogic 5.1.0
EJB//EN to local resource /weblogic/ejb/deployment/xml/web
logic-ejb-jar.dtd
[ejbjar] Could not fully load class
com.kmv.blvm.app.InstrumentDataService for super class check
[ejbjar] Could not fully load class
com.kmv.blvm.app.YieldCurveDataService for super class check
[ejbjar] Could not fully load class
com.kmv.blvm.app.PortfolioDataServiceEJB for super class check
[ejbjar] Could not fully load class
com.kmv.blvm.app.YieldCurveDataServiceEJB for super class check
[ejbjar] Could not fully load class
com.kmv.blvm.app.PortfolioDataService for super class check
[ejbjar] Could not fully load class
com.kmv.blvm.app.YieldCurveDataServiceHome for super class check
[ejbjar] Could not fully load class
com.kmv.blvm.app.InstrumentDataServiceEJB for super class check
[ejbjar] Could not fully load class
com.kmv.blvm.app.PortfolioDataServiceHome for super class check
[ejbjar] Could not fully load class
com.kmv.blvm.app.InstrumentDataServiceHome for super class check
[ejbjar] building DataServiceEJB.jar with 11 files
[ejbjar] adding file
'com\kmv\blvm\app\InstrumentDataService.class'
[ejbjar] adding file
'com\kmv\blvm\app\YieldCurveDataService.class'
[ejbjar] adding file
'com\kmv\blvm\app\PortfolioDataServiceEJB.class'
[ejbjar] adding file
'com\kmv\blvm\app\YieldCurveDataServiceEJB.class'
[ejbjar] adding file
'com\kmv\blvm\app\PortfolioDataService.class'
[ejbjar] adding file 'META-INF/weblogic-ejb-jar.xml'
[ejbjar] adding file
'com\kmv\blvm\app\YieldCurveDataServiceHome.class'
[ejbjar] adding file
'com\kmv\blvm\app\InstrumentDataServiceEJB.class'
[ejbjar] adding file
'com\kmv\blvm\app\PortfolioDataServiceHome.class'
[ejbjar] adding file
'com\kmv\blvm\app\InstrumentDataServiceHome.class'
[ejbjar] adding file 'META-INF/ejb-jar.xml'
[ejbjar] Calling weblogic.ejbc for
C:\dev\apps\build\dev\ejb\DataServiceEJB-generic.jar
[ejbc] Forking c:\dev\jdk1.3.1\jre\..\bin\java.exe -classpath
C:\dev\apps\build\dev\classes;C:\dev\apps\build\dev\s
ervletclasses;C:\dev\apps\lib\weblogicaux.jar;C:\dev\apps\lib\weblogic.jar;C
:\dev\apps\weblogic\jndi.properties;C:\dev\a
pps\lib\dbapi.jar weblogic.ejbc
C:\dev\apps\build\dev\ejb\DataServiceEJB-generic.jar
C:\dev\apps\build\dev\ejb\DataServi
ceEJB.jar
[ejbc] [EJB]: Creating output
jar:C:\dev\apps\build\dev\ejb\DataServiceEJB.jar
[ejbjar] deleting generic jar
C:\dev\apps\build\dev\ejb\DataServiceEJB-generic.jar
|