views:

25

answers:

1

Isn't visual studio supposed to automatically generate this file for each webservice creation ? If yes why can't I see it anywhere in project directory ?

+1  A: 

Assuming you are talking about the now old-style .asmx web services -- no, they are not generated as a file, they are generated on the fly when you request http://localhost/project/service.asmx?wsdl

MK
OK thanks I see it now :)