advertisement
Login | Register   
  Include Code  Search Tips
TODAY'S HEADLINES  |   ARTICLE ARCHIVE  |   FORUMS  |   TIP BANK
Browse DevX
Partners & Affiliates
advertisement
advertisement
Tip of the Day
Average Rating: 2/5 | Rate this item | 72 users have rated this item.
Expertise: Advanced
Language: C#
November 30, 2005
How to Create a Web Service in C#
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.

Sachin Kainth
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.
Please rate this item (5=best)
 1  2  3  4  5
advertisement
advertisement