Bug 131892 - [xdoclet] xdoclet does not generate service-endpoint-class
Summary: [xdoclet] xdoclet does not generate service-endpoint-class
Status: RESOLVED WONTFIX
Alias: None
Product: WTP EJB Tools
Classification: WebTools
Component: jst.ejb (show other bugs)
Version: 1.0.1   Edit
Hardware: PC Linux
: P3 normal with 1 vote (vote)
Target Milestone: Future   Edit
Assignee: jst.ejb CLA
QA Contact: Kaloyan Raev CLA
URL:
Whiteboard:
Keywords: helpwanted
Depends on:
Blocks:
 
Reported: 2006-03-15 05:46 EST by Andrey CLA
Modified: 2012-11-02 03:40 EDT (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Andrey CLA 2006-03-15 05:46:24 EST
I Use:
wtp-all-in-one-sdk-R-1.0.1-200602171228-linux-gtk.tar.gz
j2se-1.5.0
on Fefora Core 4

I can generate local and remote interfaces by placing
@ejb.bean view-type="both"
in ejb class definition comment
but if i use

* @ejb.interface
*		service-endpoint-class="org.app.MyIface"

and then run XDoclet 
there is no new files appears
Where is MyIface.java?

My code
==================

package org.app;

import java.rmi.RemoteException;

import javax.ejb.EJBException;
import javax.ejb.SessionContext;

/**
 * @ejb.bean name="IFMenu"
 *      type="Stateless"
 *      transaction-type="Container"
 *      view-type="service-endpoint"
 *      
 * @ejb.interface
 *		service-endpoint-class="org.app.IFMenuSEI"
 *    	
 *      
 */


public class MenuBean implements javax.ejb.SessionBean {
	private javax.ejb.SessionContext context;
	
......

	/**
	 * @ejb.interface-method 
	 * 		view-type="service-endpoint"
	 */
	public String getFirstItem() {
		return "First Item Stgring";
	}
Comment 1 Kaloyan Raev CLA 2008-04-09 03:23:11 EDT
Mass reassignment of bugs from Naci to ejb-inbox. 
Comment 2 Kaloyan Raev CLA 2012-11-02 03:40:59 EDT
I am closing all tickets related to XDoclet as WON'T FIX, because there is no committer to support this functionality. I can review patches if anyone is willing to contribute.