Posts

Showing posts with the label WSDL

How To Use WSDL File To Consume WCF Service in .NET Core Application?

Image
  WCF Services play a pivotal role in modern day distributed application as all the requests from the UI Layer is passed on to the WCF Service API's which serve those requests appropriately. Lets see how we can consume the WCF Service by a .NET Core WPF application. What is WSDL File? WSDL Stands for W eb S ervice D escription L anguage, as the name suggests it gives a description of the functionality offered by the particular WCF service in a XML Format. How to Download WSDL File? WSDL file can be downloaded by going to the URL location where the WCF Service is hosted,  For example:   I have hosted the WCF Service locally identified by URL:  http://localhost:6875/process How to Configure Service Reference with the help of WSDL File? Steps: Step 1 :   enter this URL in a Web browser as shown below Accessing WCF Service through Web browser Step 2: Click on the link as highlighted in the below image Accessing the WSDL Content through the URL Step 3: When you ...