Click here to Skip to main content
Click here to Skip to main content

7 Simple Steps to Connect SQL Server using WCF from SilverLight

By , 12 Aug 2010
 

Update: Silverlight FAQs - Part 3 link and video added to this article.

7 Simple Steps to Connect SQL Server using WCF from SilverLight

 

Video demonstration One Way, Two Way and One Time Bindings using Silver light

 

Introduction and Goal

In this article, we will look at how we can do database operations using Silverlight. We will first try to understand why we cannot call ADO.NET directly from a Silverlight application and then we will browse through 7 steps which we need to follow to do database operation from Silverlight.

I have collected around 400 FAQ questions and answers in WCF, WPF, WWF, SharePoint, design patterns, UML, etc. Feel free to download these FAQ PDFs from my site.

Silverlight does not have ADO.NET

Below are the different ingredients which constitute Silverlight plugin. One of the important points to be noted is that it does not consist of ADO.NET. In other words, you cannot directly call ADO.NET code from a Silverlight application. Now the other point to be noted is that it has the WCF component. In other words, you can call a WCF service.

In other words, you can create a WCF service which does database operations and Silverlight application will make calls to the same. One more important point to be noted is to not return ADO.NET objects like dataset, etc. because Silverlight will not be able to understand the same.

Below are 7 important steps which we need to follow to consume a database WCF service in Silverlight.

Step 1: Create the Service and Data Service Contract

Below is a simple customer table which has 3 fields ‘CustomerId’ which is an identity column, ‘CustomerCode’ which holds the customer code and ‘CustomerName’ which has the name of the customer. We will fire a simple select query using WCF and then display the data on the Silverlight grid.

Field Datatype
CustomerId int
CustomerCode nvarchar(50)
CustomerName nvarchar(50)

As per the customer table specified above, we need to first define the WCF data contract. Below is the customer WCF data contract.

[DataContract]
    public class clsCustomer
    {
        private string _strCustomer;
        private string _strCustomerCode;

        [DataMember]
        public string Customer
        {
            get { return _strCustomer; }
            set { _strCustomer = value; }
        }

        [DataMember]
        public string CustomerCode
        {
            get { return _strCustomerCode; }
            set { _strCustomerCode = value; }
        }
    }

We also need to define a WCF service contract which will be implemented by WCF concrete classes.

[ServiceContract]
    public interface IServiceCustomer
    {
        [OperationContract]
        clsCustomer getCustomer(int intCustomer);
    }

Step 2: Code the WCF Service

Now that we have defined the data contract and service contract, it’s time to implement the service contract. We have implemented the ‘getCustomer’ function which will return the ‘clsCustomer’ datacontract. ‘getCustomer’ function makes a simple ADO.NET connection and retrieves the customer information using the ‘Select’ SQL query.

public class ServiceCustomer : IServiceCustomer
    {
        public clsCustomer getCustomer(int intCustomer)
        {
            SqlConnection objConnection = new SqlConnection();
            DataSet ObjDataset = new DataSet();
            SqlDataAdapter objAdapater = new SqlDataAdapter();
            SqlCommand objCommand = new SqlCommand
		("Select * from Customer where CustomerId=" + intCustomer.ToString());
            objConnection.ConnectionString = 
		System.Configuration.ConfigurationManager.ConnectionStrings
		["ConnStr"].ToString();
            objConnection.Open();
            objCommand.Connection = objConnection;
            objAdapater.SelectCommand = objCommand;
            objAdapater.Fill(ObjDataset);
            clsCustomer objCustomer = new clsCustomer();
            objCustomer.CustomerCode = ObjDataset.Tables[0].Rows[0][0].ToString();
            objCustomer.Customer = ObjDataset.Tables[0].Rows[0][1].ToString();
            objConnection.Close();
            return objCustomer;
        }
    }

Step 3: Copy the CrossDomain.xml and ClientAccessPolicy.XML File

This WCF service is going to be called from an outside domain, so we need to enable the cross domain policy in the WCF service by creating ‘CrossDomain.xml’ and ‘ClientAccessPolicy.xml’. Below are both the code snippets. The first code snippet is for cross domain and the second for client access policy.

<?xml version="1.0"?>
    <!DOCTYPE cross-domain-policy SYSTEM 
	"http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
    <cross-domain-policy>
      <allow-http-request-headers-from domain="*" headers="*"/>
     </cross-domain-policy>
<?xml version="1.0" encoding="utf-8" ?>
    <access-policy>
      <cross-domain-access>
       <policy>
          <allow-from http-request-headers="*">
            <domain uri="*"/>
          </allow-from>
          <grant-to>
            <resource include-subpaths="true" path="/"/>
          </grant-to>
       </policy>
      </cross-domain-access>
    </access-policy>

Step 4: Change the WCF Bindings to ‘basicHttpBinding’

Silverlight consumes and generates proxy for only basicHttpBinding, so we need to change the endpoint bindings accordingly.

<endpoint address="" binding="basicHttpBinding" 
	contract="WCFDatabaseService.IServiceCustomer">

Step 5: Add Service Reference

We need to consume the service reference in Silverlight application using ‘Add service reference’ menu. So right click the Silverlight project and select add service reference.

Step 6: Define the Grid for Customer Name and Customer Code

Now on the Silverlight side, we will create a ‘Grid’ which has two columns, one for ‘CustomerCode’ and the other for ‘CustomerName’. We have also specified the bindings using ‘Binding path’ in the text block.

<Grid x:Name="LayoutRoot" Background="White">
        <Grid.ColumnDefinitions>
                <ColumnDefinition></ColumnDefinition>
                <ColumnDefinition></ColumnDefinition>
            </Grid.ColumnDefinitions>
        <Grid.RowDefinitions>
                <RowDefinition Height="20"></RowDefinition>
                <RowDefinition Height="20"></RowDefinition>
            </Grid.RowDefinitions>
            <TextBlock x:Name="LblCustomerCode" Grid.Column="0" 
		Grid.Row="0" Text="Customer Code"></TextBlock>
            <TextBlock x:Name="TxtCustomerCode" Grid.Column="1" 
		Grid.Row="0" Text="{Binding Path=CustomerCode}"></TextBlock>
            <TextBlock x:Name="LblCustomerName" Grid.Column="0" 
		Grid.Row="1" Text="Customer Name"></TextBlock>
            <TextBlock x:Name="TxtCustomerName" Grid.Column="1" 
		Grid.Row="1" Text="{Binding Path=Customer}"></TextBlock>
    </Grid>

Step 7: Bind the WCF Service with the GRID

Now that our grid is created, it's time to bind the WCF service with the grid. So go to the code behind of the XAML file and create the WCF service object. There are two important points to be noted when we call WCF service using from Silverlight:

  • We need to call the WCF asynchronously, so we have called getCustomerAsynch. Please note this function is created by WCF service to make asynchronous calls to the method / function.
  • Once the function completes its work on the WCF service, it sends back the message to the Silverlight client. So we need to have some kind of delegate method which can facilitate this communication. You can see that we have created a getCustomerCompleted method which captures the arguments and ties the results with the grid datacontext.
public partial class Page : UserControl
{
    public Page()
    {
        InitializeComponent();
        ServiceCustomerClient obj = new ServiceCustomerClient();
        obj.getCustomerCompleted += new EventHandler<getCustomerCompletedEventArgs>
				(DisplayResults);
        obj.getCustomerAsync(1);
    }
    void DisplayResults(object sender, getCustomerCompletedEventArgs e)
    {
        LayoutRoot.DataContext = e.Result;
    }
}

You can now run the project and see how the Silverlight client consumes and displays the data.

Other Silverlight FAQs

  • Silverlight FAQ Part 1: This tutorial has 21 basic FAQs which will help you understand WPF, XAML, help you build your first Silverlight application and also explains the overall Silverlight architecture.
  • Silverlight FAQ Part 2 (Animations and Transformations): This tutorial has 10 FAQ questions which starts with Silverlight animation fundamentals and then shows a simple animated rectangle. The article then moves ahead and talks about 4 different ways of transforming the objects.
  • Silverlight FAQ Part 3: This article discusses 12 FAQs which revolve around bindings, layouts, consuming WCF services and how to connect to database through Silverlight.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Shivprasad koirala
Architect http://www.questpond.com
India India
Member

I am a Microsoft MVP for ASP/ASP.NET and currently a CEO of a small
E-learning company in India. We are very much active in making training videos ,
writing books and corporate trainings. Do visit my site for 
.NET, C# , design pattern , WCF , Silverlight
, LINQ , ASP.NET , ADO.NET , Sharepoint , UML , SQL Server  training 
and Interview questions and answers


Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionConfigurationManager not therememberMember 98820664 Mar '13 - 3:48 
Questionproblem with referencememberAbbath13496 Dec '12 - 4:44 
GeneralMy vote of 5memberYPARSARD17 Oct '12 - 19:00 
QuestionCan't find the type SqlConnectionmemberdpolancom28 Jul '12 - 15:49 
QuestionMy vote of 5memberDotNetXenon9 Sep '11 - 8:32 
GeneralMy vote of 5members.faizaan76 Aug '11 - 0:18 
very well explained
QuestionRetrieve data from Multiple tables?memberpriyanka angotra8 Sep '10 - 3:16 
Questionwhat am i missing?memberKarlian7122 Jul '10 - 0:59 
AnswerRe: what am i missing?memberMember 33316220 Aug '10 - 3:51 
GeneralMy vote of 1memberliviu12109 Jul '10 - 4:29 
GeneralRe: My vote of 1memberMember 33316220 Aug '10 - 3:50 
GeneralUPdate on launching the WCF.svc filememberkazim bhai28 Dec '09 - 18:45 
GeneralThanksmemberkazim bhai24 Dec '09 - 14:09 
GeneralMy vote of 2memberjszczur8 Oct '09 - 22:44 
Generalyour article has helped me!member791671153 Jul '09 - 17:35 
GeneralMy vote of 1memberzlezj22 Jun '09 - 0:20 
GeneralRe: My vote of 1memberShivprasad koirala22 Jun '09 - 1:00 
GeneralRe: My vote of 1memberthawait.himanshu30 Jun '09 - 2:37 
GeneralRe: My vote of 1memberblackjack21508 Oct '09 - 22:08 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130516.1 | Last Updated 13 Aug 2010
Article Copyright 2009 by Shivprasad koirala
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid