XMLForm servlet

[ 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):

  1. PXSL Servlet
  2. Form validation with PHP
  3. UWOBO XSLT Processor
  4. XML data round-tripping with Relax and HTML forms
  5. WDDX Resources and Web Sites

More like this: , , .

blog comments powered by Disqus