Hi,

I have the Following code in build.xml file

<target name="ejbc">
<ejbjar srcdir="c:/src"
        descriptordir="./META-INF"
            basejarname="TheEJBJar">

      <weblogic destdir="."/>

      <include name="**/ejb-jar.xml"/>
      <exclude name="**/weblogic*.xml"/>
    </ejbjar>
</target>
</project>

When I run this build file I am getting the following error.

     [ejbc] Could not find descriptor file with Jar entry name
'META-INF/WL-CMP-
TYPES/CMP_WebLogic_CMP_RDBMS948707561415.xml' for specified type WebLogic
RDBMS
Persistence

even though ./META-INF/WL-CMP-TYPES/CMP_WebLogic_CMP_RDBMS948707561415.xml
is existing.

I want to know how to include
/META-INF/WL-CMP-TYPES/CMP_WebLogic_CMP_RDBMS948707561415.xml
into build file.

Srini


Reply via email to