• 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

About HTTP requests

 
Greenhorn
Posts: 18
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi I am preparing for SCWCD.
I got this doubt when going through servlet specification.
In the specification (SRV 4.1.1), they told about the conditions when request parameters are available to a Servlet.

I am not able to understand one of the condition mentioned as:

" The Servlet has made an initial call of any of the getParameter familiy of methods on the request object." - Here what is meant by "initial call"
 
Ranch Hand
Posts: 136
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi,

" The Servlet has made an initial call of any of the getParameter familiy of methods on the request object." - Here what is meant by "initial call"



i think here initial call means the first time you will be using any of the getParameter family of methods(getParmater,getParameterNames,getParameterValues) on the request in ur servlet.

regards
-santosh
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic