Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

what are adnvatages and disadvantages of .NET for Web Services

Status
Not open for further replies.

haroonkhalid

Programmer
Nov 6, 2001
16
SG
.NET provides support for Web Services development. Is there any list of advantages and disadvantages of Web Service development using .NET and its running on .NET framework. something like state management, transaction handeling etc ...

AND

How ASP.NET is desirable tool for Web Service Development
 
Hi,

Using Webservices is not as fast as for example DCOM/COM+. This is because it generates some overhead (description of class) in XML. But this gives you the advantage that your Webservice can be used on clients that do not have your original class defenitions (in a .DLL for example).

When your application is only being accessed by .NET clients, you can use .NET Remoting also. This is much faster than Webservice because you can use binary transmisson instead of XML.

Greetz,
Jan If this response was usefull to you, please mark it with a Star!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top