9

This is probably a stupid question. I don't know anything about Web Service but I have to work on this existing web service.

What is the difference between club.asmx?wsdl vs club.wsdl ?

I noticed they are similar, but club.wsdl has more stuff in it.

Aren't they generated automatically from the .cs code?

John Saunders
  • 160,644
  • 26
  • 247
  • 397
Aximili
  • 28,626
  • 56
  • 157
  • 216

1 Answers1

10

club.asmx?wsdl is a request to the service to generate and return a WSDL.

club.wsdl is just a reference to a file on your web server. Presumably it contains the WSDL that is meant to be exposed to customers.

John Saunders
  • 160,644
  • 26
  • 247
  • 397