Christian Nagel's OneNotes

.NET Training, Consulting, Coaching - C#, Web Services, Enterprise Services, ASP.NET, Whidbey, Longhorn and More!

Affiliations

Books I've written

INETA UG Leaders

My Blogroll

Browse by Tags

All Tags » Data & XML (RSS)
Faster Transactions with Enterprise Services...
...if a single database (SQL Server 2005) is used - no DTC needed! Transaction Promotion and Delegation will be supported by Enterprise Services! More information in Paul Fallon's Blog Transaction Promotion and Delegation coming soon to ES Transactions...
Getting Data from Excel 2003
Lately I've posted about creating Word documents with XSLT . Office 2003 has another cool XML feature: I needed data from an Excel sheet in a special format for processing. With XML schemas this can be done very easily: Create an XML schema With the Excel...
Creating Word Documents with XSLT (Part 2 - Creating Tables)
With my last blog about creating Word documents with XSLT I've shown an example to do a very simple document. Here I'm showing how to create a table using Word. The same XML file as before is used: <?xml version="1.0" encoding="utf-8" ?> <Courses>...
Documentation that shows up in the XML Editor
The XML Editor of Visual Studio 2005 shows the elements that are allowed according to the XML Schema. The editor not only shows the elements and attributes that are possible where the cursor is positioned, it also shows some documentation about the elements...
Creating Word Documents with XSLT
Using the Office Schemas it is easy to create Microsoft Word 2003 documents. Let's start with this XML document: <?xml version="1.0" encoding="utf-8" ?> <Courses> <Course Number="MS-2524"> <Title>XML Web Services Programming<...
XSLT: Converting multiple elements to one attribute
I've received a question how to convert multiple XML elements to a values for a single attribute. Here is the information about how this can be done with XSLT. The XML source: <Article> <Head> <Title>.NET Enterprise Services</Title>...
ObjectSpaces and transparency
Andrew Conrad has some good notes about ObjectSpaces transparency and delay loading . Christian
ADO.NET 2.0 Features
Tim Sneath blogs about ADO.NET 2.0 features . Christian
ObjectSpaces - The Move from XPath to OPath
Matt Warren blogs about why the ObjectSpace team did the move from XPath to OPath: The Power of the Dot . Great post! I think ObjectSpaces is a great technology that will play an important role with enterprise applications. See my blog about Enterprise...
Filling DataSets with Multiple Tables
Filling a DataSet with multiple tables can be done by sending multiple requests to the database, or in a faster way: Multiple SELECT statements can be sent to the database server in a single request. The problem here is that the tables generated from...
More Posts