Hi, I developed a ws using netbeans using annotations:
@WebService MyWS()
public class MyWS {
@WebMethod(operationName="MyWebMethod")
public MyWebMethod(@WebParam(name="str") StringHolder str){
...
}
}
The applicaction's context root is /WSTests
Based on this information how can I deduce what's the .wsdl associated with my project to test it with - for instance - soapui ?
Something like http://localhost:8080/WStests/xxxx/yyyy.wsdl
Thanks