Thanks, I'm going to try that
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3898734#3898734
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3898734
---
This SF.Net ema
Hi there,
I'm testing EJB3 with Eclipse and JBoss 4.0.3 RC2. I created a super simple
@Stateless Bean as show below:
package test;
|
| import javax.ejb.Remote;
|
| @Remote
| public interface HW {
| public String upper( String message );
| }
package test;
|
| import ...