Community-Credit.com
|
NonProfitWays.com
|
SOAPitstop.com
Skin:
Fiery Red
Mello Blue
Purple Passion
The Green Stuff
Grey Flannel
User: Not logged in
Hot Links
Home
Newsletter Signup
XSLT Library
Latest XML Blogs
Featured Examples
Presentations
Featured Articles
Book Chapters
Training Courses
Events
NewsGroups
Menu
Discussions
Examples
Tutorials
Tools
Articles
Resources
Websites
My Pitstop
Sign In
My Profile
My Articles
My Examples
My Favorites
My Resources
Add a Resource
Logout
HeadGeek
About Me
My Blog
HeadGeek Articles
Talking Portfolio
Resume
Pictures
World Trip Pics
Articles
ADO.NET (24)
RDF (28)
WebService (223)
XMLHTTP (3)
Database (26)
RSS (29)
WML (95)
XMPP (9)
Debugging (29)
SAX (56)
WSDL (80)
XPath (78)
DIME (14)
Schema (45)
XAML (5)
XPointer (12)
DOM (56)
SMIL (38)
XBRL (64)
XQL (24)
DTD (23)
SOA (8)
XForms (92)
XQuery (72)
ebXML (56)
SOAP (135)
XHTML (111)
XSchema (30)
Flash (12)
SQL (16)
XLL (1)
XSL (423)
Java (76)
SQLXML (141)
XML (776)
XSL-FO (28)
MathML (11)
SVG (56)
XML.NET (86)
XSQL (6)
Oracle (29)
VoiceXML (82)
XMLA (1)
XUL (13)
Pattern (3)
WebDAV (17)
Total Articles: 3,242
xml.net Articles
Prev
Next
1
2
3
4
5
Revisiting Converting a Recordset to XML
There have been several articles on 4Guys on retrieving XML from an ADO Recordset. Scott Mitchell's article Creating a Function to Stream a Recordset to XML examined how to use the MSXML COM components to convert a Recordset into an XML string. David O'Neill extended Scott's article in Increasing ConvertRStoXML() Performance and, in Simplifying ConvertRStoXML() and Transforming With XSL, looked at how to simplify the entire process by using an XSL stylesheet.
Type: XML.NET #Views: 305 Category: Article
Adding XML 1.1 to a Java Application
XML 1.1 is fairly controversial: it just adds some niche features that most people don't need. We recently added some XML 1.1 support to Topologi's XML editor; I was surprised by how straightforward it was, but also perhaps premature.
Type: XML.NET #Views: 242 Category: Article
.NET for Java Developers: Processing XML
The .NET Framework has built-in support for XML processing. Discover how to use XML in .NET and what these benefits can do for you.
Type: XML.NET #Views: 197 Category: Article
Creating Dynamic ASP.NET Server Controls Using XML
One of the advantages of the XML/XSLT combination is the ability to separate content from presentation. A data source can return an XML document, then by using an XSLT, the data can be transformed into whatever HTML is needed, based on the data in the XML document. The release of ASP.NET changes this picture somewhat.
Type: XML.NET #Views: 314 Category: Article
Mapping XML to C# objects using reflection
Nowadays XML is the de facto standard for exchanging data between different systems and platforms, so providing a mechanism that allows us to import XML is very useful. In this case study, Giuseppe Naccarato will be using the XmlReader object and reflection to build a powerful general-purpose component for mapping XML to C# objects.
Type: XML.NET #Views: 390 Category: Article
Building a Generic Report Engine using SQL Server 2000, XML and XSLT in ASP.NET
Taking advantage of both the new set of classes introduced by .NET to manage XML and SQL Server 2000 XML features, Carlos Walzer will explain how to create a generic aspx page to add reporting capabilities to an ASP.NET site. This reporting aspx page is the result of combining System.Xml.XmlTextReader, XSLT, streams, and stored procedures that return XML using the FOR XML clause.
Type: XML.NET #Views: 342 Category: Article
Sarvega Announces Integration of XML Guardian Gateway and Accelerator Appliances with CA’s WSDM and
Sarvega™, Inc., the leading provider of high-performance XML networking solutions, announced today the integration of its XML Guardian™ Gateway with Web Services Distributed Management (WSDM) from Computer Associates International, Inc. (CA), providing customers a comprehensive solution for processing, securing and managing XML-based Web Services. Using CA’s new WSDM 3.1 Observer Development Kit (ODK), integration between the two products will deliver native Web services management capabilities from within the XML Guardian Gateway.
Type: XML.NET #Views: 255 Category: Article
Code Generation in the .NET Framework Using XML Schema
Learn the difference between typed datasets and classes generated by the xsd.exe tool, as well as how to extend this code generation process by reusing the infrastructure classes supporting it, while remaining compatible with the XmlSerializer.
Type: XML.NET #Views: 294 Category: Article
.NET Tools for Working with XML
.NET provides a powerful set of classes for working with XML directly. This article provides an overview of the most important of these classes, and some examples of what you can do with them.
Type: XML.NET #Views: 195 Category: Article
Generating XML from SQL database
This sample shows how you can obtain a Dataset from (in this case) a SQL Server database, and then write it out to an XML Document. As an "Extra Added Bonus(tm)", it can show you how to write the schema as well. The SQL Server database in question is the venerable and useful Northwind database.
Type: XML.NET #Views: 304 Category: Article
XML as Middle Tier
There is always been a need that there will be an intelligent middle Layer between Database Server and the UI Code. There are many ways but one fantastic approach came in picture with the XML. There are rich classes in System.XML which make it pretty simple and effective. Here i had made a similar application where I am solving two purpose. One thing is still the things has not come as Code Behind Approach in case of Mobile Forms and whatever till now we had done is not recognized under that approach.
Type: XML.NET #Views: 279 Category: Article
.NET Beta 2 and Navigation in XML Documents
.NET Beta 2 was released yesterday at tech-ed, 2001, Atlanta. Many things have been changed in Beta 2 since Beta 1. In this article, I'll cover changes in XmlNavigator class replaced with XPathNavigator.
Type: XML.NET #Views: 288 Category: Article
XML Stream Project
I have developed a C# component that converts objects to an XML stream and vice versa. The main .NET focus is on System, System.Reflection and System.XML assemblies. The user has access to a default constructor and four public methods; two methods to create an XML stream or file from an object and two that creates an object from from an XML file or stream
Type: XML.NET #Views: 269 Category: Article
Mobile Fun with XML
Here is something really wonderful in Mobile field .This example is for authenticating the Mobile Users against his settings stored in XML file. This is really good where all the ease of XML is applied. Function open the XML file and particular node data validate it against user inputs and do the specified.
Type: XML.NET #Views: 283 Category: Article
Creating Excel XP spreadsheets by using .NET and XML
Excel XP has a cool feature related to XML as the product can easily read and write properly-structured XML documents, run web queries against properly-structured XML data sources and save entire workbooks as XML spreadsheets. This article demonstrates one view to the utilization of this feature in .NET, namely creating a basic spreadsheet that has formulas.
Type: XML.NET #Views: 347 Category: Article
ASP.NET & Databases Part 5
This part takes a look at the role that XML data plays in .NET and how we can use XML data as a datasource.
Type: XML.NET #Views: 257 Category: Article
Using ADO .NET - First Principles
One of the biggest differences between DataSet and the old Recordset is that data in ADO.NET is transported in XML format. That makes it a structured text document that can be read by anyone on any platform. This makes DataSet "interoperable" between a lot of computers - Microsoft and non-Microsoft since XML is an international and vendor neutral standard. After you create an XML document using methods provided by DataSet, you can parse it in .NET programmatically using the System.Xml.XmlDocument object.
Type: XML.NET #Views: 310 Category: Article
Viewing and Writing XML Data With ADO.NET DataSets
Based on a real-world project, this article shows how to handle XML data in .NET using C# DataSets and DataViews. The article presents, step by step, how to bind, read, and view XML data and generate graphical reports with the built-in Crystal Reports engine. The article puts special emphasis on XML standardization and interoperability issues experienced during the project, and presents workarounds for existing limitations.
Type: XML.NET #Views: 377 Category: Article
How to Bind Nested XML to a Repeater Control with Container.DataItem
The container.DataItem is an easy-to-use method to bind XML to a control. You can use a repeater, list control, or any other control to bind the XML. If you have have worked with XML and a repeater control, you know what I am talking about. In this short "how to," I will show you how you can bind a nested XML element to a repeater control. But, first of all, let's see an example where we bind a simple XML to a repeater control.
Type: XML.NET #Views: 480 Category: Article
XML Comments, Late-bound COM, and More
The C# compiler is able to extract XML comments from C# source files. If at compile time, the /doc command-line option (or the equivalent option in the Visual Studio® .NET IDE) is used to specify a target documentation file, all of the comments are extracted from the source files and are written in an XML format to the target file. Visual Studio .NET can then use this file to display IntelliSense® when the XML file is in the same directory as the compiled assembly (the documentation file must also be named the same as the assembly, with a .xml extension). Both the Visual C++® and Visual Basic® compilers will support this feature in Visual Studio 2005.
Type: XML.NET #Views: 282 Category: Article
Prev
Next
1
2
3
4
5
Featured Products
Fans of "The Office"
Dwight Bobbleheads are here!
“It's me! I'm the bobblehead! Yes!”
Advertise on XMLPitstop
Our Sponsors
Advertise on XMLPitstop
Partners
Friends
EggHead Cafe
Web Servicee development
DotNetSlackers
hp printer refills
online fax services
conference call
internet fax
chicago web design
Alojamiento de Web
Cheap Web Hosting
License Plate Recognition System
Emporio armani sunglasses
Video Surveillance
VoIP Internettelefonie DE
Statistics
3,833 Total Members
58 members(last 30 days)
8 members(last 7 days)
0 members(today)
1,937 Total Discussions
2 Posts(last 30 days)
0 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,084 Total Resources
2 Resources(last 30 days)
0 Resources(last 7 days)
0 Resources(today)
David Silverlight's XMLPitstop.com
| 2801 Florida Ave #225|Miami, FL 33133|Ph:305-447-1139