You can do it several ways. The best way IMHO is  to show the form and
the captcha together and they fill in the form fields and the captcha
and submit both together. Or as your question implies, you want a
two-step process for some reason where they fill in the form and then
you show a different page with just the captcha. Not sure why you want
to do this, but in this scenario when they submit the form, you can
send the captcha page back to them with the form fields as hidden
fields. Then when captcha is submitted, then both form fields and
captcha info is submitted together. Another alternative is to store
the submitted form values into the session object on first submit,
then show captcha page and when they have submitted captcha
successfully, you can process the form data.

Stephen

On Wed, Jun 15, 2011 at 8:30 PM, Arvind Chari <[email protected]> wrote:
> Hello
>
> I want to automate the submission of repetitive data to multiple web
> forms... I already have with me details of all fields that have to be filled
> in on a web form. What I want to do is, initially ask the user for values of
> various fields, and at time of submission show only captcha of form on
> screen. Now, when end user fills in the captcha, then the form (along with
> other fields filled in by the application) is submitted successfully.
>
> Can i do this in Google App Engine (either Java or Python or any of the
> other supported languages)?
>
> Regards,
> Arvind.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine for Java" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/google-appengine-java/-/ftxQm2I3P5EJ.
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to
> [email protected].
> For more options, visit this group at
> http://groups.google.com/group/google-appengine-java?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.

Reply via email to