How to deduce wsdl for web service under tomcat
Posted
by xain
on Stack Overflow
See other posts from Stack Overflow
or by xain
Published on 2010-05-09T18:03:40Z
Indexed on
2010/05/09
18:08 UTC
Read the original article
Hit count: 186
wsdl
|web-services
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 ?
Thanks
© Stack Overflow or respective owner