Hello Dustin,

your web form is in fact the entity of the POST request sent to the
server, thus you have access to it via request.getEntity().
There is a shortcut which allows to have a list of all input fields :

Form form = request.getEntityAsForm();
for (Parameter parameter : form) {
   System.out.print("parameter " + parameter.getName());
   System.out.println("/" + parameter.getValue());
}

You can use it as workaround (or simply as a solution) before we fix
the problem you point to.

best regards,
Thierry Boileau


On Tue, Mar 11, 2008 at 6:41 PM, Dustin N. Jenkins
<[EMAIL PROTECTED]> wrote:
> I'm using Restlet 1.0.8, JDK 1.5.0_10 running on Tomcat 5.5.
>
>  Seems like this has been covered before but I couldn't find anything, my
>  apologies if it's been raked over many times.
>
>  If I post form data that includes a pull down menu (HTML SELECT), it
>  doesn't show up in the request's attributes, is this intentional?  How
>  do I extract the values out?  All the INPUT fields come across just fine...
>
>  Thanks,
>  Dustin
>  --
>
>
>  Dustin N. Jenkins | Tel/Tél: 250.363.3101 | [EMAIL PROTECTED]
>
>  facsimile/télécopieur: (250) 363-0045
>
>  National Research Council Canada | 5071 West Saanich Rd, Victoria BC.
>  V9E 2E7
>
>  Conseil national de recherches Canada | 5071, ch. West Saanich, Victoria
>  (C.-B) V9E 2E7
>
>  Government of Canada | Gouvernement du Canada
>
>

Reply via email to