Showing posts with label WebServices. Show all posts
Showing posts with label WebServices. Show all posts

Dec 11, 2012

Consuming a web service using ASP .NET

To know about basics of web service read this article. To know about creating a web service using ASP .NET read this article. Background: In the previous article we have learned about creating a web service. Now in this article, we will learn how to consume a web service using asp .NET. Real Time...

Creating Web Service using ASP .NET

To know about basics of web service read this article. 1.   Create an ASP .NET web service application using Microsoft Visual Studio. 2. Take a scenario that we have to convert Celsius to Fahrenheit and vice versa. 3.   Below is the code for our scenario: using System; using...

Basics of Web Services

Introduction: In this article, we aim at learning the basics of web services and understand how does web service works. WebService: 1.   Web services are the easy way to create communications between different applications of different platform. 2.  Web Services extend these...