how to use XML sent by html form?

Posted by user32167 on Stack Overflow See other posts from Stack Overflow or by user32167
Published on 2010-06-14T09:38:30Z Indexed on 2010/06/14 9:52 UTC
Read the original article Hit count: 285

Filed under:
|
|

i have html form with textarea in which i paste some XML, for example:

<network ip_addr="10.0.0.0/8" save_ip="true">
<subnet interf_used="200" name="lan1" />
<subnet interf_used="254" name="lan2" />
</network>

When user submit form, that data is send to Java server, so in headers i get something like that:

GET /?we=%3Cnetwork+ip_addr%3D%2210.0.0.0%2F8%22+save_ip%3D%22true%22%3E%0D%0A%3Csubnet+interf_used%3D%22200%22+name%3D%22lan1%22+%2F%3E%0D%0A%3Csubnet+interf_used%3D%22254%22+name%3D%22lan2%22+%2F%3E%0D%0A%3C%2Fnetwork%3E HTTP/1.1

how can i use that in my Java applications? I need to make some calculations on that data and re-send new generated XML.

© Stack Overflow or respective owner

Related posts about java

Related posts about Xml