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.