|
|
-
|
|
I installed Windows Azure SDL V 1.3 . I tried to create a Hello World Azure Application.
I pressed F5 and error I got as below ,
I tried Ctrl+F5 ; running without debugger and did not get above exception but got service unavailable error in the browser
On this particular exception a very......
|
|
-
|
|
In this article we will expose database from cloud or SQL Azure as WCF Data Service.
There two steps mainly involved in this
Creating local Database and migrating to SQL Azure
Exposing SQL Azure Database as WCF DATA Service
Step1: Creating local Database and migrating to SQL Azure
Creat......
|
|
-
|
|
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......
|
|
-
|
|
Imagine we are moving existing Web Application or ASP.Net MVC Web Application to cloud. In that case we need to add cloud service to existing Web Application or ASP.Net MVC Web Application.
We have a solution for Web Application is as below,
Now right click on the solution and add a new proje......
|
|
-
|
|
I thought to start learning Windows Azure. I installed Azure SDK and created a project by choosing Windows Azure project template from cloud tab and creating a Web Role.
I just put a label on aspx file and when tried running the project I got the below error
When I switched to Ou......
|
|
-
|
|
Objective
This article will not give any theoretical definition of
Delegate Read theory of Delegate here
Anonymous method
Lambda Expression Read theory of Lambda expression here
I am going to give a story type discussion from Delegate to Lambda expression.
Let us say, there is a re......
|
|
-
|
|
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......
|
|
-
|
|
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 .
Duplex service allows calling back some operation (function) on the client.
Duplex s......
|
|
-
|
|
In this article we will walkthrough and understand each function of Object class.
System.Object is known as mother class of all the managed classes. All the classes are inherited from System.Object. It is base type for all the managed classes. So it defines the base behavior of all the managed clas......
|
|
-
|
|
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......
|
|