Here's what my servlet does, minus the Hibernate code:
<pre>
protected void doPost(HttpServletRequest arg0, HttpServletResponse arg1)
throws ServletException, IOException {
Enumeration e = arg0.getParameterNames();
while (e.hasMoreElements()) {
String parm = (String) e.nextElement();
System.out.println(parm + " : " + arg0.getParameterValues(parm)[0]);
}
arg1.sendRedirect("/feeple/");
}
</pre>
kurt heston wrote:
I've got some legacy PDFs laying around that utilize the HTTP submit
functionality available when using Acrobat fillable forms. The
servlet I have answering these Acrobat requests saves off the field
names and values submitted in a 3 column table (rec id, field name,
value). We change the forms and add fields pretty often. Later, when
a view of the filled form is requested, I fill it again with the
database values using iText (which is BEYOND cool) and stream it to
the browser. Simple enough.
I'm presently using this servlet's response object to just forward
calls on to a Wicket bookmarkable page...pretty loose integration.
Any suggestions as to how I might "Wickefy" my servlet such that I can
take advantage of things like Wicket session management an such when
handling requests submitted via Acrobat?
-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting
language
that extends applications into web and mobile media. Attend the live
webcast
and join the prime developer group breaking into this new coding
territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user
-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user