|
|
-
|
|
Windows Azure Portal is now all new. It is made in Silverlight. Almost all information is on one page and almost all operation can be performed from same page. Properties Windows for Deployment, Role Instances, and Hosting Service provide extensive operation. Configuring OS to SWAP VIP can be perfor......
|
|
-
|
|
It is a common scenario when we need to bind or display data from XML File to Silverlight Data Grid. In this article, I have tried to demonstrate this with simple steps. What all we are going to do is
Download content of XML file as string using WebClient class.
Parse XML file using LINQ to ......
|
|
-
|
|
In this article we will explore, how could we use Stored Procedure with WCF Data Service?
You can read Introduction to WCF Data service and ODATA here
To use Stored Procedure, at time of creation of Data Model, select Stored Procedure as part of Data Model.
Now open EDMX file and right clic......
|
|
-
|
|
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 ......
|
|
-
|
|
Target Audience: Beginners
SQL Server 2008 R2 comes with String Concatenation Operator.
String Concatenation operator is denoted by symbol plus ‘+’.
SELECT 'Dhananjay' + 'Kumar' FROM Person;
Output we will get,
String concatenation operator can concatenate string with real......
|
|
-
|
|
Target Audience: Beginners
AutoCompleteBox control is part of Silverlight 4.0 SDK. It allows us to have a Google style text box.
AutoCompleteBox will look for suggestion in IEnumerable list.
Create a DataSource to find the suggestion
Very first let us create a Country Class. This class w......
|
|
-
|
|
By default Enums are serializable. If we define Enum at service side and use it in Data Contract, it is exposed at the client side.
For example, if we have an Enum as below,
public enum ProductDeliveryPriority
{
Low,
Normal,
High,
Urgent
}
And we are using it in DataCo......
|
|
-
|
|
When service and client both are of .Net and resides on different machines then we choose preconfigured netTcpBinding to publsih WCF Service to the client.
netTcpBinding is best suited when both client and service are of .Net and communicating to each other either over Intranet or Internet.
......
|
|
-
|
|
Binding is one of the important aspect of WCF Programming. It deals with, “How Service and client will talk to each other?” Binding is made up of different binding elements. When different binding elements are stacked together they form a Binding. Different binding types are made up of d......
|
|
-
|
|
What is specifying Virtual Machine Size?
We can specify the size of virtual machine on which Role will be deployed. Size of VM defines
CPU core
Memory capacity
Local file system
We can specify Virtual Machine size for the Role.
There are two way to specify the VM size
Through Se......
|
|