Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


Re: [xml-dev] XML-aware programming language?

From: "Dmitry Lizorkin" <lizorkin@------.-->
To: <xml-dev@-----.---.--->
Date: 12/2/2004 9:48:00 AM
Hello!

> >  It
> > would be interesting to hear from the other side ...
>
> Well, no answer yet..... :-)

Well, here is the answer from the other side :-)

We develop the approach of XML processing with functional programming
language Scheme, the LISP dialect.

The idea of this approach is the representation of XML documents in the form
of Scheme nested lists. For example, the following piece of an XML document:

<tag attr1="value1" attr2="value2">
  <nested>Text node</nested>
  <empty/>
</tag>

is represented in the form of Scheme nested lists as follows:

(tag (@ (attr1 "value1") (attr2 "value2"))
  (nested "Text node")
  (empty)
)

The latter is both the illustrative external notation and the primary data
structure of the programming language Scheme.

XML documents represented as nested lists (we call this representation SXML)
can be naturally processed with a raft of Scheme list operations. XML
processing becomes simple, and impedance mismatch is minimized.

We already have the XML->SXML parser, XPath, XSLT and XLink processor
implemented in Scheme:
http://www.pair.com/lisovsky/xml/
http://okmij.org/ftp/Scheme/xml.html

We also provide the Scheme API in our native XML DBMS Sedna:
http://modis.ispras.ru/Development/sedna.htm

Best regards,
Dmitry


transparent
Print
Mail
Like It
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent