You are using an old servlet version. That method was introduced in J2EE 1.3. You can get the same info with getParameterNames() and getParameterValues().
 
Best Regards,
Paulo Soares


From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Vincenzo De Filippis
Sent: Thursday, July 08, 2004 1:14 PM
To: [EMAIL PROTECTED]
Subject: [iText-questions] iText problem

hi,
i have a problem with a method of itext code when i compile.
 
this is the part of class:
 
i have the problem when i call getParameterMap().....
 
protected Element makeHTTPParameterInfoElement(
     final HttpServletRequest req)
 {                               
  Map mapParameters = null;                              
               
  mapParameters = new java.util.TreeMap(req.getParameterMap());
 //mapParameters = new java.util.TreeMap(req.getContentType());
 
  Table tab = null;
 
  tab = makeTableFromMap(
    "HTTP parameter name",
    "HTTP parameter value",
    mapParameters);
  
  return (Element) tab;
 }
 
thanks to everybody.
vins

Reply via email to