Objective
This article will explain how to use LINQ to XML to read data from a XML file and bind that to SILVERLIGHT 3.0 Data Grid. XML file will be read in a WCF service and WCF service will return a List to be bind in a Grid.
Step 1
Create a SILVERLIGHT application. Select hosting in WEB Application project option.
Step 2: Add XML file in Web project.
If you have any existing XML file add that by selecting Add Existing Item option by right clicking on WEB (SilverLightApplication1.Web) project else select add new item option and select XML file from DATA tab. Copy paste the below XML file in your newly created XML file. Give any name of your choice to XML file. Name I am giving is Books.Xml.
Your XML file in Web Application project must look like.
Books.XML
<?xml version=“1.0“?> <catalog> <book <author>Gambardella, Matthew</author> <title>XML Developer’s Guide</title> <genre>Computer</genre> <price>44.95</price> <publish_date>2000-10-01</publish_date> <description> An in-depth look at creating applications with XML. </description> </book> <book <author>Ralls, Kim</author> <title>Midnight Rain</title> <genre>Fantasy</genre> <price>5.95</price> <publish_date>2000-12-16</publish_date> <description> A former architect battles corporate zombies, an evil sorceress, and her own childhood to become queen of the world. </description> </book> <book <author>Corets, Eva</author> <title>Maeve Ascendant</title> <genre>Fantasy</genre> <price>5.95</price> <publish_date>2000-11-17</publish_date> <description> After the collapse of a nanotechnology society in England, the young survivors lay the foundation for a new society. </description> </book> <book <author>Corets, Eva</author> <title>Oberon’s Legacy</title> <genre>Fantasy</genre> <price>5.95</price> <publish_date>2001-03-10</publish_date> <description> In post-apocalypse England, the mysterious agent known only as Oberon helps to create a new life for the inhabitants of London. Sequel to Maeve Ascendant. </description> </book> <book <author>Corets, Eva</author> <title>The Sundered Grail</title> <genre>Fantasy</genre> <price>5.95</price> <publish_date>2001-09-10</publish_date> <description> The two daughters of Maeve, half-sisters, battle one another for control of England. Sequel to Oberon’s Legacy. </description> </book> <book <author>Randall, Cynthia</author> <title>Lover Birds</title> <genre>Romance</genre> <price>4.95</price> <publish_date>2000-09-02</publish_date> <description> When Carla meets Paul at an ornithology conference, tempers fly as feathers get ruffled. </description> </book> <book <author>Thurman, Paula</author> <title>Splish Splash</title> <genre>Romance</genre> <price>4.95</price> <publish_date>2000-11-02</publish_date> <description> A deep sea diver finds true love twenty thousand leagues beneath the sea. </description> </book> <book <author>Knorr, Stefan</author> <title>Creepy Crawlies</title> <genre>Horror</genre> <price>4.95</price> <publish_date>2000-12-06</publish_date> <description> An anthology of horror stories about roaches, centipedes, scorpions and other insects. </description> </book> <book <author>Kress, Peter</author> <title>Paradox Lost</title> <genre>Science Fiction</genre> <price>6.95</price> <publish_date>2000-11-02</publish_date> <description> After an inadvertant trip through a Heisenberg Uncertainty Device, James Salway discovers the problems of being quantum. </description> </book> <book <author>O’Brien, Tim</author> <title>Microsoft .NET: The Programming Bible</title> <genre>Computer</genre> <price>36.95</price> <publish_date>2000-12-09</publish_date> <description> Microsoft’s .NET initiative is explored in detail in this deep programmer’s reference. </description> </book> <book <author>O’Brien, Tim</author> <title>MSXML3: A Comprehensive Guide</title> <genre>Computer</genre> <price>36.95</price> <publish_date>2000-12-01</publish_date> <description> The Microsoft MSXML3 parser is covered in detail, with attention to XML DOM interfaces, XSLT processing, SAX and more. </description> </book> <book <author>Galos, Mike</author> <title>Visual Studio 7: A Comprehensive Guide</title> <genre>Computer</genre> <price>49.95</price> <publish_date>2001-04-16</publish_date> <description> Microsoft Visual Studio 7 is explored in depth, looking at how Visual Basic, Visual C++, C#, and ASP+ are integrated into a comprehensive development environment. </description> </book> </catalog> |
Step 2: Creating WCF service
Right click on Web Project and add WCF service from Web tab. Give any name of your choice, I am giving name here MyService.
Creating Data Contract
This class will get serialized at client side.
Creating Service Contract
IMyService.cs
namespace SilverlightApplication1.Web{ [ServiceContract] public interface IMyService { [OperationContract] List<BooksDTO> GetBookDetails(); } |
Creating Service Implementation
MyService.svc.cs
using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.ServiceModel; using System.Text; using System.Web; using System.Xml.Linq; namespace SilverlightApplication1.Web{ XDocument xmlDocument = XDocument.Load(@”c:\\Books.XML”); Title = r.Element(“title”).Value,Genere = r.Element(“genre”).Value, Price = r.Element(“price”).Value, PublishDate = r.Element(“publish_date”).Value, Description = r.Element(“description”).Value, }; } } } |
Few points
- Using namespace System,.XML.Linq to use LINQ to XML features.
- Load method of XDocument class is being used to load XML document.
- Searching for all the descendents in XML document for the element Book. And retrieving all the child elements value.
- Service is returning List of BooksDTO class.
Compile the web project and after successfully compilation right click on service and view in browser.
Step 3: Consuming in SILVERLIGHT client
- Add Service Reference.
- While adding service reference, select advanced tab and change return type from Array to List.
- Add Data Grid on XAML. Give any name. I am giving name here MyGrid.
- On page load simply bind the result returning from service to Data Grid.
-
Make sure your startup project is SilverLightApplication1.Web and startup page is SilverLightApplicatio1Testpage.aspx . Else you might yield with Cross domain problem.
MainPage.Xaml
<UserControl xmlns:my=”clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Data” x:Class=”SilverlightApplication1.MainPage” xmlns=”http://schemas.microsoft.com/winfx/2006/xaml/presentation”
</UserControl>
|
MainPage.Xaml.CS
using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Windows; using System.Windows.Controls; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Shapes; using SilverlightApplication1.ServiceReference1; namespace SilverlightApplication1 {
{ public MainPage() { InitializeComponent();
proxy.GetBookDetailsCompleted += new EventHandler<GetBookDetailsCompletedEventArgs>(proxy_GetBookDetailsCompleted); proxy.GetBookDetailsAsync();} void proxy_GetBookDetailsCompleted(object sender, GetBookDetailsCompletedEventArgs e) |
Output
Conclusion
I have explained how to return data from XML file using LINQ to XML and bind to SILVERLIGHT data grid. In next article I will show other CRUD operations. Thanks for reading.
Leave a Reply