Advantages of .Net Web Services - Answer to the web service questions

Advantages of .Net Web Services

- Web Services are supported on a wide range of platforms.

- 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.

- A client makes a request to a web service, the web service returns the result, and the connection is closed. There is no permanent connection. This makes it easy to scale up and support many clients at a time.

- Firewalls can pose a challenge for distributed object technologies. The only thing that almost always gets through firewalls is HTTP traffic on ports 80 and 443. Because web services use HTTP, they can pass through firewalls without explicit configuration.
Web Service Standards - Explain in brief Web Service Standards
Web Service Standards - Following are the standards used by web services
.Net web services discovery - Answer to the web service questions
.Net web services discovery - DISCO, an abbreviation of discovery, is a file that groups together a list of related web services.
Data types supported by Web Services - Answer to the web service questions
Data types supported by Web Services - There are many proprietary .Net objects such as FileSteam, Eventlog etc. are not supported in the web services. These data types are .Net specific types that are not universally recognized, i.e. .Net specific only.
Post your comment