ejb@glassfish.java.net

Annotations compatibility

From: Carlos Angarita <cjangaritas_at_gmail.com>
Date: Thu, 14 Sep 2006 20:24:46 -0500

Hi All

I´ve just deployed a sample EJB in glassfish and exposed it as a web
service using the @WebService annotation everything works perfect, but
when I try to deploy it to the oc4j 10.1.3, the web service was not
created and I had to move the WebService annotation to the interface


@WebService(serviceName = "MyFirstEJB3Service")
public interface WebserviceEJB extends Remote{
    @WebMethod(operationName="HelloWorld")
    String getHelloMessage(String s) throws RemoteException;

}

So I conclude the oracle containner is not fully compatible with the
specification,
and I want to know, where can I find the standard way? will we have
the same problem when other application servers come up?

Thanks

-- 
Carlos J Angarita S