You are creating a library of custom tags that mimic the HTML form tags. When the user submits a form that fails validation, the JSP form is forwarded back to the user. The
Which tag handler method will accomplish this goal?
A. public int doStartTag() throws JspException {JspContext ctx = getJspContext();String value = ctx.getParameter(this.name);if ( value == null ) value = "";JspWriter out = pageContext.getOut();try {out.write(String.format(INPUT, this.name, value));} (Exception e) { throw new JspException(e); } return SKIP_BODY;}private static String INPUT= "";
B. public void doTag() throws JspException {JspContext ctx = getJspContext();String value = ctx.getParameter(this.name);if ( value == null ) value = "";JspWriter out = pageContext.getOut();try {out.write(String.format(INPUT, this.name, value));} (Exception e) { throw new JspException(e); }} private static String INPUT= "";
C. public int doStartTag() throws JspException {ServletRequet request = pageContext.getRequest();String value = request.getParameter(this.name);if ( value == null ) value = "";JspWriter out = pageContext.getOut();try {out.write (String.format(INPUT, this.name, value));} (Exception e) { throw new JspException(e); }return SKIP_BODY;}private static String INPUT= "";
D. public void doTag() throws JspException { ServletRequet request = pageContext.getRequest();String value = request.getParameter(this.name);if ( value == null ) value = "";JspWriter out = pageContext.getOut();try {out.write(String.format (INPUT, this.name, value));} (Exception e) { throw new JspException(e); }}private static String INPUT= "";
Which two directives are applicable only to tag files? (Choose two.)
A. tag
B. page
C. taglib
D. include
E. variable
The tl:taskList and tl:task tags output a set of tasks to the response and are used as follows:
11.
12.
13.
14.
15.
The tl:task tag supplies information about a single task while the tl:taskList tag does the final output. The tag handler for tl:taskList is TaskListTag. The tag handler for tl:task is TaskTag. Both tag handlers extend BodyTagSupport. Which allows the tl:taskList tag to get the task names from its nested tl:task children?
A. It is impossible for a tag handler that extends BodyTagSupport to communicate with its parent and child tags.
B. In the TaskListTag.doStartTag method, call super.getChildTags() and iterate through the results. Cast each result to a TaskTag and call getName().
C. In the TaskListTag.doStartTag method, call getChildTags() on the PageContext and iterate through the results. Cast each result to a TaskTag and call getName().
D. Create an addTaskName method in TaskListTag. Have the TaskListTag.doStartTag method, return BodyTag.EVAL_BODY_BUFFERED. In the TaskTag.doStartTag method, call super.getParent(), cast it to a TaskListTag, and call addTaskName().
E. Create an addTaskName method in TaskListTag. Have the TaskListTag.doStartTag method, return BodyTag.EVAL_BODY_BUFFERED. In the TaskTag.doStartTag method, call findAncestorWithClass() on the PageContext, passing TaskListTag as the class to find. Cast the result to TaskListTag and call addTaskName().
Click the Exhibit button.
Given:
10.
For a given product instance, which three jsp:setProperty attributes must be used to initialize its properties from the HTML form? (Choose three.)
A. id
B. name
C. type
D. param
E. property
F. reqParam
G. attribute
Given:
1.
package com.example;
2.
3.
public abstract class AbstractItem {
4.
private String name; ...
13. }
Assume a concrete class com.example.ConcreteItem extends com.example.AbstractItem. A servlet sets a session-scoped attribute called "item" that is an instance of com.example.ConcreteItem and then forwards to a JSP page.
Which two are valid standard action invocations that expose a scripting variable to the JSP page? (Choose two.)
A.
B.
C.
D.
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.
Click the Exhibit button.
Given the JSP code:
1.
<%
2.
pageContext.setAttribute( "product",
3.
new com.example.Product( "Pizza", 0.99 ) );
4.
%>
5.
<%-- insert code here --%>
Which two, inserted at line 5, output the name of the product in the response? (Choose two.)
A. <%= product.getName() %>
B.
C.
D.
E.
If you want to use the Java EE platform's built-in type of authentication that uses a custom HTML page for authentication, which two statements are true? (Choose two.)
A. Your deployment descriptor will need to contain this tag:
B. The related custom HTML login page must be named loginPage.html.
C. When you use this type of authentication, SSL is turned on automatically.
D. You must have a tag in your deployment descriptor that allows you to point to both a login HTML page and an HTML page for handling any login errors.
E. In the HTML related to authentication for this application, you must use predefined variable names for the variables that store the user and password values.
Given the two security constraints in a deployment descriptor:
101.
102.
103.
104.
105.
106.
107.
108.
109. 110.
If the two security constraints have the same url-pattern and http-method, which two, inserted independently at line 109, will allow users with role names of either SALES or MARKETING to access this resource? (Choose two.)
A.
B.
C.
D.
Which two are valid values for the
A. NULL
B. SECURE
C. INTEGRAL
D. ENCRYPTED
E. CONFIDENTIAL
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.