Hi,
Background:
I have an input xml and a xslt to be applied on top of that to get a new desired xml output. Both (input xml and xslt) are tested thoroughly and working as expected if I am using them via java code (core java APIs).
I want to replicate the same behavior in a browser. Here is what I am trying to achieve:
An html page having:
1. Form with a Textarea and a submit button
- The textarea will have the input xml content to be pasted by user.
On clicking submit button, user should be redirected to another page (or same page if possible) with:
1. A textarea with transformed xml data inside it.
I googled this a bit and came to know that this is possible via some python/cgi(perl)/js scripting. I am not that much known to these technologies. Any other approaches are most welcome :)
Any pointers are highly appreciated.
Thanks.
-A