WSDL 总是公开的吗?
我是网络服务的新手。我想知道是否所有 WSDL 都是公开的?是否没有像 OWASP 的 WebGoat 项目那样在登录过程后保留任何 WSDL?
提前致谢。
I am a newbie in WebServices. I wonder if all WSDLs are public? Aren't there any WSDLs that are kept after a login process like in OWASP's WebGoat project?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
WSDL 是 Web 服务的契约定义。它用于为您的客户端生成代理,以便它可以与服务交互。如果您想要“私有”Web 服务,则在开发过程中仍然需要 WSDL 来创建代理类,但是您可以禁用访问 WSDL 的功能,以便无法在生产 Web 服务中使用它。
WSDL is the contract definition for your web service. It is used to generate a proxy for your client so it can interface with the service. If you want a "private" web service, you will still need the WSDL to create your proxy classes during development, but then you can disable the ability to access the WSDL so that it cannot be used from your production web service.