I am interested in hearing solution suggestions concerning running third party "logic". To avoid getting this question too bloated I will simplified some things.

The background

I need to convert plain text data (text file, HTML, XML, etc) into a specific XML-format.

Since the original data could be in different format, I obviously need different logic (to convert the original data to the specific XML format) to do the work. Ex I need a converter between HTML to XML and another converter for JSON to XML.

However, other all these "converters" will be created by third party developers.

My question

I would like to hear suggestions how and in what way I could create a solution that allows third party "logic" to convert the data.

I will execute the conversion, but depending on what type the original data is, I will some how use a third party "logic".

Preferred languages

As a web developer with Java as main coding language, a solution involving these would be preferable.

Some example suggestions

Here are some examples of solutions from the top of my head:

  • Should I create a Java sand box and let the developers create Java classes that converts the data?
  • Should it be third party JavaScript? which I run via JavaScript - could that be easier for a developer compared to Java?
  • Is there a reverse XSL transformation tool? Is it something I could easier create?

As you might notice, I am lost on what the easiest way is to create these logic, as a third party developer.

I first thought of creating a java sandbox and let the third party developer write a Java class which I could load in via a custom class loader. However, it might be easier for the third party developer to just write Javascript code. Finally I thought of XSL and XSL transformations, but that's XML to plain text data - I need the other way around.

Any advice or suggestion is appreciative.

link|improve this question

75% accept rate
Are these third party groups sub-contracted out by you or are they also the ones producing the files? – jzd Jan 3 '11 at 16:36
feedback

1 Answer

It sounds like you're trying to do a transformation from format A to format B. ANTLR specifically does these things. It's a language recognizer, which means that you provide a grammar and a set of transformations, and it does the transformation for you. It is much more powerful than regexes. It is also Java-based (though there are ports to other languages).

Furthermore, you'll learn a great deal about how compilers work at the same time.:)

link|improve this answer
ANTLR seems a lot to put on a third party developer to learn – corgrath Jan 3 '11 at 18:08
That's true, there is a learning curve with ANTLR. However, it does language-to-language transformations very well. – David Ann Jan 3 '11 at 18:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.