MSDN Magazine - July 2008 - (Page 67) Figure 11 Building the Tree View TreeView1.Nodes.Clear(); appDataUri = string.Format(@"http://{0}.{1}{2}", conSSDSAuthName, conSSDSUri, "Categories"); query = @"from e in entities where e.Kind == ""Category"" select e"; UriBuilder newUri = new UriBuilder(appDataUri); newUri.Query = String.Format("q='{0}'", Uri.EscapeDataString(query)); string xmlResults = HTTPHelper.GetHTTPWebRequest(newUri.Uri.ToString(), new System.Net.NetworkCredential(conSSDSUsername, conSSDSPassword)); XmlDocument categoriesDoc = new XmlDocument(); categoriesDoc.LoadXml(xmlResults); XmlNodeList nodeList = categoriesDoc.SelectNodes("//Category"); int nodeIndex = 0; foreach (XmlNode node in nodeList) { if (node.ChildNodes.Count > 3) { int propCount = ((node.ChildNodes.Count - 1) / 2); TreeNode tn = new TreeNode(node.ChildNodes[2].InnerText, node.ChildNodes[0].InnerText); TreeView1.Nodes.Add(tn); for(int x=1;x<propCount;x++) { tn = new TreeNode(node.ChildNodes[(x*2)+2].InnerText, node.ChildNodes[(x*2)+1].InnerText); TreeView1.Nodes[nodeIndex].ChildNodes.Add(tn); } GetHTTPWebRequest is a static helper method to hide some of the HTTP details: WebRequest request = HttpWebRequest.Create(Uri.EscapeUriString(serviceUri)); request.Credentials = requestCredential; request.Method = "GET"; request.ContentType = XmlContentType; // Get the response and read it in to a string. using (HttpWebResponse response = (HttpWebResponse)request.GetResponse()) { } return ReadResponse(response); Now all that needs to be done is to create a new WebRequest object, set the Credentials that were passed to it, set the appropriate HTTP verb, set the ContentType to XML, and call the GetResponse method. I then call ReadResponse, which is another static helper method which uses a stream reader to read the HTTPResponse and return it to the caller. The code behind then takes the returned XML, loads it up into a XmlDocument, and loads the tree view with it. Class Deserialization } else { TreeNode tn = new TreeNode(node.ChildNodes[2].InnerText, node.ChildNodes[0].InnerText); TreeView1.Nodes.Add(tn); } } nodeIndex++; Up to this point, the code has simply been manually manipulating XML, but it’s easy to take an entity and deserialize it into a class. In this case, the application will be using a CityServed class. The base Entity class is pretty basic. The class contains properties for both the ID and Version, which are common to all entities. It also contains the necessary attributes so that the class is serializable. CityServed, shown in Figure 12, inherits from the base Entity class. A generic Query method returns a list of entities of type CityServed: foreach (CityServed i in HTTPHelper.Query ( appDataUri, query, new System.Net.NetworkCredential( conSSDSUsername, conSSDSPassword))) To start, look back at the main interface of the Web app shown in Figure 1. There is a tree view that represents the listing categories, a main content area, and a Datalist of all the cities that the application is currently configured to support. Looking into each one, I’ll show you how easy it is to develop an ASP.NET app against SSDS. If you look at the ASPX code for the tree view, you’ll see that it is quite simple: Groups The Query method, included in the code download for this article, is simply a generic static helper method that calls the same GetHTTPWebRequest method as we had used earlier. The Serialize and Deserialize methods are shown in Figure 13. The Query Figure 12 CityServed [XmlRoot(ElementName = "CityServed", Namespace = "")] public class CityServed : Entity { [XmlElement(ElementName = "AuthorityUri")] public object AuthorityUriField; [XmlElement(ElementName = "Name")] public object NameField; public override string ToString() { return Name; } [XmlIgnore] public string AuthorityUri { get { return (string)AuthorityUriField; } set { AuthorityUriField = value; } } [XmlIgnore] public string Name { get { return (string)NameField; } set { NameField = value; } } The magic happens in the code behind, as you can see in Figure 11. The first thing for you to be concerned with is the building of the URI, which is the pointer to the Categories container. Since this data is not city-specific, I have chosen to store it in the main contosoclassifieds authority, within the Categories container. Following that, I proceed to use a LINQ query to retrieve all entities with a Kind category, and then I use a UriBuilder object to put it all together and add the necessary HTTP escaping. Next, I go ahead and call the GetHTTPWebRequest method, passing in the escaped URI and a NetworkCredential object with the SSDS user name and password. GetHTTPWebRequest returns a string representation of an EntitySet with all Entities that satisfy the query predicates. msdnmagazine.com } July 2008 67 http://msdnmagazine.com
Table of Contents Feed for the Digital Edition of MSDN Magazine - July 2008 MSDN Magazine - July 2008 Contents Toolbox CLR Inside Out Flex Your Data Data Points Advanced Basics Office Space Cutting Edge Data Services ADO.NET Data and WPF Transactions WCF P2P Test Run Security Briefs Foundations .NET Matters {End Bracket} MSDN Magazine - July 2008 MSDN Magazine - July 2008 - (Page Intro) MSDN Magazine - July 2008 - Contents (Page Cover1) MSDN Magazine - July 2008 - Contents (Page Cover2) MSDN Magazine - July 2008 - Contents (Page 1) MSDN Magazine - July 2008 - Contents (Page 2) MSDN Magazine - July 2008 - Contents (Page 3) MSDN Magazine - July 2008 - Contents (Page 4) MSDN Magazine - July 2008 - Contents (Page 5) MSDN Magazine - July 2008 - Contents (Page 6) MSDN Magazine - July 2008 - Contents (Page 7) MSDN Magazine - July 2008 - Contents (Page 8) MSDN Magazine - July 2008 - Contents (Page 9) MSDN Magazine - July 2008 - Contents (Page 10) MSDN Magazine - July 2008 - Toolbox (Page 11) MSDN Magazine - July 2008 - Toolbox (Page 12) MSDN Magazine - July 2008 - Toolbox (Page 13) MSDN Magazine - July 2008 - Toolbox (Page 14) MSDN Magazine - July 2008 - Toolbox (Page 15) MSDN Magazine - July 2008 - Toolbox (Page 16) MSDN Magazine - July 2008 - CLR Inside Out (Page 17) MSDN Magazine - July 2008 - CLR Inside Out (Page 18) MSDN Magazine - July 2008 - CLR Inside Out (Page 19) MSDN Magazine - July 2008 - CLR Inside Out (Page 20) MSDN Magazine - July 2008 - CLR Inside Out (Page 21) MSDN Magazine - July 2008 - CLR Inside Out (Page 22) MSDN Magazine - July 2008 - CLR Inside Out (Page 23) MSDN Magazine - July 2008 - CLR Inside Out (Page 24) MSDN Magazine - July 2008 - Data Points (Page 25) MSDN Magazine - July 2008 - Data Points (Page 26) MSDN Magazine - July 2008 - Data Points (Page 27) MSDN Magazine - July 2008 - Data Points (Page 28) MSDN Magazine - July 2008 - Data Points (Page 29) MSDN Magazine - July 2008 - Data Points (Page 30) MSDN Magazine - July 2008 - Data Points (Page 31) MSDN Magazine - July 2008 - Data Points (Page 32) MSDN Magazine - July 2008 - Data Points (Page 33) MSDN Magazine - July 2008 - Data Points (Page 34) MSDN Magazine - July 2008 - Advanced Basics (Page 35) MSDN Magazine - July 2008 - Advanced Basics (Page 36) MSDN Magazine - July 2008 - Advanced Basics (Page 37) MSDN Magazine - July 2008 - Advanced Basics (Page 38) MSDN Magazine - July 2008 - Advanced Basics (Page 39) MSDN Magazine - July 2008 - Advanced Basics (Page 40) MSDN Magazine - July 2008 - Advanced Basics (Page 41) MSDN Magazine - July 2008 - Advanced Basics (Page 42) MSDN Magazine - July 2008 - Office Space (Page 43) MSDN Magazine - July 2008 - Office Space (Page 44) MSDN Magazine - July 2008 - Office Space (Page 45) MSDN Magazine - July 2008 - Office Space (Page 46) MSDN Magazine - July 2008 - Office Space (Page 47) MSDN Magazine - July 2008 - Office Space (Page 48) MSDN Magazine - July 2008 - Office Space (Page 49) MSDN Magazine - July 2008 - Office Space (Page 50) MSDN Magazine - July 2008 - Cutting Edge (Page 51) MSDN Magazine - July 2008 - Cutting Edge (Page 52) MSDN Magazine - July 2008 - Cutting Edge (Page 53) MSDN Magazine - July 2008 - Cutting Edge (Page 54) MSDN Magazine - July 2008 - Cutting Edge (Page 55) MSDN Magazine - July 2008 - Cutting Edge (Page 56) MSDN Magazine - July 2008 - Cutting Edge (Page 57) MSDN Magazine - July 2008 - Data Services (Page 58) MSDN Magazine - July 2008 - Data Services (Page 59) MSDN Magazine - July 2008 - Data Services (Page 60) MSDN Magazine - July 2008 - Data Services (Page 61) MSDN Magazine - July 2008 - Data Services (Page 62) MSDN Magazine - July 2008 - Data Services (Page 63) MSDN Magazine - July 2008 - Data Services (Page 64) MSDN Magazine - July 2008 - Data Services (Page 65) MSDN Magazine - July 2008 - Data Services (Page 66) MSDN Magazine - July 2008 - Data Services (Page 67) MSDN Magazine - July 2008 - Data Services (Page 68) MSDN Magazine - July 2008 - Data Services (Page 69) MSDN Magazine - July 2008 - ADO.NET (Page 70) MSDN Magazine - July 2008 - ADO.NET (Page 71) MSDN Magazine - July 2008 - ADO.NET (Page 72) MSDN Magazine - July 2008 - ADO.NET (Page 73) MSDN Magazine - July 2008 - ADO.NET (Page 74) MSDN Magazine - July 2008 - ADO.NET (Page 75) MSDN Magazine - July 2008 - ADO.NET (Page 76) MSDN Magazine - July 2008 - ADO.NET (Page 77) MSDN Magazine - July 2008 - Data and WPF (Page 78) MSDN Magazine - July 2008 - Data and WPF (Page 79) MSDN Magazine - July 2008 - Data and WPF (Page 80) MSDN Magazine - July 2008 - Data and WPF (Page 81) MSDN Magazine - July 2008 - Data and WPF (Page 82) MSDN Magazine - July 2008 - Data and WPF (Page 83) MSDN Magazine - July 2008 - Data and WPF (Page 84) MSDN Magazine - July 2008 - Data and WPF (Page 85) MSDN Magazine - July 2008 - Data and WPF (Page 86) MSDN Magazine - July 2008 - Data and WPF (Page 87) MSDN Magazine - July 2008 - Data and WPF (Page 88) MSDN Magazine - July 2008 - Data and WPF (Page 89) MSDN Magazine - July 2008 - Data and WPF (Page 90) MSDN Magazine - July 2008 - Transactions (Page 91) MSDN Magazine - July 2008 - Transactions (Page 92) MSDN Magazine - July 2008 - Transactions (Page 93) MSDN Magazine - July 2008 - Transactions (Page 94) MSDN Magazine - July 2008 - Transactions (Page 95) MSDN Magazine - July 2008 - Transactions (Page 96) MSDN Magazine - July 2008 - Transactions (Page 97) MSDN Magazine - July 2008 - Transactions (Page 98) MSDN Magazine - July 2008 - Transactions (Page 99) MSDN Magazine - July 2008 - Transactions (Page 100) MSDN Magazine - July 2008 - Transactions (Page 101) MSDN Magazine - July 2008 - Transactions (Page 102) MSDN Magazine - July 2008 - Transactions (Page 103) MSDN Magazine - July 2008 - Transactions (Page 104) MSDN Magazine - July 2008 - WCF P2P (Page 105) MSDN Magazine - July 2008 - WCF P2P (Page 106) MSDN Magazine - July 2008 - WCF P2P (Page 107) MSDN Magazine - July 2008 - WCF P2P (Page 108) MSDN Magazine - July 2008 - WCF P2P (Page 109) MSDN Magazine - July 2008 - WCF P2P (Page 110) MSDN Magazine - July 2008 - Test Run (Page 111) MSDN Magazine - July 2008 - Test Run (Page 112) MSDN Magazine - July 2008 - Test Run (Page 113) MSDN Magazine - July 2008 - Test Run (Page 114) MSDN Magazine - July 2008 - Test Run (Page 115) MSDN Magazine - July 2008 - Test Run (Page 116) MSDN Magazine - July 2008 - Security Briefs (Page 117) MSDN Magazine - July 2008 - Security Briefs (Page 118) MSDN Magazine - July 2008 - Security Briefs (Page 119) MSDN Magazine - July 2008 - Security Briefs (Page 120) MSDN Magazine - July 2008 - Security Briefs (Page 121) MSDN Magazine - July 2008 - Security Briefs (Page 122) MSDN Magazine - July 2008 - Foundations (Page 123) MSDN Magazine - July 2008 - Foundations (Page 124) MSDN Magazine - July 2008 - Foundations (Page 125) MSDN Magazine - July 2008 - Foundations (Page 126) MSDN Magazine - July 2008 - Foundations (Page 127) MSDN Magazine - July 2008 - Foundations (Page 128) MSDN Magazine - July 2008 - Foundations (Page 129) MSDN Magazine - July 2008 - Foundations (Page 130) MSDN Magazine - July 2008 - .NET Matters (Page 131) MSDN Magazine - July 2008 - .NET Matters (Page 132) MSDN Magazine - July 2008 - .NET Matters (Page 133) MSDN Magazine - July 2008 - .NET Matters (Page 134) MSDN Magazine - July 2008 - .NET Matters (Page 135) MSDN Magazine - July 2008 - {End Bracket} (Page 136) MSDN Magazine - July 2008 - {End Bracket} (Page Cover3) MSDN Magazine - July 2008 - {End Bracket} (Page Cover4)
For optimal viewing of this digital publication, please enable JavaScript and then refresh the page. If you would like to try to load the digital publication without using Flash Player detection, please click here.