Help coderanch get a
new server
by contributing to the fundraiser
  • 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
  • Ron McLeod
  • Paul Clapham
  • Devaka Cooray
  • Liutauras Vilda
Sheriffs:
  • Jeanne Boyarsky
  • paul wheaton
  • Henry Wong
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Carey Brown
  • Mikalai Zaikin
Bartenders:
  • Lou Hamers
  • Piet Souris
  • Frits Walraven

Section 12.7

 
Ranch Hand
Posts: 35
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Could someone please help me out with section 12.7?
12.7 Identify the method in the custom tag handler that accesses:

  • A given JSP page's implicit variable
  • The JSP page's attributes

  • Any information about this section would be appreciated.
    Thanks
 
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi James,
Objective 12.7 refers to the following section of the JSP 1.2 spec:
Core API - Implicit Objects - PageContext.
More specifically:
A given JSP implicit variable:
PageContext.getOut()
PageContext.getPage()
PageContext.getException()
PageContext.getRequest()
PageContext.getResponse()
PageContext.getServletConfig()
PageContext.getServletContext()
PageContext.getSession()
The JSP page's attributes:
PageContext.getAttribute()
PageContext.setAttribute()
PageContext.findAttribute()
PageContext.removeAttribute()
PageContext.getAttributeScope()
PageContext.getAttributeNamesInScope()
I hope this helps,
Joe
 
James Nuzzi
Ranch Hand
Posts: 35
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks, that did help
 
reply
    Bookmark Topic Watch Topic
  • New Topic