-
Bug
-
Resolution: Won't Do
-
Major
-
None
-
jbossws-2.0.0.Beta
-
None
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.
- relates to
-
JBWS-1622 Multiple context root not supported
- Closed