I'm trying to build a page which shows ALL the parameters sent by any form.
BUT, I have not found no methods in RunData, TurbineRunData or
ParameterParser, which give me a list of parameter's names.

Outside from Turbine I use something like:

---------
   ...
   HTTP request = HTTP.getRequest();
   Hashtable table = request.getURLParameters();

   int maxsize = table.size();

   String[] param = new String[maxsize];
   String[] value = new String[maxsize];

   Enumeration k = table.keys();
   Enumeration e = table.elements();

   int i=0;

   for( ; k.hasMoreElements(); )
      {
      param[i]=k.nextElement().toString();
      value[i]=e.nextElement().toString();
      i++;
      }
   ...
---------

but, under Turbine I can't ever get the 'request' object.

any suggestion?

Andrea  =8-)


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to