Reputation: 21108
I am new to asp.net and just started my first project. I heard about web services in asp.net. Can anyone tell me about how can they benefit me in my websites and applications and can it be run on window applications as well.
Upvotes: 1
Views: 445
Reputation: 161821
Darin Dimitrov has given you the correct answer. I'll just add that this is a perfect example of the fact that you must be careful about things you read about, or find in Internet searches. There's plenty of bad information along with the good information - plenty of old information along with the current information.
You can find a lot of great information on ASMX web services (sometimes known as "ASP.NET Web Services"), and almost none of that information will tell you that you should not use ASMX web services. Most of that information was written when ASMX web services were the current web service technology, so it will naturally not tell you that it stopped being current three years ago.
Upvotes: 1
Reputation: 1039328
The recommended way to write web services in .NET is using the Windows Communication Foundation (WCF). There are many tutorials online that will get you started. Here's one on MSDN.
Upvotes: 4