[jbossws-issues] [JBoss JIRA] Created: (JBWS-2321) Overloaded methods not supported in auto-generated WSDLs

Burak Serdar (JIRA) jira-events at lists.jboss.org
Wed Sep 24 11:13:20 EDT 2008


Overloaded methods not supported in auto-generated WSDLs
--------------------------------------------------------

                 Key: JBWS-2321
                 URL: https://jira.jboss.org/jira/browse/JBWS-2321
             Project: JBoss Web Services
          Issue Type: Feature Request
      Security Level: Public (Everyone can see)
    Affects Versions: jbossws-2.0.0
         Environment: JBoss Enterprise Platform version 4.3.0.GA_CP01 running on Linux

            Reporter: Burak Serdar
            Priority: Minor


This is tested on JBoss Enterprise Platform version 4.3.0.GA_CP01.

Stateless EJB has overloaded methods, and web service annotations for auto-WSDL generation. Auto-WSDL generation fails complaining about duplicate operation names.

Example:
@Remote
public interface TestService {
    public void test();
    public void test(int a);
}

@Stateless
@Remote(TestService.class)
@WebService(name="TestService")
public class TestServiceBean implements TestService {

    @WebMethod
    public void test() {}

    @WebMethod
    public void test(@WebParam(name="a") int a) {}
}


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        



More information about the jbossws-issues mailing list