What Are XML Web Services?
What Are XML Web Services?
Key differences:
To build a .NET Web service you create a file with the .asmx
extension.
Viewing a Test Page for the Web Service
• The developer tools provided with the .NET SDK and Visual Studio
.NET remove the need for the developer to work at the SOAP level.
Instead, clients may calls against a proxy object derived from
System.Web.Services.Protocols.SoapHttpClientProtocol and .NET takes care of
setting up, formatting and transmitting messages.
• The proxy class can be generated automatically using the command-
line utility wsdl.exe.
• Contains not only the default constructor, but also methods to
invoke the web service both synchronously and asynchronously.
Example of a Proxy Class
Example for invoking a temperature Web
service from an ASP.NET Web page
What is UDDI?