I have service and its implemented interface...
My interface has an annotation specifying the service name as name of Service which has implemented that interface .. however the service doesn't have annotation specifying endpoint interface ?
So will this result in failure of wsdl generation ?
I am getting error as : 1> Endpoint interface has no implementations! It will NOT be deployed... 2> JAXWS-RI module requires an implementation for each service interface
I am using enunciate for web service generation.
my code is like this:
// no annotation for endpoint interface
public class ABC implements IABC
{
}
@WebService(targetNamespace = "http://ABC", serviceName = "ABC", portName = "ABCPort", name = "ABC")
public interface IABC
{
}