A developer has created a Liberty server in WebSphere Application Server Developer Tools forEclipse.
How can the developer start the Liberty server fromthe Servers view using a JRE different fromthe default JRE?
A. Open the Runtime Explorer view, select the runtime and click the Properties contextsensitive menu item. Change the JRE setting under the Server category in theProperties dialog.
B. Open the Server Configuration editor by double clicking the server configuration in the Servers view, add a JVM configuration element and specify the JRE location in theLocation field.
C. Open the Server editor by double clicking the server in the Servers view, selectthe Runtime Environments link and change the JRE setting in the Liberty ProfileRuntime Environment dialog.
D. Open the Server Configuration editor by double clicking the server configuration in theServers view, add a Variable configuration element with the Name field set tojava.homeand the Value field set to the location of the JRE.
A developer is testing a web application using a Liberty profile server. The application will alsoneed to run on a Tomcat server and cannot make useof any APIs that are specific to the Libertyprofile server.
How can the user ensure that no classes outside ofthe specification classes are used by theapplication during the test?
A. Create a file server.env under the same directory as the server.xml file and add thefollowing line: Class-Path-Visibility=spec
B. Open themeta-inf/manifest.mffile under the web project, add the following line: Class-Path-Visibility: specification
C. On the Server > Runtime Environment preference page, edit the Liberty profile runtimeentry and select only the Specificationcheckbox under the API visibility section.
D. In the Server Configuration editor, create a Classloader Service item under theapplication element and add the attributeapiTypeVisibilitywith the value ofspec.
Which of the following methods are supported for sharing session information among the servers in a clustered environment?
A. Directory persistence
B. Cache-to-Cache session state replication
C. Memory-to-Memory session state replication
D. Database persistence
E. File system persistence
The removeNode command line utility, when executed from any node to detach itself from a cell, does which of the following actions?
A. Stops all running server processes on the node
B. Maintains all configuration changes after joining the cell
C. Runs from the bin directory of the Deployment Manager
D. Restores the backed-up original base configuration
E. Deletes the node's queue manager
Which of the following is NOT a valid property for configuring the WebSphere internal JMS server?
A. Initial State
B. Queued Port
C. Queue Name
D. Host Name
What must be included in a SOAP fault message when an error occurs due to a value in the message Body element?
A. A detail element
B. A Body fault code
C. An application-specific fault code
D. A fault string element with a value of "Body"
Select the scenario where the specification WS-Make Connection should be used.
A. To return responses back on a separate connection in arequest and response flow. Forexample, enabling WS-Addressing to specify a new address to deliver a response.
B. To establish a connection for out-of-band communication with 3rd endpoint. For example, in using WS-Secure Conversation with another business endpoint, a token can be obtained from a 3rd party provider.
C. To tunnel through a firewall and establish a back channel for messages to be sent to a previously unaddressable endpoint. For example, with WS- ReliableMessagingreestablishing a connection through a firewall for acknowledgements.
D. To create a separate connection to an endpoint to gain metadata about an endpoint prior to the initial request. For example, creating a connection to a separate endpoint to retrieve WSPolicy information about how to establish connectivity to a web services endpoint.
Which of the following are TRUE statements about the WS-I Basic Security Profile (BSP)?
A. BSP focuses on both SOAP-level constructs as well as TLS and SSL
B. BSP only focuses on SOAP-level constructs and does not reference TLS and SSL
C. BSP V1.0 focuses on WS-Security features while BSP V1.1 focuses on adding in other standards which use WS-Security such as WS-Secure Conversation and WS-Trust
D. BSP V1.0 focuses on WS-Security V1.0 features while BSP V1.1 focuses on WS- Security V1.1 features such as encrypted headers, signature confirmation, and thumbprint references
E. BSP V1.0 focuses on the following binary security tokens: Username Token, X.509 Certificate Token, and REL Token. BSP V1.1 adds support for Kerberos Token and SAML Token (as well as the prior tokens in BSP V1.0)
A user wants to specify the WSDL style of a newJAX-WS Web service based on a JavaBean. Using the Web service generation wizard, which of the following are valid combinations?
A. RPC Encoded
B. RPC Wrapped
C. Document Bare
D. Document Literal
E. Document Wrapped
Weather Web service is configured under the WeatherBeanWeb context. From the diagram in the exhibit, what is the correct URI for TCP/IP Monitor to work?
A. http://localhost/WeatherBeanWeb/services/Weather
B. http://localhost:9083/WeatherBean/services/Weather
C. http://localhost:9090/WeatherBean/services/Weather
D. http://localhost:9083/WeatherBeanWeb/services/Weather
E. http://localhost:9090/WeatherBeanWeb/services/Weather
Which one of the following is NOT a standard property of the Binding Provider class from the JAX-WS API?
A. The SOAP Action
B. The endpoint address
C. A timeout value for the HTTP request
D. The ability to maintain HTTP session state
E. A username and password for basic authentication
A developer would like to create a generic endpoint implementation to handle XML-based Web service and use it to host multiple endpoints.
Which of the following annotations would BEST be used to support that Service Implementation Bean?
A. @Web Method
B. @Web Service
C. @Service Mode
D. @WebServiceProvider
Which statement is TRUE?
A. Returning true from the handle Message() method tells the JAX-WS runtime that processing of the handler chain should end.
B. Returning true from the handle Message() method tells the JAX-WS runtime that processing should move to the next handler in the chain
C. The handle Message() method should be replaced by handle Request() andhandleResponse() methods for a JAX-WS runtime
D. The signature of handle Message should be public void handle Message(LogicalMessageContext context)
A developer is creating a Web service from the WSDL file, using IBM Rational Application Developer: When creating a top-down JavaBean, which of the following artifacts would be generated?
A. Service Endpoint Interface and Implementation class only
B. Service Endpoint Interface and GetAccountBalance.java, GetAccountBalanceResponse.java
C. Service Endpoint Interface, Implementation class, GetAccountBalance.java, GetAccountBalanceResponse.java
D. Implementation class, GetAccountBalance.java, GetAccountBalanceResponse.java
Which interface in SAAJ generically represents any literal part in a SOAP message?
A. Javax.xml.soap.Text
B. Javax.xml.soap.Node
C. Javax.xml.soap.DetailEntry
D. Javax.xml.soap.SOAPElement
E. Javax.xml.soap.SOAPBodyElement