c# - How to programmatically retrieve all of a web service's web methods' signatures? -


i'm trying build c# application displays , invokes of specific web service's methods (the web service written .asmx file).
can go directly asmx file , methods names returned html, i'm sure there more elegant way (this way doesn't reveals web methods' signatures well, names..).

so how can programmatically ask service it's methods?

thanks.

get wsdl of web-service discover available methods on web-service.

http://server/your-webservice.asmx?wsdl


Comments

Popular posts from this blog

ruby - When to use an ORM (Sequel, Datamapper, AR, etc.) vs. pure SQL for querying -

php - PHPDoc: @return void necessary? -

c++ - Convert big endian to little endian when reading from a binary file -