On CBSSports.com: Maxim presents daily Hometown Hotties
1 Resources for

dom & sax

  • Subscribe to this listing via:
  • RSS
  • Email

TechRepublic Resources

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

Additional Resources

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
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
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
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
Replacing a Node in a DOM Tree of an XML Document
It is often the case that a person may have two or more XML files which represent different parts of a complete DOM tree. He or she may have a DOM tree that has special reference nodes. These special reference nodes indicate where a new DOM subtree may be added....
Tags: Document Object Model, XML Document, XML, Software/Web Development, Web Development
White papers
Why does child DC resolve to fqdn of childdc.domain.dom?
I have a domain, domain.dom. There is a child domain, child.domain.dom, with a DC called childdc. when pinging childdc from within child domain, it resolves to childdc.child.domain.dom. If I ping it from a computer in the parent domain, it resolves to childdc.domain.dom. I can still ping...
Tags: rachilles@..., child domain
Discussion threads 2007-05-21
XML Support in Visual Basic 9
Programming against XML using the DOM API today is a bitch. The accidental complexity of working with the DOM is so high that many programmers are giving up on using XML altogether, cursing the hype that XML makes dealing with data simple, which no one who has actually written DOM...
Tags: Document Object Model, Microsoft Visual Basic, XML, Software/Web Development, Web Development
White papers 2005-10-26
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
Event Spy (xpi)
DOM Event Spy adds a context menu item to nodes in DOM Inspector's tree view that allows you to watch events that pass by the selected node. Note: You must have DOM Inspector installed to use Event Spy. This version is the first release on CNET Download.com.
Tags: Document Object Model, Jason Spiro, DOM Event Spy, XML, Software/Web Development, Web Development
Software downloads 2007-09-21
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
InspectThis (xpi)
Inspect the current element with the DOM Inspector. Adds an entry to the context menu to open the DOM Inspector on the selected element. Ideal for AJAX, DHTML and JavaScript work. Please note that the DOM Inspector must be installed. Select Developer Tools during custom setup of Firefox. This version...
Tags: Document Object Model, Laurens Mackay, XML, Software/Web Development, Web Development
Software downloads 2007-10-15
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
A DOM Tree Alignment Model for Mining Parallel Data From the Web
This paper presents a new web mining scheme for parallel data acquisition. Based on the Document Object Model DOM, a web page is represented as a DOM tree. Then a DOM tree alignment model is proposed to identify the translationally equivalent texts and hyperlinks between two parallel DOM trees. By...
Tags: Web, Document Object Model, XML, Software/Web Development, Web Development
White papers 2006-05-26
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
How to approach XML document size
This article originally appeared as an XML e-newsletter.By Brian SchaffnerXML documents come in a variety of formatsand sizes. Some can be as small as a few lines, while others may bemany megabytes. You may wonder if the size of your XML documentsreally matters. If performance is important, then the answer...
Tags: XML, XML document, Document Object Model, performance
Technical articles 2003-09-29
masked "forwarding" email?
Is it possible to apply masked web forwarding to an entire domain? For example, if I have domain.com and I want dom.com to point to it, that's fine for web pages and such... But if I have an email account a@domain.com, I want to be able to write an...
Tags: domain, e-mail
Q&A 2004-10-08
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
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
XML:DB native XML database API and its implementation in Apache Xindice
The XML:DB API is designed to enable a common access mechanism to native XML databases. The API enables the construction of applications to store, retrieve, modify and query data that is stored in an XML database. The API is described in terms of IDL, giving a freedom to implement it...
Tags: Storage, Databases, Peter V. Mikhalenko, API, Apache Software Foundation, database, XML, Document Object Model, XUpdate, DOM Document, XML:DB API, XML Database
Technical articles 2003-11-14
  • << Previous
  • page 1 of 1
  • Next >>


TechRepublic Power Checklist: Securing Windows XP
If you have just finished installing Windows XP and you think the work is done, you're wrong. Some of the most important steps to getting Windows XP u ...
Buy Now
Cisco IOS Command Chart (IOS v.12+)
Becoming proficient with Cisco equipment means remembering a whole new set of commands. These command charts give you a quick way to look up the needed IOS commands and switches when you need them.
Buy Now