SoapBindingImpl.java 文件的作用是什么
当我们在使用 wsdl2java
(apache axis)工具生成存根时使用 -s
选项时,它会生成
文件。
该文件包含所有方法定义。
这个文件有什么用?
到底什么时候我们需要编辑这个文件的功能呢?
如果我们只是想使用该服务,我们还需要这个文件吗?
When we use -s
option while generating stubs using wsdl2java
(apache axis) tool it generates <service-name>SoapBindingImpl.java
file.
This file contains all the method definition.
What is use of this file?
When exactly we need to edit the functions of this file?
If we just want to use the service do we even need this file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该文件是必需的,但不需要存根,而需要骨架。这是调用所有 API 的 impl 类所必需的。如果您只是想调用该服务,则不需要它。因为存根不关心实现。它独立于此。
This file is needed but not with stub its needed with skeleton. This is needed to call the impl class of al the API. if you just want to call the service, you dont need it. Because stub doesn't care about implementation. Its independent of that.