Posts

Showing posts from June, 2013

Creating and consuming WCF Services In asp.net

Image
Creating and consuming WCF Services In asp.net As we know about Web service, it use for throw your methods and function to outer world. But web service has limitation in respect to WCF Services.Webervices is only use for web Application, while we can use WCF service with web, window, console and any type of application. So here is our simple example for creating and consuming a WCf service for web Application. But you can use this same service with window, console and any other type of application, by changing its traveling protocols in WEB.Config File. Step 1: Design Database Table Creation…. CREATE TABLE [dbo] . [GridView] (       [id] [int] IDENTITY ( 1 , 1 ) NOT NULL,       [name] [varchar] ( 50 ) NULL,       [age] [int] NULL,       [salary] [decimal] ( 18 , 0 ) NULL,       [country] [varchar] ( 50 ) NULL,    ...