This article is 1st part of multi series article on WCF 4.0. This article will list all the new feature of WCF and also will explain in detail Dynamic Service and End Point Discovery feature of WCF 4.0. What are the new in WCF 4.0? I am listing here, new features in WCF 4.0 DynamicContinueContinue reading “Dynamic Service and End Point Discovery feature of WCF 4.0”
Author Archives: Dhananjay Kumar
Rich Text Box in Silver Light 4.0
Objective In this article, I am going to show how to work with Rich Text box in Silver Light 4.0. I will show how to inline buttons and image inside rich text box. How to make text box as read only. How to change font of selected text. I have created a basic Silver LightContinueContinue reading “Rich Text Box in Silver Light 4.0”
REST service on JSON Message format
Objective How to create REST service for JSON request and response format. How to create SilverLight Client, which will consume a REST service on JSON data format. How to POST data in JSON format from SilverLight client. Working explanation Here, I am trying to insert data in static list and fetch it back atContinueContinue reading “REST service on JSON Message format”
CRUD operation on a REST WCF service
This article will explain step by step, how to perform CRUD operation on a database using ADO.Net Data Service and then how to expose CRUD operations as REST enabled WCF service to the client. This will also give explanation, how to consume REST service at client side. This article will perform the entire HTTP verbContinueContinue reading “CRUD operation on a REST WCF service”
Introduction to Silver Light 3.0 Navigation
Objective In this article , I will show how to work with Silver Light Navigation framework. Create a Silver Light Application by selecting Silver Light application from project template. And follow below steps. Step 1 Adding references Add below references to Silver Light application. System.Windows.Control System.Windos.Control.Data System.Windows.Control.Navigation Step2 Adding namespaces Open MainPage.Xaml and add theContinueContinue reading “Introduction to Silver Light 3.0 Navigation”
Element to Element Binding in Silver Light 3.0
Objective This article I am going to discuss new feature of SilverLight3.0 called Element to Element Binding. I will discuss three samples to understand Element to Element Binding. Example I will take an example to explain Element to Element binding. I will bind value of slider control to text of a text block. First IContinueContinue reading “Element to Element Binding in Silver Light 3.0”
File Handling in Isolated Storage in Silver Light
Objective This article will explain, How to create a text file in IsolatedStorageFile of a SilverLight 2 application. How to write into a text file in IsoltaedStorageFile. How to read a text file from IsolatedStorageFile. How to delete a file from IsolatedStorageFile. Step 1 Create a SilverLight application. By selecting File->New->Project->SilverLight-> SilverLight Application.Design the XAMLContinueContinue reading “File Handling in Isolated Storage in Silver Light”
Isolated Storage in Silver Light
Why Isolated Storage? SilverLight applications are partially trusted application, which are running on a sandbox environment. So, SilverLight applications are not allowed to access the file system of the client, where it is running for the security reason. Because it is not safe to allow any SilverLight application to access client computer, this may harmContinueContinue reading “Isolated Storage in Silver Light”
Refresh a DataGrid dynamically in SilverLight
Objective Core Objective of this article is to give step by step explnation of , How to update or refresh a DataGrid dynamically in SilverLight ? List which is to be bind must be ObservableCollection Item of list of business class must implement INotifyPropertyChanged interface. This article is explaning how DataGrid would get refresh dynamicallyContinueContinue reading “Refresh a DataGrid dynamically in SilverLight”
Navigation in Silver Light
Objective This article will show, How to navigate between two SilverLight pages in silverLight2.0. This article is giving step by step illustration on how to navigate and pass values between two SilverLight pages. In this SilverLight application user will input her name and two numbers in one Silverlight page and user will get greeting messageContinueContinue reading “Navigation in Silver Light”