DotNetShoutout - Stories tagged with XML
7
Shouts

Web 2.0 | Html screen scraping with HtmlAgilityPack Library

published 999 days, 18 hours, 54 minutes ago posted by farooqkaiserfarooqkaiser 1000 days, 11 hours, 28 minutes ago
Sunday, August 29, 2010 2:59:30 PM GMT Saturday, August 28, 2010 10:25:36 PM GMT
What is Screen Scraping ? Screen scraping is a process that reads any webpage and extract data from html tags. In this article, i will examine how to scrape a given web page using htmlagilitypack library. It is a .NET code library that allows you to parse "out of the web" HTML files. It can be downloaded @ http://htmlagilitypack.codeplex.com/ In this Tutorial, i will read my own web site http://savebigbucks.ca that offers daily deals in Canada. Here is code snippet that reads the web page. 1:string... (more)
category: Web Dev | clicked: 10 | comment | | source: www.fairnet.com
tags: .NET, C#, XML, screen scraping
9
Shouts

Loading a static XML file to your Windows Phone/Silverlight App - Chery lws

published 999 days, 18 hours, 54 minutes ago posted by jantujantu 1000 days, 16 hours, 23 minutes ago
Sunday, August 29, 2010 2:59:30 PM GMT Saturday, August 28, 2010 5:30:54 PM GMT
So I think I’ve mentioned before I have been working on a Windows Phone 7 application. It’s been a real learning experience as oftentimes as a writer, I get to know my feature areas very well, but don’t create full-blown applications using several features. How to load a static xml file into my application is one of the things I’ve recently learned. (more)
category: How To | clicked: 0 | comment | | source: blogs.msdn.com
tags: XML, Windows Phone, Linq
7
Shouts

Entity Framework 4 “Code-First” - Custom Database Schema Mapping - ScottGu's Blog

published 1035 days, 16 hours, 43 minutes ago posted by rajuraju 1036 days, 23 hours, 10 minutes ago
Saturday, July 24, 2010 5:11:12 PM GMT Friday, July 23, 2010 10:44:15 AM GMT
Last week I blogged about the new Entity Framework 4 “code first” development option.  The EF “code-first” option enables a pretty sweet code-centric development workflow for working with data.  It enables you to:Develop without ever having to open a designer or define an XML mapping file Define model objects by simply writing “plain old classes” with no base classes required Use a “convention over configuration” approach that enables database persistence without explicitly configuring anything In last... (more)
category: How To | clicked: 2 | comment | | source: weblogs.asp.net
tags: XML, Code first, Entity Framework 4, ScottGu
8
Shouts

XML Serialization

posted by BlackWaspBlackWasp 1050 days, 12 hours, 10 minutes ago
Friday, July 09, 2010 9:43:37 PM GMT
With XML serialisation, the public state of objects can be converted into an XML document. Such XML information is often stored on disk to persist data for later use, or is transported over a network or the Internet to send messages between computers. (more)
category: How To | clicked: 0 | comment | | source: www.blackwasp.co.uk
tags: .NET, C#, XML
7
Shouts

Debugging MSBuild script with Visual Studio - The Visual Studio Blog

published 1050 days, 20 hours, 9 minutes ago posted by rajuraju 1051 days, 23 hours, 16 minutes ago
Friday, July 09, 2010 1:44:47 PM GMT Thursday, July 08, 2010 10:37:30 AM GMT
Back when we started 4.0 development, I polled readers of the MSBuild blog to find out what features were most important to them. Debugging was #1 which was very surprising to us. Thinking about it more, it makes sense. In our team we've become so proficient ourselves at reading the XML and making sense of logs that it's easy to forget how difficult it is – especially for someone new. John Robbins, debugging guru, also requested a Visual-Studio-integrated debugger. (more)
category: How To | clicked: 0 | comment | | source: blogs.msdn.com
tags: XML, Debugging, Visual Studio
9
Shouts

DotNetRocks - Show #573 - James Kovacs on psake

published 1051 days, 20 hours, 20 minutes ago posted by rajuraju 1052 days, 23 hours, 58 minutes ago
Thursday, July 08, 2010 1:33:51 PM GMT Wednesday, July 07, 2010 9:55:43 AM GMT
As Carl and Richard hang out in their comfy chairs broadcasting to your cell phone, James Kovacs talks about psake, his Powershell-based build tool. Other topics include XML readability, designing XAML graphically, JQuery, the functionalness of Javascript, and the potential success of HTML 5. This show was recorded live during the .NET Rocks! Live Weekend. See the links below for more information. (more)
category: Podcast | clicked: 2 | comment | | source: www.dotnetrocks.com
tags: DotNetRocks, XML, XAML, HTML 5
8
Shouts

XQuery Lab 62 – Revisiting simple TSQL SELECT operations using XQuery - Jacob's Blog

published 1051 days, 20 hours, 20 minutes ago posted by jacobsebastianjacobsebastian 1053 days, 1 hour, 32 minutes ago
Thursday, July 08, 2010 1:33:51 PM GMT Wednesday, July 07, 2010 8:22:00 AM GMT
This post aims to be a quick reference source for the beginners and shows a few simple SELECT examples. (more)
category: Data | clicked: 0 | comment | | source: beyondrelational.com
tags: xquery, XML, TSQL, SQLServer
4
Shouts

XQuery Lab 61 – Writing a Recursive CTE to process an XML document - Jacob's Blog

published 1056 days, 20 hours, 9 minutes ago posted by jacobsebastianjacobsebastian 1057 days, 1 hour, 54 minutes ago
Saturday, July 03, 2010 1:45:14 PM GMT Saturday, July 03, 2010 7:59:19 AM GMT
In this XQuery Lab, we will see how to write a recursive CTE to process all the elements and attributes of an XML Document. In XQuery Lab 39, we saw an example that generated the fully qualified path to all the elements and attributes of an XML document using OPENXML(). In this lab, let us look at a new version of the same code using XQuery (instead of OPENXML). (more)
category: Data | clicked: 1 | comment | | source: beyondrelational.com
tags: xquery, XML, TSQL, SQLServer, xquery labs
8
Shouts

XQuery Lab 60 – Executing dynamic query strings with OPENXML() - Jacob's Blog

published 1061 days, 21 hours, 46 minutes ago posted by jacobsebastianjacobsebastian 1062 days, 6 hours, 40 minutes ago
Monday, June 28, 2010 12:07:55 PM GMT Monday, June 28, 2010 3:14:03 AM GMT
This installment of XQuery Lab shows how to execute dynamic queries that contain OPENXML() calls. We will see examples that use EXEC() and sp_executesql. (more)
category: Data | clicked: 0 | comment | | source: beyondrelational.com
tags: xquery, OpenXML, XML, TSQL, SQLServer
7
Shouts

The Weekly Source Code 53 - "Get'er Done" Edition - XML in the left hand becomes HTTP POSTs in the right hand - Scott Hanselman

published 1061 days, 21 hours, 46 minutes ago posted by jantujantu 1063 days, 22 hours, 55 minutes ago
Monday, June 28, 2010 12:07:55 PM GMT Saturday, June 26, 2010 10:58:20 AM GMT
I wrote some code tonight in about ten minutes with a "Get'er Done" attitude. We all do that (I hope). It's one-time code that will solve a one-time problem. As such, it isn't always pretty, but it often is interesting.I've got this silly website called OverheardAtHome that is a collection of silly quotes and stories that my kids (and your kids) have said around the house. It was running on DasBlog (just like this blog) for the last year or more, but the sheer workflow of populating the site was gettin... (more)
category: How To | clicked: 0 | comment | | source: www.hanselman.com
tags: XML
8
Shouts

XQuery Lab 59 – OPENXML() and XML Namespace Declarations - Jacob's Blog

published 1062 days, 22 hours, 3 minutes ago posted by jacobsebastianjacobsebastian 1064 days, 23 hours, 13 minutes ago
Sunday, June 27, 2010 11:50:38 AM GMT Friday, June 25, 2010 10:40:43 AM GMT
Dealing with XML documents having namespace declaration is always very confusing when using OPENXML() function. This post explains how to use OPENXML with XML documents having namespace declarations. (more)
category: Data | clicked: 1 | comment | | source: beyondrelational.com
tags: xquery, OpenXML, XML, SQLServer
8
Shouts

XQuery Lab 57 – Getting Started with OPENXML

published 1067 days, 23 hours, 26 minutes ago posted by jacobsebastianjacobsebastian 1068 days, 20 hours, 23 minutes ago
Tuesday, June 22, 2010 10:27:47 AM GMT Monday, June 21, 2010 1:30:38 PM GMT
This post intends to help you get started with OPENXML() function. OPENXML() lets you shred an XML document or fragment into a result set. (more)
category: Data | clicked: 0 | comment | | source: beyondrelational.com
tags: xquery, XML, SQLServer
3
Shouts

The future of Document management is p2p, tag-based with real-time on-demand database merging?

published 1071 days, 20 hours, 20 minutes ago posted by TabblesTabbles 1072 days, 16 hours, 26 minutes ago
Friday, June 18, 2010 1:34:10 PM GMT Thursday, June 17, 2010 5:28:07 PM GMT
...Basically, instead of loading only one database, Tabbles would load several databases, one for each user, have them all in memory at the same time, and whenever a query was done (e.g.: showing the content of a tabble or a combination), Tabbles would query both the dbs and merge the results in real-time... (more)
category: Data | clicked: 0 | comment | | source: tabbles.net
tags: XML, tabbles, merge, Database, Document management
8
Shouts

XQuery Lab 56 – Inserting elements with UNICODE values - Jacob's Blog

published 1073 days, 23 hours, 11 minutes ago posted by jacobsebastianjacobsebastian 1075 days, 20 hours, 50 minutes ago
Wednesday, June 16, 2010 10:42:58 AM GMT Monday, June 14, 2010 1:03:55 PM GMT
This post explains how to write XML DML queries uisng XQuery in TSQL that deals with UNICODE character strings. (more)
category: Data | clicked: 0 | comment | | source: beyondrelational.com
tags: xquery, unicode, XML, SQLServer, Database, xml dml
3
Shouts

Adding schemaLocation attribute to XElement in LINQ to XML

posted by viperguynazviperguynaz 1083 days, 14 hours, 11 minutes ago
Sunday, June 06, 2010 7:42:31 PM GMT
Developer Ramblings in C# .NET Development Tips from Falcon Web Technologies Home Archive ContactLog inHome » .NET | WindowsAdding schemaLocation attribute to XElement in LINQ to XML3. June 2010by viperguynaz0 Comments The MSDN library has a good section on working with XML Namespaces in LINQ to XML. XML names are definitely a source of complexity in XML programming. An XML name consists of an XML namespace (also called ... (more)
category: Web Dev | clicked: 2 | comment | | source: falconwebtech.com
tags: XML, Linq
4
Shouts

SELECT * FROM XML - Jacob's Blog

published 1087 days, 30 minutes ago posted by jacobsebastianjacobsebastian 1087 days, 19 hours, 40 minutes ago
Thursday, June 03, 2010 9:23:17 AM GMT Wednesday, June 02, 2010 2:13:28 PM GMT
This post shows how to run a SELECT * kind of query on an XML document to see the elements, attributes, values and the XPath Expression of each element and attribute in the document. (more)
category: Data | clicked: 2 | comment | | source: beyondrelational.com
tags: xquery, XML, SQLServer
3
Shouts

Delimited String Tennis (Again)… The Final Volley? - SQL Server Community Blogs

published 1088 days, 23 hours, 13 minutes ago posted by jacobsebastianjacobsebastian 1090 days, 3 hours, 24 minutes ago
Tuesday, June 01, 2010 10:41:04 AM GMT Monday, May 31, 2010 6:29:23 AM GMT
This is a continuation of my previous blog post, Delimited String Tennis Anyone?, which playfully talked about a virtual T-SQL Tennis match… a friendly rally back and forth between SQL Server MVP Adam Haines and myself in discussing methods of shredding comma-delimited strings in our blogs. (more)
category: Data | clicked: 0 | comment | | source: beyondrelational.com
tags: XML, SQLServer
6
Shouts

Make a Google Sitemap with Asp.Net C#

published 1101 days, 20 hours, 31 minutes ago posted by jphellemonsjphellemons 1102 days, 23 hours, 49 minutes ago
Wednesday, May 19, 2010 1:22:43 PM GMT Tuesday, May 18, 2010 10:04:49 AM GMT
step by step tutorial how to make a google sitemap in asp.net c# (more)
category: Web Dev | clicked: 3 | 1 comment | | source: www.jphellemons.nl
tags: C#, XML, google sitemap
5
Shouts

Effect compilation and Content PipeliXNA Game Studio 4.0ne automation in - Shawn Hargreves

published 1109 days, 18 hours, 40 minutes ago posted by jantujantu 1110 days, 19 hours, 1 minute ago
Tuesday, May 11, 2010 3:13:40 PM GMT Monday, May 10, 2010 2:52:56 PM GMT
Previous XNA versions included an Effect.CompileEffectFromSource method. We do not support runtime shader compilation on Xbox, so this was only available in the Windows framework, which could compile shaders targeting either Windows or Xbox. This factoring was problematic because:The API looked like part of the runtime framework, but was not available on all platforms.Our Windows redistributable had to include the Xbox sha... (more)
category: Smart Client | clicked: 0 | comment | | source: blogs.msdn.com
tags: API, XML, UI, XBox
3
Shouts

Xml Document Transforms (XDT) for any XML file in your project - Vishal Joshi

published 1110 days, 22 hours, 53 minutes ago posted by iftekharahmedamitiftekharahmedamit 1111 days, 19 hours, 13 minutes ago
Monday, May 10, 2010 11:01:12 AM GMT Sunday, May 09, 2010 2:41:03 PM GMT
There have been several requests floating around to be able to use XDTs (the technology behind Web.Debug.Config/Web.Release.Config) with other XML files within the project…  To make that feasible I wrote a XmlDocumentTransform.targets  file which can generically transform any XML file using the standard Web.Config Transformation syntax introduced with VS 2010… Learn more about XDT & Web.Config Transformation here… Now to get started first download XmlDocumentTransform.targets file from my Skydive… F... (more)
category: How To | clicked: 0 | comment | | source: vishaljoshi.blogspot.com
tags: Web Deployment Tool, VS, XML, Deployment, Visual Studio 2010, Visual Studio, VS 2010, VS2010