Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 wsdl2js 为 WSDL 文件生成 SOAP 请求的客户端处理程序,但遇到了一些问题。如果我使用:
>wsdl2js -p [projectName] [wsdlFile]
它只生成一个 javascript 文件,这不是我需要的。
如果我使用
wsdl2js -client [wsdlFile]
就像他们演示的那样,我得到一个“意外选项:-client”
任何帮助将不胜感激,谢谢
wsdl2js 中没有 -client 选项。这就是为什么你得到最后提到的错误。
从调用生成的 javascript 文件
>wsdl2js -p soap http://link.to/webservice?wsdlfile
将生成您需要的存根,以便与引用的 Web 服务进行通信