Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what is WSDL URI in WCF?

Tags:

c#

wsdl

wcf

What is WSDL? i can't find a lot of references while googling...
how can i know the WSDL URI of my WCF web service?

like image 203
scatman Avatar asked Feb 01 '11 08:02

scatman


1 Answers

some good tutorials about WSDL:

  • http://msdn.microsoft.com/en-us/library/ms996486.aspx
  • http://www.w3schools.com/WSDL/default.asp
  • http://www.predic8.com/wsdl-reading.htm

If your Web service address is

http://services.aonaware.com/DictService/DictService.asmx

you can reach your wsdl file like this:

http://services.aonaware.com/DictService/DictService.asmx?WSDL
like image 191
fsonmezay Avatar answered Oct 21 '22 08:10

fsonmezay