You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomee.apache.org by Karsten Ohme <ko...@mms-dresden.de> on 2008/03/13 17:40:23 UTC

Stateless inheritited bean is not found when Interface is not specified

Hello,

NetworkStorageServiceImpl is a Stateless Local Bean.
AsyncNetworkStorageServiceImpl also, but extends this bean.

When I do this:

public class AsyncNetworkStorageServiceImpl extends
NetworkStorageServiceImpl

the bean is not found.

When I also specify the interface:

public class AsyncNetworkStorageServiceImpl extends
NetworkStorageServiceImpl implements NetworkStorageService

it works and the following entry is shown:

INFO - Jndi(name=AsyncNetworkStorageServiceImplLocal) -->
Ejb(deployment-id=Asyn
cNetworkStorageServiceImpl)

Is is intended?

WBR,
Karsten