Description
I have the following interface:
public interface bar
and an SEI for a Java First Web Service extends that interface:
@WebService
public interface sei extends bar
Now, if I have Service Implementation Bean:
@WebService(endpointInterface = "com.example.sei", serviceName = "seiws")
public class seiImpl {
foo1 ()
foo2 () { //blah }
}
Only foo2() is exposed by CXF when the web service is deployed - foo1() is not. This seems to be a very fundamental bug in Java First Web Services.
Attachments
Issue Links
- duplicates
-
CXF-4713 Method inherited from super interface can not be part of operations in wsdl
- Closed