1

我有一个可以通过 url 访问的 wsdl。我想使用 wsgen 生成用于使用此 Web 服务的客户端类。我如何仅使用 wsdl url 作为参数来做到这一点?谢谢!

4

1 回答 1

1

我相信您所追求的是 wsimport,而不是 wsgen:

wsimport -Xnocompile -keep -d <directory where you want your client class>  <path to the wsdl>

-Xnocompile 允许您保留源代码

于 2011-05-05T16:27:11.983 回答