• 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

HttpRequest.setDateHeader ???

 
Ranch Hand
Posts: 344
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
From http://www.javaranch.com/carl/SCWCD.htm#Question%208)


I find only two setters in the ServletRequest (HttpServletRequest):
void setAttribute(java.lang.String name, java.lang.Object o)
Stores an attribute in this request.
void setCharacterEncoding(java.lang.String env)
Overrides the name of the character encoding used in the body of this request.

Is there any HttpRequest.setDateHeader( ? )???
 
Ranch Hand
Posts: 40
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Jhon,

setDateHeader() is defined in HttpServetResponse and not in HttpServetRequest.

Question is wrong.
reply
    Bookmark Topic Watch Topic
  • New Topic