Articles for SCWCD Java/J2EE 1.4 Upgrade CX310-082
SCWCD CX310-082 Short Notes: Exam passing tips
The Servlet Technology Model
The getWriter() method of the ServletResponse interface returns a PrintWriter object suitable for writing character data in the response.
The setValue() method of the Cookie class is used to assign a new value to a cookie after the cookie is created.
A......
continue reading "SCWCD CX310-082 Short Notes: Exam passing tips" »
Skills required for Sun test CX310-082
Sun has specified more than 20 objectives for Sun test CX310-082 (Sun Certified Web Component Developer for the Java 2 Platform, Enterprise Edition 1.4 Upgrade Exam). These objectives are grouped under 11 topics. Before taking the test, an individual should possess a good command over the......
continue reading "Skills required for Sun test CX310-082" »
Things to practice for Sun test CX310-082
The CX310-082 (Sun Certified Web Component Developer for the Java 2 Platform, Enterprise Edition 1.4 Upgrade Exam) test checks your ability to use the basic syntax and structure of the Servlet and JSP pages. This test requires you to have a good understanding of Java, Servlets, and JSP pages, and......
continue reading "Things to practice for Sun test CX310-082" »
JSTL Core Library
JSP Standard Tag Library (JSTL) is an extension of the JSP language. It includes various operations needed in almost all JSP pages, such as internationalization, conditional processing, XML parsing, making a database connection, etc.
The important tags in the JSTL core library are as......
continue reading "JSTL Core Library" »
How can an existing session be invalidated?
An existing session can be invalidated in the following two ways: Setting timeout in the deployment descriptor : This can be done by specifying timeout between the <session-timeout> tags as follows:
<session-config>......
continue reading "How can an existing session be invalidated?" »
How is a filter configured in the deployment descriptor?
A filter is configured in the deployment descriptor as follows:
<filter>
<filter-name>Filter1</filter-name>
<display-name>filter1</display-name>
......
continue reading "How is a filter configured in the deployment descriptor?" »
How is an El initialization parameter configured in the deployment descriptor?
An El initialization parameter initParam is configured in the deployment descriptor as follows:
<context-param>
<param-name>parameterName</param-name>
<param-value>parameterValue</param-value>
</context-param>......
continue reading "How is an El initialization parameter configured in the deployment descriptor?" »
How is scripting disabled?
Scripting is disabled by setting the scripting-invalid element of the deployment descriptor to true. It is a subelement of jsp-property-group. Its valid values are true and false. The syntax for disabling scripting is as follows:
<jsp-property-group>......
continue reading "How is scripting disabled?" »
How is the expression language disabled?
By default, the expression language is enabled. It can be disabled using the deployment descriptor web.xml file as follows:
<jsp-config>
<jsp-property-group>
<url-pattern>*.jsp</url-pattern>......
continue reading "How is the expression language disabled?" »
What are JSP declarations?
JSP declarations are used to declare class variables and methods in a JSP page. They are initialized when the class is initialized. Anything defined in a declaration is available for the whole JSP page, i.e., they have page scope. A declaration block is enclosed between the <%! and %> tags.......
continue reading "What are JSP declarations?" »
| Includes | Free | Buy |
|---|---|---|
| Version | 8.01.05 | |
| Practice Tests | 1 | 3 |
| 30 | 210 | |
| Quiz | 15 | 89 |
| Final Test | No | Yes |
| Articles, How Tos.., Tips | Yes | Yes |
| Study Notes | 40 | 129 |

