I want remote interfaces for my session beans and local interfaces for my entity beans, so in my ejbdoclet task I specify:
<remoteinterface/> <localinterface/> <homeinterface /> <localhomeinterface/> In my Entity Bean, since I only want a local interface. I specify: * @ejb.interface * local-class="com.sprint.fmsD.genequip.ejb.interfaces.PortLocal" * generate="local" This has the desired effect of only generating local interfaces. My problem is that both local and remote interfaces get specified in my ejb-jar.xml deployment descriptor, which causes a WebLogic ejbc error: ERROR: Error from ejbc: Unable to load a class specified in your ejb-jar.xml: com.sprint.fmsD.genequip.ejb.interfaces.PortHome So the question is how do I control which interfaces get specified in my deployment descriptor? Thanks Chuck Irvine ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Xdoclet-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/xdoclet-user
