!--a11y-->
Accessible JSP Objects 
The JSP standard implicit objects that are accessible via scripting in the JSP can also be accessed in a compiled portal component:
Objects |
Type |
Description |
request |
javax.servlet.ServletRequest |
Original request object |
response |
com.sapportals.portal.prt.IPortalComponentResponse |
Portal component response |
pageContext |
javax.servlet.jsp.PageContext (not all functionnality are supported) |
The page context for this JSP page |
component request |
com.sapportals.portal.prt.IPortalComponentRequest |
The portal component request |
session |
javax.servlet.http.HttpSession (specific implementation) |
The session object created for the requesting client |
application |
javax.servlet.ServletContext |
The servlet context obtained from the servlet configuration object |
out |
javax.servlet.jsp.JspWriter |
An object that writes to the output stream |
config |
javax.servlet.ServletConfig |
The servlet config for this JSP page |
page |
com.sapportals.portal.prt.IportalComponentContext |
The instance of this page's implementation class processing the current request. The JSP standard implementation returns the servlet. The PRT returns the portal component context of the component that is associated to the JSP pages. |
exception |
java.lang.Throwable |
The uncaught java.lang.Throwable that resulted in the error page being invoked |
