Creating Web services in C# is very easy. All you have to do is extend the
WebService class and identify which methods are Web service methods using the
WebMethod attribute. The following code is an example:
using System.Web.Services;
public class AWebService : WebService
{
public AWebService
{
// constructor code
}
public void BusinessLogicMethod() {
// code here
}
[WebMethod(Description="A Web Method", EnableSession=false)]
public int WebServiceMethod()
{
// code here
}
}
How to call and use this Web service is beyond the scope of this tip, but what you need to know is that
BusinessLogicMethod() is not exposed to the public to use (because it is not declared as a Web method), but
WebServiceMethod() is.
If you have a hot tip and we publish it, we'll pay you. However, due to accounting overhead we no longer pay $10 for a single tip submission. You must accumulate 10 acceptable tips to receive payment. Be sure to include a clear explanation of what the technique does and why it's useful. If it includes code, limit it to 20 lines if possible.
Submit your tip here.