Hello!

Are there any classes that take the form data after it
has been submitted and convert it into XML in a
servlet/jsp model?

Example:
From:
(In a JSP)
<% String input = request.getParameter("input"); %>
<% String[] input2 =
request.getParameterValues("input2"); %>

To:
(XML)
<formdata>
<name>input</name>
<value>1</value>
<name>input2</name>
<value>10</value>
<value>20</value>
</formdata>

Thanks for your response.

__________________________________________________
Do You Yahoo!?
Yahoo! Auctions - Buy the things you want at great prices! http://auctions.yahoo.com/

___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".

Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

Reply via email to