[ via XML-Hack ] XMLForm is a servlet that can post XML documents in response to HTTP POST data. The form’s input fields correspond to XPath directives, and the values returned become the values of the nodes. So an HTML form with:
<input name="/document/title" value="title"> <input name="/document/body" value="text">
produces
<document> <title>title</title> <body>text</body> </document>
You can also merge the form data with an existing XML document on your server.
Possibly Related posts (machine generated):