You need to create a servlet filter that stores all request headers to a database for all requests to the web application's home page "/index.jsp". Which HttpServletRequest method allows you to retrieve all of the request headers?
A. String[] getHeaderNames()
B. String[] getRequestHeaders()
C. java.util.Iterator getHeaderNames()
D. java.util.Iterator getRequestHeaders()
E. java.util.Enumeration getHeaderNames()
F. java.util.Enumeration getRequestHeaders()
Given an HttpServletRequest request and HttpServletResponse response, which sets a cookie "username" with the value "joe" in a servlet?
A. request.addCookie("username", "joe")
B. request.setCookie("username", "joe")
C. response.addCookie("username", "joe")
D. request.addHeader(new Cookie("username", "joe"))
E. request.addCookie(new Cookie("username", "joe"))
F. response.addCookie(new Cookie("username", "joe"))
G. response.addHeader(new Cookie("username", "joe"))
Your web application views all have the same header, which includes the
10.
Which JSP code snippet should you use in your main view JSPs to insert the header and pass the pageTitle variable?
A.
B.
C.
D.
E.
A JSP page needs to instantiate a JavaBean to be used by only that page. Which two jsp:useBean attributes must be used to access this attribute in the JSP page? (Choose two.)
A. id
B. type
C. name
D. class
E. scope
F. create
Click the Exhibit button.
Given the HTML form:
1.
2.
3.
8.
9.
Assume the product attribute does NOT yet exist in any scope.
Which code snippet, in submit.jsp, instantiates an instance of com.example.Product that contains the results of the form submission?
A.
B.
C.
D.
Your web application uses a simple architecture in which servlets handle requests and then forward to a JSP using a request dispatcher. You need to pass information calculated by the servlet to the JSP; furthermore, that JSP uses a custom tag and must also process this information. This information must NOT be accessible to any other servlet, JSP or session in the webapp. How can you accomplish this goal?
A. Store the data in a public instance variable in the servlet.
B. Add an attribute to the request object before using the request dispatcher.
C. Add an attribute to the context object before using the request dispatcher.
D. This CANNOT be done as the tag handler has no means to extract this data.
A JSP page needs to set the property of a given JavaBean to a value that is calculated with the JSP page. Which three jsp:setProperty attributes must be used to perform this initialization? (Choose three.)
A. id
B. val
C. name
D. param
E. value
F. property
G. attribute
Given the web application deployment descriptor elements:
11.
12.
13.
14.
...
24.
25.
26.
27.
28.
Which element, inserted at line 27, causes the ParamAdder filter to be applied when MyServlet is invoked by another servlet using the RequestDispatcher.include method?
A.
B.
C.
D.
E.
Your web site has many user-customizable features, for example font and color preferences on web pages. Your IT department has already built a subsystem for user preferences using Java SE's lang.util.prefs package APIs and you have been ordered to reuse this subsystem in your web application. You need to create an event listener that stores the user's Preference object when an HTTP session is created. Also, note that user identification information is stored in an HTTP cookie.
Which partial listener class can accomplish this goal?
A. public class UserPrefLoader implements HttpSessionListener {public void sessionCreated (HttpSessionEvent se) {MyPrefsFactory myFactory = (MyPrefsFactory) se.getServletContext ().getAttribute("myPrefsFactory");User user = getUserFromCookie(se);myFactory.setThreadLocalUser (user);Preferences userPrefs = myFactory.userRoot();se.getSession().setAttribute("prefs", userPrefs);}// more code here}
B. public class UserPrefLoader implements SessionListener {public void sessionCreated(SessionEvent se) {MyPrefsFactory myFactory = (MyPrefsFactory) se.getContext().getAttribute("myPrefsFactory");User user = getUserFromCookie (se);myFactory.setThreadLocalUser(user);Preferences userPrefs = myFactory.userRoot ();se.getSession().addAttribute("prefs", userPrefs);}// more code here}
C. public class UserPrefLoader implements HttpSessionListener {public void sessionInitialized (HttpSessionEvent se) {MyPrefsFactory myFactory = (MyPrefsFactory) se.getServletContext ().getAttribute("myPrefsFactory");User user = getUserFromCookie(se);myFactory.setThreadLocalUser (user);Preferences userPrefs = myFactory.userRoot();se.getHttpSession().setAttribute("prefs", userPrefs);}// more code here}
D. public class UserPrefLoader implements SessionListener {public void sessionInitialized(SessionEvent se) {MyPrefsFactory myFactory = (MyPrefsFactory) se.getServletContext().getAttribute ("myPrefsFactory");User user = getUserFromCookie(se);myFactory.setThreadLocalUser (user);Preferences userPrefs = myFactory.userRoot();se.getSession().addAttribute("prefs", userPrefs);}// more code here}
You have a use case in your web application that adds several session-scoped attributes. At the end of the use case, one of these objects, the manager attribute, is removed and then it needs to decide which of the other session-scoped attributes to remove.
How can this goal be accomplished?
A. The object of the manager attribute should implement the HttpSessionBindingListener and it should call the removeAttribute method on the appropriate session attributes.
B. The object of the manager attribute should implement the HttpSessionListener and it should call the removeAttribute method on the appropriate session attributes.
C. The object of the manager attribute should implement the HttpSessionBindingListener and it should call the deleteAttribute method on the appropriate session attributes.
D. The object of the manager attribute should implement the HttpSessionListener and it should call the deleteAttribute method on the appropriate session attributes.
Nowadays, the certification exams become more and more important and required by more and more enterprises when applying for a job. But how to prepare for the exam effectively? How to prepare for the exam in a short time with less efforts? How to get a ideal result and how to find the most reliable resources? Here on Vcedump.com, you will find all the answers. Vcedump.com provide not only Oracle exam questions, answers and explanations but also complete assistance on your exam preparation and certification application. If you are confused on your 1Z0-858 exam preparations and Oracle certification application, do not hesitate to visit our Vcedump.com to find your solutions here.