使用 wsdl2js 生成客户端代码?
我正在尝试使用 wsdl2js 生成 WSDL 文件的 SOAP 请求的客户端处理程序,但遇到了一些问题。 如果我使用:
>wsdl2js -p [projectName] [wsdlFile]
它只会生成一个javascript文件,这不是我需要的。
如果我使用
wsdl2js -client [wsdlFile]
就像他们演示的那样,我得到一个“意外选项:-client”
任何帮助将不胜感激,谢谢
I am trying to use wsdl2js to generate the client-side handler of a SOAP request for a WSDL file but running into a few problems. If I use:
>wsdl2js -p [projectName] [wsdlFile]
it only generates a javascript file, which isn't what I need.
If I use
wsdl2js -client [wsdlFile]
like they demonstrate, I get an "Unexpected option: -client"
Any help would be greatly appreciated, thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
wsdl2js 中没有 -client 选项。 这就是您收到最后提到的错误的原因。
从类似调用生成的 javascript 文件
将生成您需要的存根,以便与引用的 Web 服务进行通信
There is no -client option in wsdl2js. That's why you're getting the last-mentioned error.
The javascript file that is generated from a call like
will generate the stubs you need in order to communicate with the referenced webservice