Community-Credit.com | NonProfitWays.com | SOAPitstop.com   Skin:   
      User: Not logged in 
Home
Newsletter Signup
XSLT Library
Latest XML Blogs
Featured Examples
Presentations
Featured Articles
Book Chapters
Training Courses
Events
NewsGroups
 
Discussions
Examples
Tutorials
Tools
Articles
Resources
Websites
 
Sign In
My Profile
My Articles
My Examples
My Favorites
My Resources
Add a Resource
Logout
 
About Me
My Blog
HeadGeek Articles
Talking Portfolio
Resume
Pictures
World Trip Pics

Prev Next
1 2 3 4 5 6
 
Rant Continued: Avoiding the DOM?
I agree that one of the downfalls of the current .NET Web service implementation is that it kind of shoe horns you into using the DOM to deal with XML when you might prefer to use an XmlReader/Writer or some other XML api. So an advantage of passing XML as a string is that you can load the string into an XmlReader and avoid the overhead of loading up an instance of a DOM. This idea has some merit in my mind, not a ton, but some.

Type: XML.NET  #Views: 307  Category: Resource    

Rant: Don't return XML in string variables!
Read this article to know why you should never return a XML string.

Type: XML.NET  #Views: 365  Category: Article    

How to return well-formed XML from WebServices without the DOM: from XmlReader and XPathNavigator
Recently, Matt Powell wrote about returning XML from webservices, and I certainly agree with him that returning it as an opaque string is really bad. Later on, Matevz Gacnik suggested a couple points to consider when to choose one or the other. Matt continued his rant this time tackling at the heart of the problem: why do you need to load a full-blown DOM just to get the nice XML returned from the webservice? At this point, I felt I should kick in.

Type: XML.NET  #Views: 302  Category: Article    

Dates in XML Schemas: Specifying your own date format?
This topic came up in the win_tech_off_topic list, and it caught my attention. The concept is that specifying a date in your XML document that does not conform to ISO 8601 format cannot be validated as a date type, but rather you must contrive your own simple type. For processors that use the post-schema validation Infoset (PSVI) for strong typing, this presents some non-obvious problems.

Type: XML.NET  #Views: 359  Category: Resource    

Creating an XML-Based Message Broker in .NET
Learn how to use .NET to create a simple XML-based message broker application.

Type: XML.NET  #Views: 180  Category: Article    

NET tools for working with XML
A lot of people associate the .NET framework with XML, and for good reason. .NET uses XML behind the scenes to implement many of its development tools, such as SOAP and Web services. Beyond that, however, .NET provides a powerful set of classes for working with XML directly. Whatever you need to do with XML—sequential or random access, validation, transforms, or output—the .NET Framework provides you with tools that are not only powerful but easy to use.

Type: XML.NET  #Views: 296  Category: Article    

Elements in XML
Last week we learned about how to use attributes in your XML elements, but what exactly is an XML element? In a nutshell, elements are the building blocks of markup languages.

Type: XML.NET  #Views: 162  Category: Article    

Document-centric.NET Article on XML.com
XML.com recently ran an article entitled Document-Centric .NET, that highlights the various technologies for working with XML that exist in the .NET Framework. The article provides a good high level overview of the various options you have for processing XML in the .NET Framework. The article includes an all important caveat which I wish more people knew about and which I keep wanting to write an article about but never get around to doing.

Type: XML.NET  #Views: 327  Category: Resource    

Parse XML Documents Efficiently
The .NET platform offers several APIs you can use to parse XML documents, including forward-only, DOM, XPath, and XML serialization APIs. Each API has a distinct set of strengths and weaknesses that you should understand before starting any project that involves XML. I'll examine the API exposed by the XPathNavigator class located within the System.Xml.XPath namespace. XPathNavigator isn't as fast as the forward-only API provided by the XmlTextReader or as full-featured as the DOM, but it can be quite useful in applications that need the ability to traverse an XML document's hierarchy along a variety of axes from descendant to child to ancestor.

Type: XML.NET  #Views: 382  Category: Article    

Loading and Binding XML in a DataSet
This example demonstrates the basics of loading XML into a DataSet. DataSet methods such as ReadXml(), GetXml() and GetXmlSchema() are called and the output of the methods is written to an ASP.NET page. The DataSet is then bound to a DataGrid.

Type: XML.NET  #Views: 1195  Category: Example    

Take Advantage of External XML Schemas with ASP.NET
Over the years, many industry-standard XML schemas and dialects have been developed. These industry-specific schemas embrace the original purpose of XML and are extremely valuable in promoting and supporting B2B interaction. ASP.NET Web Services do not allow developers to directly reference external schemas from within their XML Web Services interface (the WSDL file), but this article demonstrates how to build an external schema framework as an extension to ASP.NET to enable you to reference external schemas within your XML Web Service interface.

Type: XML.NET  #Views: 264  Category: Article    

Using the ASP.NET XML Server Control
This article describes how to leverage the built-in ASP.NET XML Server Control to easily perform XML operations within your ASP.NET Web pages.

Type: XML.NET  #Views: 271  Category: Article    

Using the XSD Inference Utility
This article discusses the Microsoft XSD Inference utility, which simplifies the task of writing XML Schema by automatically generating schemas from instance documents. The inferred schema can then be refined with related document instances so that it can be used to describe and validate a whole class of XML documents.

Type: XML.NET  #Views: 290  Category: Article    

Displaying Hierarchical XML Data of an Arbitrary Depth Using XSLT
This article, by Scott Mitchell, examines how to use XSLT to display an XML document that contains a hierarchical structure with an arbitrary depth. For example, consider an XML document that models the folders and files in a computer's file system. There might be a element, which has zero to many elements. Each element, in turn, may have zero to many elements as well (i.e., subfolders), as well as zero to many elements. In this article we'll look at how to use XSLT to display such an XML file recursively.

Type: XML.NET  #Views: 206  Category: Article    

XML Serialization in ASP.NET
In the past, maintaining the state of an object in ASP often required some very inventive and painstaking code. In the brave new world of .NET, however, Object Serialization offers us a comparatively easy way to do just that, as well as some other useful tasks.

Type: XML.NET  #Views: 276  Category: Article    

Reading, Storing and Transforming XML Data in .NET
This article illustrates a mixture of common .NET methods for formatting and presenting in a readable fashion any XML document you may encounter. The latest hype with XML Web Services and even the .NET Framework itself relies on XML as its backbone, therefore this is no light matter.

Type: XML.NET  #Views: 277  Category: Article    

Bind a Datalist to a Remote XML File
One of the most common methods of binding data to a datalist is using a datareader or dataset, in this article we cover binding to a remote XML data file.

Type: XML.NET  #Views: 309  Category: Article    

Introducing ADO.NET and the Typed DataSet
Thom Robbins explains how DataSet object features can be combined with XML to create a new type of object called the typed DataSet, which simplifies the task of data navigation.

Type: XML.NET  #Views: 175  Category: Article    

Customizing the VBCommenter PowerToy
Learn how to customize the VBCommenter PowerToy to provide the same VS .NET XML code commenting and automated code documentation functionality afforded to C# developers.

Type: XML.NET  #Views: 376  Category: Article    

Create a VB.NET Database/Xml-Enabled Self-Cacheing Tooltip DropDownList ServerControl
About a year ago, I got on this ASP.NET ServerControl kick. I read the Wrox book on ASP.NET Server Controls, I literally devoured everything I could find that was written about them, I read Susan Warren's excellent tutorial. In the process, I learned a great deal about ServerControls, and wrote three or four really good ones on my own. This particular control was my effort to cure some of the obvious deficiencies in the DropDownList, while adding a few neat features that I believed would be useful. The result is my "DbListBox" control, and I present it here.

Type: XML.NET  #Views: 387  Category: Article    

Prev Next
1 2 3 4 5 6


Fans of "The Office"
Dwight Bobbleheads are here!

  “It's me! I'm the bobblehead! Yes!”



Advertise on XMLPitstop

Advertise on XMLPitstop


EggHead Cafe
Web Servicee development
DotNetSlackers
Discount ink
it outsourcing
online fax service
UK conference call service
chicago web design
Registro de Dominios
Domain Names
Car News
Versace sunglasses
Video Surveillance
Exchange Hosting

3,349 Total Members
414 members(last 30 days)
92 members(last 7 days)
0 members(today)

1,929 Total Discussions
7 Posts(last 30 days)
3 Posts(last 7 days)
0 Posts(today)

47,487 Total Blog Posts
0 Blogs(last 30 days)
0 Blogs(last 7 days)
0 Blogs(today)

8,699 Newsgroup Posts
0 Posts(last 30 days)
0 Posts(last 7 days)
0 Posts(today)

14,077 Total Resources
2 Resources(last 30 days)
1 Resources(last 7 days)
0 Resources(today)


 

David Silverlight's XMLPitstop.com| 2801 Florida Ave #225|Miami, FL 33133|Ph:305-447-1139