Thursday 8 January 2015

How .Net web services work when we add web services in any project

Let's assume, i have a project(ABC) where i have added SharePoint web services.

After adding the web services in the project(ABC)....
Microsoft's wsdl.exe utility will generate a spurce code file (C#) based on the web services's WSDl (web service definition language).
Microsoft's csc.exe utility will compiles the code into a proxy (DLL).
Generated proxy(DLL) will register into my project, bin directory.

Now i am good to access any methods inside ABC project, which are there in SharePoint web services...