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.
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
What is the environment variable that points to the location where the JDK is installed?
A. JAR_HOME
B. JDK_HOME
C. JAV_HOME
D. JAVA_HOME
How can a developer ensure that a fault will occur if the service does not recognize a SOAP header entry containing a transaction number?
A. Set the fault Code value to soap: Transaction
B. Include a Fault element in the SOAP message
C. Include a must Understand attribute in the header entry
D. Include a detail element containing application-specific elements according to the XML Schema
Refer to WSDL extract in the exhibit. What does the soap: binding element specify?
A. The message will be in an XML document
B. SOAP will be used as a transport protocol
C. The binding is defined by the NewWSDLFile type
D. The binding is bound to the SOAP protocol format
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)
Using the JavaBean in Exhibit 1, the developer runs the following: wsgen -class path .\classes wsdl test.BookWhat artifacts are generated when the command completes?
A. GetIsbn.class, GetIsbnResponse.class
B. GetIsbnRequest.class, GetIsbnResponse.class
C. BookService.wsdl, GetIsbnRequest.class, GetIsbnResponse.class
D. BookService_schema1.xsd, BookService.wsdl, GetIsbn.class, GetIsbnResponse.class
E. BookService_schema1.xsd, BookService.wsdl, GetIsbnRequest.class,GetIsbnResponse.class
A. It will specify the WSDL location in the generated artifacts.
B. It will specify the location of the WSDL from which to generate the Web service client artifacts
C. It will specify the relative location of the WSDL file from which to generate the Web service client artifacts
D. It will ensure that the WSDL is packaged appropriately in the EAR file.
While creating a new TCP/IP Monitor on IBM Rational Application DeveloperV7.5, if the HTTP option is selected, which one of the following is a valid statement?
A. The TCP/IP Monitor ensures that the SOAP traffic is WS-I Compliant
B. All the requests are sent byte for byte and the TCP/IP Monitor will not translate or modify any requests that it forwards
C. The requests from the Web browser are modified so that the HTTP header points to the remote machine and separated if multiple requests are received in the same connection.
D. The TCP/IP Monitor gets a handle of the SOAP envelop and if a WS-Addressing header exists, modifies the wsa:To header to specify the end point of the remote machine dynamically
A developer is using the Web container programming model as per JSR109. Which statement regarding the Service Implementation Bean is true?
A. The class can be final
B. The class must define finalize() method
C. The class must have a default public constructor
D. The class can save client specific state across method calls using instance variables