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

 


Help: OASIS Mailing Lists Help | MarkMail Help

 


 

   ANN: DATAX 1.0beta (DATA Exchange in XML) Library

[ Lists Home | Date Index | Thread Index ]
  • From: David Megginson <david@megginson.com>
  • To: XMLDev list <xml-dev@ic.ac.uk>
  • Date: Mon, 23 Aug 1999 14:05:15 -0400 (EDT)

As announced Friday at the XML Developers' Conference in Montreal,
there is now a beta version of the DATAX library in Java available at
the following location:

  http://www.megginson.com/DATAX/

(The development of this library was funded by Muze,
http://www.muze.com/)

DATAX is a very simple set of interfaces for representing entities
(resources/objects) and their attributes (properties) and
relationships (references/links).  The library includes a default,
in-memory implementation, together with very efficient classes for
writing to and reading from RDF documents.

DATAX and RDF massively simplify the task of exchanging information
about things and their properties and relationships in XML; importing
an RDF document, for example, requires only one line of code:

  EntitySet entities = new RDFReader().read("mydata.xml");

You can then use the standard Java2 collections interface to iterate
through the entities (objects) read:

  Iterator it = entities.iterator();
  while (it.hasNext()) {
    Entity e = (Entity)it.next();
    System.out.println("The entity's identifier is " + e.getId());
    System.out.println("The entity's class is " + e.getClassId());
  }

It's equally simple to iterate through an entity's properties:

  Iterator it2 = e.iterator();
  while (it2.hasNext()) {
    Property p = (Property)it2.next();
    switch (p.getType()) {
      case Property.ATTRIBUTE:
        System.out.println("Literal: " + p.getName() + '=' + p.getValue());
        break;
      case Property.RELATIONSHIP:
        System.out.println("Link: " + p.getName() + '=' + p.getValue());
        break;
    }
  }

There are several query methods available as well.

The beta version includes source code but does not yet have an
explicitly open source license -- in particular, you have to agree
that any bug reports you submit can be merged back into the code base.
There will be a proper open-source license for the 1.0 final release
this fall.


Enjoy!


All the best,


David

-- 
David Megginson                 david@megginson.com
           http://www.megginson.com/

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 (un)subscribe, mailto:majordomo@ic.ac.uk the following message;
(un)subscribe 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