Can I create a wsdl from a c# WCF service the same as I used to do with c# web service?
I have to write a web service and I want to use WCF. The developer im working with wants me to provide a wsdl. What im wondering is will I be able to use the WCF service we have in place and use a credential hea开发者_JAVA技巧der like I used to with web services?
Yes you can.
You need to add a mex endpoint (meta data exchange) and allow http get for metadata exchange.
All of these are on by default.
You just browse your service and click on the wsdl link.
精彩评论