I’m working with weblogic 10 using the new eclipse deployment connector and xdoclet-ed beans. However, when I deploy to the server, I get the following complaint from weblogic:
Unable to deploy EJB:
In EJB ISPEntity, the persistence-use element was not specified or could not be associated with a corresponding persistence-type element for a CMP entity bean in the weblogic-ejb-jar.xml descriptor file.
The persistence-use tag from my weblogic-ejb-jar.xml looks like this:
<persistence>
<finders-load-bean>True</finders-load-bean>
<persistence-type>
<type-identifier>WebLogic_CMP_RDBMS</type-identifier>
<type-version>6.0</type-version>
<type-storage>META-INF/weblogic-cmp-rdbms-jar.xml</type-storage>
</persistence-type>
<db-is-shared>True</db-is-shared>
<persistence-use>
<type-identifier>WebLogic_CMP_RDBMS</type-identifier>
<type-version>7.0</type-version>
</persistence-use>
</persistence>
Does anyone know which doclet tag would be in charge of the persistence-use and persistence-type elements? I’m having a little trouble locating what generates them.
TIA –