如何隐藏WCF上的wsdl信息?
我认为用“IMetadataExchange”删除端点就足够了。我这样做了,但仍然生成了 wsdl 文件...
如何在 WCF 上隐藏 wsdl 信息?
PS 可能我的问题是无效的(我对WCF理解不太深),所以请纠正我。
I thought that deleting of endpoint with 'IMetadataExchange' is enough. I did that but wsdl file is still generated...
How to hide wsdl information on WCF?
P.S. Probably my question is not valid (I don't understand WCF too deep), so please correct me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的服务的行为配置很可能包含:
从服务配置中删除
serviceMetadata
行为或将其httpGetEnabled
设置为false
。Your service's behavior configuration most probably contains:
Remove
serviceMetadata
behavior from your service configuration or turn itshttpGetEnabled
tofalse
.