Environment: Windows 2003 JBoss 5.1
Code:
@WebService
@Stateless
@SOAPBinding(style = Style.RPC)
public class MyWebService {
public String sayHello() {
return "Hello";
}
}
wsdl is deployed in: http://localhost:8080/ear-project-ejb-project/MyWebService?wsdl
I would like to define another path for this webservice, something like:
http://localhost:8080/MyApplication/MyWebService?wsdl
How to configure that in JBoss 5.1? Is there some kind of configuration that will work in any JEE server?
Thanks