[jbossws-issues] [JBoss JIRA] Created: (JBWS-1649) "ServiceName" annotation ignored when implementing an interface

Matthew Sell (JIRA) jira-events at lists.jboss.org
Fri May 11 14:15:52 EDT 2007


"ServiceName" annotation ignored when implementing an interface
---------------------------------------------------------------

                 Key: JBWS-1649
                 URL: http://jira.jboss.com/jira/browse/JBWS-1649
             Project: JBoss Web Services
          Issue Type: Bug
      Security Level: Public (Everyone can see)
    Affects Versions: jbossws-2.0.0.Beta
            Reporter: Matthew Sell


The following:

@WebService
public interface EchoSoap {
	public String echoString(String input);
}


@WebService(serviceName = "echoService", endpointInterface = "EchoSoap")
public class EchoSoapImpl implements EchoSoap {

	public String echoString(String input) {
		return input;
	}
}


.. Results in the endpoint actually existing at "EchoSoapImpl" rather than "echoService" as specified by the "serviceName" annotation. 



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

        



More information about the jbossws-issues mailing list