.Net Web Services Need - Why do we need .Net Web Services?

Why do we need .Net Web Services?

We have a number of heterogeneous technologies available on internet. The demand for reusable components across platforms and programming languages are high. Most of the components have the limitation that they can't share or exchange data across different platforms, they are mostly language specific or platform specific. The technologies like COM, RMI, CORBA etc. contributed best to fulfill requirements to some extent, but components result from these said technologies are mostly either language specific or platform specific.

To avoid above problem, we need to have web services. Through web services we have overcome the problem of interoperability between languages and platforms. Web services uses SOAP as transport protocol which uses a text based messaging model, i.e. XML to communicate between disparate systems.

Deploying a Web Service

Deploying the .Net Web Services is as simple as any ASP.NET application. Similar to ASP.NET applications, you need to copy or upload the .ASMX file and the .DISCO files to the appropriate directories, and that's it.
Distributed Technology - Answer to the web service questions
Distributed Technology - The need of distributed technologies arises with the requirement of distributed computing applications.
Web services vs. CORBA and DCOM - Answer to the web service questions
Web services use HTTP protocol for sending and receiving messages between the applications. The data encoding in web services is based on XML......
Advantages of .Net Web Services - Answer to the web service questions
Advantages of .Net Web Services - Web services may extend its interface and add new methods without affecting the clients as long as they still provide the old methods and parameters.
Post your comment