Rouble created CXF-4779:
---------------------------

             Summary: Java First Web Service broken when SEI extends from 
another interface
                 Key: CXF-4779
                 URL: https://issues.apache.org/jira/browse/CXF-4779
             Project: CXF
          Issue Type: Bug
    Affects Versions: 2.4.3
            Reporter: Rouble


I have the following interface:
    public interface bar {
        foo1();
    }

and an SEI for a Java First Web Service extends that interface:
    @WebService
    public interface sei extends bar {
        foo2();
    }

Now, if I have Service Implementation Bean:
    @WebService(endpointInterface = "com.example.sei", serviceName = "seiws")
    public class seiImpl {
        foo1 () {
            //blah
        }

        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.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to