• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Hidden form field causing perfromance issue.

 
Greenhorn
Posts: 13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,
Yesterday, I came accross a strange isssue. In one of our jsp file, one hidden field was mistakenly coded twice. And due this the we started getting performance issues. To be precise, after doing the same search operation for around 25 times the server started hanging, and when we removed that hidden field, it started working fine.

Would really appreciate if any one can explain, as to what is really happening because of a duplicate hidden form field.

Following is the code snipped for your reference:


<form:hidden path="originator" id="originator" />
<form:hidden path="task" id="task" />
<form:hidden path="filter" id="filter" />
<form:hidden path="originator" id="originator" />


Thanks
Yogendra S Butola
reply
    Bookmark Topic Watch Topic
  • New Topic