开发者

How to deduce wsdl for web service under tomcat

I developed a ws using netbeans using annotations:

@WebService MyWS()
public class MyWS {
  @WebMethod(operationName="MyWebMethod")
  public MyWebMethod(@WebParam(name="str") StringHolder str){
    ...
  }
}

The appli开发者_如何学Gocaction'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


Found it...

It's

Pointing soapUI to:

http://localhost:8080/WSTests/MyWS?wsdl

I get a list of it's web methods.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜