How to hide wsdl information on WCF?
I thought that dele开发者_如何学Cting 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.
Your service's behavior configuration most probably contains:
<serviceMetadata httpGetEnabled="true" />
Remove serviceMetadata
behavior from your service configuration or turn its httpGetEnabled
to false
.
精彩评论