OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

 


 

   Re: SAX2: Parser interface (fragments)

[ Lists Home | Date Index | Thread Index ]
  • From: Stefan Haustein <stefan.haustein@trantor.de>
  • To: Don Park <donpark@docuverse.com>, "xml-dev@ic.ac.uk" <xml-dev@ic.ac.uk>
  • Date: Thu, 23 Dec 1999 15:00:51 +0100

> Any chance of adding parseFragment?  It could come in
> real handy for applications that primarily deals with
> fragments instead of documents.

In Java, I currently use a special reader that adds an additional root
element to the stream (see below). My life would become much easier if I
could tell the parser that it is reading a fragment (without root
element) only...

Vector streams = new Vector ();

streams.add (new ByteArrayInputStream ("<root>".getBytes ()));
streams.add (new FileInputStream (new File (path, "changes.log")));
streams.add (new ByteArrayInputStream ("</root>".getBytes ()));
                
parser.parse (new InputSource
              (new SequenceInputStream (streams.elements ())));

I have another fragment-related problem:

Imagine I have an xml parser for a particular type of content. Now, I
want to send this type of content, and for sending it is included in a
kind of "xml envelope". 

e.g.
<envelope>
  <sender>agent1</sender>
  <receiver>agent2</receiver>
  <content>
     <someRealContent/>
  </content>
</envelope>

Currently, the envelope handler delegates all content related events to
the content handler.  

It would be much nicer if I could switch the DocumentHandler by calling
"setDocumentHandler", and the documentHandler would switch back
automatically when back at the corresponding nesting level.  However,
the suggested semantics requires maintenance of a stack of
DocumentHandlers in the parser.

Best regards
 
Stefan

-- 
KJAVA AWT project: www.trantor.de/kawt
SAX-based access to WBXML and WML: www.trantor.de/wbxml

xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev@ic.ac.uk
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/ and on CD-ROM/ISBN 981-02-3594-1
To unsubscribe, mailto:majordomo@ic.ac.uk the following message;
unsubscribe xml-dev
To subscribe to the digests, mailto:majordomo@ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa@ic.ac.uk)






 

News | XML in Industry | Calendar | XML Registry
Marketplace | Resources | MyXML.org | Sponsors | Privacy Statement

Copyright 2001 XML.org. This site is hosted by OASIS