[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: XML-aware programming language?


scheme xml
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




PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
 

Stylus Studio has published XML-DEV in RSS and ATOM formats, enabling users to easily subcribe to the list from their preferred news reader application.


Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website. they were not included by the author in the initial post. To view the content without the Sponsor Links please click here.

Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.