Hello,

 

I have migrated my application from iPlanet to Tomcat 5.5 (latest build as
of today) and getting weird results with the HttpServletRequest object:

 

Each Element out the getParameterNames enumeration used to be ordered based
on the html form layout posting the data (using iPLanet). But, after the
migration the fields are coming in random order when I try to loop through
the fields dynamically. . .

 

Here is a snapshot of the code: 

 

Enumeration paramNames = req.getParameterNames();

 

while(paramNames.hasMoreElements()) 

            {

                paramName = (String)paramNames.nextElement();

                                                .

                                                .

                                                .

 

Has anyone encountered this issue before? Is there a work around?

 

Thank you in advance for your help,

Jeff

 

 

Reply via email to