Walkthrough of Consuming WCF 4.0 in SilverLight 4.0
Category Archives: WCF
WCF 4.0 service consumed in Silverlight 4.0 avoiding cross domain problem
Objective This article will explain how to call WCF 4.0 service hosted in IIS 7.5 in a Silverlight application. This article will explain the way to avoid cross domain problem also. Expected Output When user will click on + button a WCF service hosted on IIS will get called. As a input parameter to serviceContinueContinue reading “WCF 4.0 service consumed in Silverlight 4.0 avoiding cross domain problem”
Walkthrough on creating WCF 4.0 Service and Hosting in IIS 7.5
Objective This article will give step by step walkthrough 1. How to create a basic WCF 4.0 Service? 2. How to host WCF Service in IIS 7.5? 3. Hot to test service in a client. Create WCF Service Create WCF service. Open visual studio select new project and then from WCF tab select WCF ServiceContinueContinue reading “Walkthrough on creating WCF 4.0 Service and Hosting in IIS 7.5”
Callback Reentrancy or returning values in callback or duplex service
PART#1 of this article is here Objective: This article will explain how to return values in call back or duplex operation. Before reading this article, I strongly recommend to read my first article post on this series. This article is fully based on the A Simple Duplex Service in WCF. If you read above article,ContinueContinue reading “Callback Reentrancy or returning values in callback or duplex service”
A Simple Duplex Service in WCF
Objective This article will give step by step explanation on how to create a simple duplex service in WCF. In call back operation or duplex service, Service can also call some function at the client . 1. Duplex service allows calling back some operation (function) on the client. 2. Duplex service also knows as CallContinueContinue reading “A Simple Duplex Service in WCF”
CollectionDataContract Attribute in WCF
This article is part # 2 of custom collection in WCF Objective In this article, I will explain you what is CollectionDataContract Attribute in WCF and why need it? I strongly recommend you to read custom collection in WCF first. Why we need it? If you notice when we expose a custom collection, it mustContinueContinue reading “CollectionDataContract Attribute in WCF”
Working with Custom collection in WCF
Objective In this article, I will show you 1. How to create custom collection 2. How to use them in WCF Service 3. How to consume at client side Before reading this article, I recommend you to read my article Collection in WCF Create a custom collection 1. Right click on WCF project and addContinueContinue reading “Working with Custom collection in WCF”
Collection in WCF
Objective In this article, I will explain 1. How to work with collection in WCF? 2. How to work with concrete collection List<T> ? 3. How to work with interface IEnumerable<T> ? 4. How to convert Array at client side to collection Collection at service side and client side Since, COLLECTION is very much specificContinueContinue reading “Collection in WCF”
Download PDF on hosting WCF in azure and consuming in window 7 phone
WCF hosted in Azure and consumed in windows 7 phone
Hosting WCF service in Windows Azure and consuming in Window 7 phone app
Objective This article will give step by step walkthrough of hosting a WCF service in windows azure and then consuming that in windows7 phone application. Expected output Step 1 Open Visual Studio 2010 as an administrator. Select File -> New -> Cloud Service. Click on Windows Azure cloud service template. Give name of the cloudContinueContinue reading “Hosting WCF service in Windows Azure and consuming in Window 7 phone app”