Sir/Madam,
I want to know where WSDL exists. Do user need to do interact with it for any kind of scenario during programing?
Sir/Madam, I want to know where WSDL exists. Do user need to do interact
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
WSDL stands for Web Service Description Language, it uses XML to define functions that a web service exposes and the types that these functions receive as arguments and return.
http://en.wikipedia.org/wiki/WSDL
You can usually access the WSDL for a web service using a query string (in .NET web services at least). A developer usually won’t look at the WSDL as it will be generated by a tool like Visual Studio or soapsuds and code will be generated to represent the types based on the definition in the WSDL that the developer will make use of instead. Changes to the WSDL will result in regeneration of this code.