I'm trying to create a service point using jboss eclipse plugin and xdoclet using the following xdoclet annotations but apparently. the service point file is not created.
If I go to project properties and xdoclet configuration, I cannot see the service point task. Is that a bug or a limitation of Jboss Eclipse plugin?
/**
 *
 * @ejb.bean name="WSSessionManager" display-name="WSSessionManager"
 * description="Description for WSSessionManager"
 * jndi-name="ejb/WSSessionManager" type="Stateless"
 * view-type="local-service-endpoint"
 * transaction-type = "Bean"
 *
 * @ejb.interface extends="javax.ejb.EJBObject, com.tog.BusinessIF"
 * local-extends="javax.ejb.EJBLocalObject, com.tog.BusinessIF"
 * service-endpoint-extends = "java.rmi.Remote, com.tog.BusinessIF"
 *
 */
public class WSSessionManagerBean implements SessionBean, BusinessIF {
...