Sponsored White Papers, Webcasts, and Downloads
TechRepublic Resources
- Java & XML: Advanced SAX
- SAX is indeed named the Simple API for XML, it offers programmers much more than basic parsing and content handling. There is an array of settings that affect parser behavior, as well as several additional handlers for edge-case scenarios; if one needs to specify exactly how strings should be interned,...
- Tags: Java, O'Reilly Media Inc., SAX, XML, Software/Web Development, Web Development
- Book chapters 2006-12-01
- Everything you always wanted to know about SAX (and XmlReader)
- When you need to process XML documents, you must firstdecide whether to use DOM Document Object Model or SAX Simple API for XML, thetwo main XML APIs in use today. You can use either or both at the same timeto process XML documents, but DOM loads the document into memory...
- Tags: Richard Mansfield, SAX, Document Object Model, XML, XmlReader, XML document
- Technical articles 2004-07-12
- Discovering the joy of SAX in VB6
- Microsoft's XML Core Services, known as MSXML2, provides a useful XML toolkit that VB and COM developers can use in their applications. Find out how easy it is to parse XML in VB6 using Microsoft's SAX implementation.Microsoft’s XML Core Services, affectionately known as MSXML2, provides a useful XML toolkit that...
- Tags: XML, Microsoft development tools, Programming languages, Lamont Adams, Microsoft Corp., MSXML, Microsoft Visual Basic 6.0, SAX, parser
- Technical articles 2002-12-17
- Take a guided tour of XML support in .NET
- Learn your way around .NET's XML neighborhood. Here's a look at the Framework's various reader and writer classes.Much has been said about .NET’s use of XML, and unfortunately, a lot if it is hyperbole. Still, two things are undeniable: .NET puts an integrated set of XML tools into the programmer’s...
- Tags: XMLWriter class, Lamont Adams, XML, Document Object Model, Microsoft .NET, SAX
- Technical articles 2002-11-01
- A better way to parse XML documents in .NET
- The .NET Framework supports the XML DOM parsing model, but not the SAX model. .NET guru Leonardo Esposito tells you why this is actaully an improvement for parsing XML in .NET.Although always easy to transfer as flat files, XML documents need a parser to become really useful pieces of information....
- Tags: .NET, XML document, Microsoft .NET, Microsoft .NET Framework, Leonardo Esposito, XML reader, parser, XML, SAX
- Technical articles 2002-10-07
- Remedial XML: Learning to play SAX
- The Simple API for XML, or SAX, provides an alternative to parsing XML documents with DOM. Find out how SAX works in our continuing XML series.After using DOM to parse XML documents for any length of time, you will probably begin to notice that performance tends to suffer when you’re...
- Tags: Lamont Adams, SAX API, XML, Document Object Model, SAX
- Technical articles 2002-06-03
Additional Resources
- Deal With Errors in XML Parsing: Handle Errors in XML Parsing With SAX
- With the ease of XML parsing in the newer Java language APIs, from JAXP to JAXB to JAX-WS, XML parsing has become foundational to Java programming. But with the abstractions and higher-level APIs comes an apparent loss of control over the fine-grained interactions between a parser and the XML data....
- Tags: Java, XML, Software/Web Development, Web Development
- White papers 2008-07-22
- Max Payne 2: The Fall of Max Payne Mona Sax Drug War map (zip)
- In this map, Mona Sax and Max Payne are partners in the NYPD. You play Mona and you must fight your way through the map, saving all five hostages and making sure they escape.
- Tags: Partnership, Fall, Business Structures, Finance
- Software downloads 2004-06-17
- XML parsing Xerces
- I am in a rush to do a project in java , I am not much familiar with parsing xml files but I have to do this , I wonder if I should use SAX or DOM ?! which is better and simpler ?!and as well I wonder if any...
- Tags: DOM & SAX, XML, Document Object Model
- Q&A 2005-07-30
- Master essential techniques for crunching data in marked-up format: Parse XML using SAX, DOM, and XSLT
- Every day, programmers have to recycle legacy data, translate from one vendor's proprietary format into another's, check that configuration files are internally consistent, and search through web logs to see how many people have downloaded the latest release of their product. Although not glamorous, the data crunching techniques required...
- Tags: Technique, Document Object Model, XSLT, XML, Software/Web Development, Web Development
- Book chapters 2006-10-25
- Beginner's XML book for VB users?
- Hello,Just wondering if anyone knows of any good technical training books that teach XML concepts at a beginner's level (i.e., XML, XPATH, XSLT, DOM, SAX, DTD, etc.), but using a VB.NET/VB 6.0/VBScript platform, instead of Java/JavaScript/C++? Thanks(I got the XML beginner's book from the Wrox series, but since it...
- Tags: galahad04, Microsoft Visual Basic, programming, XML
- Q&A 2005-02-23
- Platinumloops V1 - Apple Loops for Garageband (zip)
- Over 150 Free Apple Loops and samples in Apple Loops format offered to you free courtesy of Platinumloops. This Apple Loops download pack contains samples of chillout bass loops, hip hop producer packs, jazz drums loops, heavy metal guitar and drum loops, slap bass, trumpets, sax and more. Offers only...
- Tags: Apple Inc., GarageBand
- Software downloads 2007-03-31
- Resolve custom XML entities with SAX and Java
- This article originally appeared as an XML e-newsletter.By Brian SchaffnerYou may find that your XML documents andtheir various grammars take on a vernacular of their own. As thisvernacular finds its way into your documents, you might need todescribe it in an abstract and reusable way. One solution is to usecustom...
- Tags: Java, XML, XML Entities, CustomEntity, XML document
- Technical articles 2003-09-29
- Learn the basics of Apache's Cocoon
- By Edward TittelIn a sense, it’s appropriate to describe Cocoon as an XML-based content management system because it provides a mechanism for describing the structure and semantics of Web information items the content, the relationships between and among such items and how they change over time their logic, and the...
- Tags: OPEN SOURCE, LanWrights, Inc., Apache Software Foundation, Apache Cocoon, XML
- Technical articles 2003-04-21
- Validating XML Documents Against XML Schema
- XML documents are increasingly being used as a format of data exchange. But for an XML document to be acceptable to different developers/users, the XML document should conform to a standard structure. XML Schema is an XML-based representation of the structure of an XML document. Through its support for datatypes...
- Tags: XML Schema, XML Document, XML, Software/Web Development, Web Development
- White papers
- Generating XML via Java
- Most attention in the XML world focuses on parsing XML. The generation of XML documents is an often overlooked but necessary development task. Discover various approaches to XML generation in this article.Most of the attention in the XML world focuses on parsing XML and walking an XML structure. The W3C...
- Tags: Java, Henri Yandell, Listing B, XML, Document Object Model
- Technical articles 2002-03-18
- Streaming APIs for XML Parsers: Java Web Services Performance Team
- Today, XML has emerged as a versatile and platform independent format for describing and delivering high-value solutions. Technologies like Web Services have been developed that can integrate existing business processes and resources and make them available over the Web by utilizing XML. To use this XML meaningfully in an application,...
- Tags: Java, Sun Microsystems Inc., API, XML Parser, XML, Software/Web Development, Web Development
- White papers 2005-08-01
- Process and parse XML with ease using Jakarta Digester
- Most of the time, parsing an XML document involves either programming a parser to sequentially traverse an XML document, taking different actions as it encounters different tags SAX or building a tree representation of the document in memory and using tree methods to navigate the tree's parent-child relationships DOM. The...
- Tags: XML Document, Jakarta Project, XML, Software/Web Development, Web Development
- Download resources 2007-01-22
- SQL/XML in JDBC Applications
- This paper explores different approaches for creating XML structures from SQL queries by comparing SQL/XML to custom-coded solutions using JDBC and SAX or DOM and to proprietary XML extensions from the database vendors. Many Java applications exchange data as XML, but store and query data using a JDBC connection to...
- Tags: JDBC, SQL, XML, Databases, Software/Web Development, Web Development, Enterprise Software, Software, Data Management
- White papers 2003-08-22
- Parse XML documents with JAXP
- This article originally appeared as an XML e-newsletter.By Brian SchaffnerThere are many ways to parse XML documentswith Java. You have options for parsing using DOM and SAX, whichare the standard parsing techniques. You also have the option touse the Java API for XML Processing JAXP. JAXP is...
- Tags: DocumentBuilder, DocumentBuilder class, DocumentBuilderFactory, parser, XML, JAXP, XML document, Document Object Model
- Technical articles 2003-10-01
- << Previous
- page 1 of 1
- Next >>