|
|
-
|
|
Objective
This article will give step by step walkthrough
How to create a basic WCF 4.0 Service?
How to host WCF Service in IIS 7.5?
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 Service ap......
|
|
-
|
|
Target Audience: Beginners in Silverlight
When you start learning Silverlight and create your first Silverlight application, one thing you will notice XAP file along with HTML and ASPX files. First time after running your Silverlight application you can see XAP file in client bin folder. Before ......
|
|
-
|
|
Objective URL Routing is new feature in ASP.Net 4.0. This article will give a walkthrough on how to work with URL Routing and an introduction of that. URL Routing ASP.Net 4.0 URL Routing enables mapping between search engines optimized URL to physical web Form pages. For example http://localhos......
|
|
-
|
|
Objective
In this article we will see,
How to apply Jquery on HTML table?
How to check and uncheck all the checkboxes?
How to check how many numbers of checkboxes are checked?
How to disable and enable the checkboxes.
Suppose we have a HTML table as below.
And HTML for above table is a......
|
|
-
|
|
Windows Azure Development portal has been moved to new Silverlight based portal. It has all new look and many new features.
SQL Azure can be explored by selecting Database option from the left panel.
New SQL Azure portal is having very nice Silverlight based user interactive UI and many more......
|
|
-
|
|
An application designed and developed to be as hosted service for windows azure consist of
Managed Code
XML file for configuration
Managed codes are mapped into different Roles
XML files are mapped into different configuration settings.
If we see the below diagram it explains all the co......
|
|
-
|
|
Objective
This article will explain step to step explanation of, how to create a REST based service and how to consume that in a managed client.
Step 1
Create a new project as WCF Service application type.
Step 2
Delete all the default code from IService.cs and Service.svc.cs
Now open......
|
|
-
|
|
Each time when we want to consume a WCF service, we need to create proxy at client side. To create proxy, service must expose metadata endpoint.
Normally
We create a WCF service
Expose metadata endpoint
Add service reference at client side to create the proxy.
Using the proxy calls the serv......
|
|
-
|
|
Objective: This article will explain, How to upload a file from SilverLight client to server location using WCF. To achieve above task, follow the below steps. I am assuming here, that Reader has a basic concept of 1. WCF 2. Silver Light 3. Cross Domain Issue 4. Hosting of WCF Service Fo......
|
|
-
|
|
Let us say we have a list of integer and we want to find all the number greater than 100. If list is as follow List lst = new List();
lst.Add(20);
lst.Add(300);
lst.Add(400);
lst.Add(9);
lst.Add(19);
lst.Add(789);
......
|
|