We have developers with knowledge of these languages - Ruby , Python, .Net or Java. We are developing an application which will mainly handle XML documents. Most of the work is to convert predefined XML files into database tables, providing mapping between XML documents through database, creating reports from database etc. Which language will be the easiest and fastest to work with? (It is a web-app)
|
7
|
|||
|
|
|
A dynamic language rules for this. Why? The mappings are easy to code and change. You don't have to recompile and rebuild. Indeed, with a little cleverness, you can have your "XML XPATH to a Tag -> DB table-field" mappings as disjoint blocks of Python code that your main application imports. The block of Python code is your configuration file. It's not an We use Python, xml.etree and the SQLAlchemy (to separate the SQL out of your programs) for this because we're up and running with very little effort and a great deal of flexibility. source.py
model.py
builder_today.py One of many mapping configurations
loader.py
To make changes, you can correct a builder or create a new builder. You adjust the loader source to identify which builder will be used. You can, without too much trouble, make the selection of builder a command-line parameter. Dynamic imports in dynamic languages seem like overkill to me, but they are handy. |
||||||||||
|
|
|
ECMAScript handles XML pretty nicely using E4X ("ECMAScript for XML"). This can be seen in Adobe's latest version of ActionScript, version 3. I believe JavaScript 2 (to be released with Firefox 4, I think) will support E4X as well. Not sure about the support of the standalone JavaScript interpreters (i.e. Rhino, et al) of this, which is what matters most to you I suppose... But if it looks good to you, you can always look up their support for it (and report back to us :-)). See http://en.wikipedia.org/wiki/E4X#Example for a simple example. |
||
|
|
|
|
An interesting solution could be Ruby. Simply use XML->Object mappers and then use an object-relational-mapper (ORM) to put it inside a database. I had to do a short talk on XML Mapping with ruby, you could look at the slides and see what you like best: http://www.marc-seeger.de/2008/11/25/ruby-xml-mapping/ As for the ORM: Active Record or Datamapper should be the way to go |
||
|
|
|
|
For quick turnaround I've found Groovy very useful. |
||||
|
|
|
I'll toss in a suggestion for Hpricot, a popular Ruby XML parser (although there are many similar options). Example: Given the following XML:
You parse simply by:
It sounds like your application would be very fit for a Rails application, You could quickly prototype what you need, you've got direct interaction with your database of choice and you can output the data however you need to. Here's another great resource page for parsing XML with Hpricot that might help as well as the documentation. |
||
|
|
|
|
XSLTI suggest using XSLT templates to transform the XML into INSERT statements (or whatever you need), as required. This will result in a lot less code than doing it the long way round. |
||||||||
|
|
|
either C# or VB.Net using LiNQ to XML. LiNQ to XML is very very powerful and easy to implement |
||
|
|
|
|
In .NET, C# 3.0 and VB9 provide excellent support for working with XML using LINQ to XML: |
||
|
|
