How to use a WSDL File to create a WCF Proxy?

wcf, wsdl

Solution

Use svcutil.exe to create a WCF proxy to call the service. Details here.

Problem

I have an old WSDL file and I want to use WCF to communicate with the service. The WSDL is generated from a ASMX (I suppose but I am not sure). What would be the required steps to communicate with it ?

Original source

Related problems