I apply html HTML page to edit and send xml on the server. To make it more useful I would like to have HTML based decision with following properties:
- Highlight XML syntax during editing (required);
- Lightweight in size (e.g. 5+ Mb is too much) (required)
- Validate XML on-the-fly or by request (e.g. by button press) (optional)
- Be free (is pretty required, but I'm open for paid decision if it really covers all requirements);
Thanks for any suggestions!
I apply html HTML page to edit and send xml on the server. To make it more useful I would like to have HTML based decision with following properties:
- Highlight XML syntax during editing (required);
- Lightweight in size (e.g. 5+ Mb is too much) (required)
- Validate XML on-the-fly or by request (e.g. by button press) (optional)
- Be free (is pretty required, but I'm open for paid decision if it really covers all requirements);
Thanks for any suggestions!
Share Improve this question edited Feb 22, 2013 at 23:56 Raman asked Feb 22, 2013 at 23:51 RamanRaman 8854 gold badges12 silver badges28 bronze badges1 Answer
Reset to default 6You may wish to check out CodeMirror, which has XML syntax highlighting, autoplete, tag closing, and some other great features.
I'm not certain that CodeMirror includes XML validation per se, but it shouldn't be very difficult to add if you can just use an XmlHttpRequest to send the content to an online XML validation service of some sort.