[jbossws-issues] [JBoss JIRA] Updated: (JBWS-2321) Overloaded methods not supported in auto-generated WSDLs
Alessio Soldano (JIRA)
jira-events at lists.jboss.org
Thu Oct 23 05:02:20 EDT 2008
[ https://jira.jboss.org/jira/browse/JBWS-2321?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Alessio Soldano updated JBWS-2321:
----------------------------------
Component/s: jbossws-native
> 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)
> Components: jbossws-native
> Affects Versions: jbossws-2.0.0
> Environment: JBoss Enterprise Platform version 4.3.0.GA_CP01 running on Linux
> Reporter: Burak Serdar
> Priority: Minor
> Fix For: jbossws-native-3.0.5
>
>
> 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