Build a Simple Web ServiceIn this article we're going to develop a very simple web service using ASP.NET available in Visual Studio.NET Beta 1 which exposes the following functions:
Add(Integer1, Integer2) -- Adds two numbers and returns the result.
Multiply(Integer1, Integer2) -- Multiplies two numbers and returns the result.
We will then use the automatically generated web service page to use these "web methods" to perform an addition.