Im creating a WCF Service application, I dnt want to give the URL to the client use rather I need to give a Single WSDL file.
How I can do it?
svcutil will generate its if you need it to. Check out http://msdn.microsoft.com/en-us/library/aa702581.aspx for details.
C:>svcutil.exe /t:metadata http:/localhost:1234/testservice.svc?singleWsdl
Use disco.exe http:///service.svc Will be generate .disco, .wsdl and .xsd (optional more than one).
I think disco.exe better than svcutil.exe