which of the following is the most appropriate subtype of javax.jms.Message to use?
When JMS API is used to send messages that are whole or partial XML documents, which of the
following is the most appropriate subtype of javax.jms.Message to use?
Which would be the best exception to catch to ensure that all objects placed into a session in a clustered env
Which would be the best exception to catch to ensure that all objects placed into a session in a
clustered environment using Database-based session persistence properly implement Serializable
where supported?
Which type of HTTP request causes input parameters to be appended to a URL in the form of a query string?
Which type of HTTP request causes input parameters to be appended to a URL in the form of a
query string?
Which two methods would extract the phone number information from the request object?
Given the following HTML form on a Web page:
<FORM ACTION=”http://localhost:7001/phoneBook” METHOD=”GET”>
<H1>Phone Book</H1>
<CENTER>
<p>
Last Name: <INPUT TYPE=”TEXT” NAME=”last” SIZE=”25″ VALUE=”Smith”><p>
First Name: <INPUT TYPE=”TEXT” NAME=”first” SIZE=”25″ VALUE=”John”><p>
Phone Number: <INPUT TYPE=”TEXT” NAME=”phone” SIZE=”17″ VALUE=”4567890″><p>
<p><INPUT TYPE=”SUBMIT”>
</CENTER>
</FORM>
Assume a servlet receives the request submitted through this form. Which two methods would
extract the phone number information from the request object?
All of the following are faultcode values defined in the SOAP 1.1 specification EXCEPT:
All of the following are faultcode values defined in the SOAP 1.1 specification EXCEPT:
Which two methods could be used by the servlet to obtain information input within the form?
A client has accessed a servlet via a form that uses an HTTP POST request. Which two methods
could be used by the servlet to obtain information input within the form?
what would be the best INPUT line to invoke this method on a form field?
Using the following JavaScript function, what would be the best INPUT line to invoke this method
on a form field?
function checkValue(enteredValue) {
var retVal = false
if (enteredValue.value < 0)
alert(“Must be a whole number”)
else if (enteredValue.value > 1000)
alert(“Value must be >0 and less than 1000”)
else
retVal = true
return retVal
}
which three of the following?
In a JSP, useBean action tags do which three of the following?
Which of the following is NOT a pre-defined do type for the <do> tag in WML?
Which of the following is NOT a pre-defined do type for the <do> tag in WML?
Which of the following JNDI methods is used by a client to obtain a reference to an EJB home interface?
Which of the following JNDI methods is used by a client to obtain a reference to an EJB home
interface?