An integration developer is developing a mediation flow and wants to stop the execution of a path in the flow. The developer has to choose between a Stop and a Fail mediation primitive. Which of the following is the correct option to consider while making a choice between the two?
A. A Stop primitive would stop the execution, throw an exception and may rollback global transactions if configured; a Fail primitive would stop the execution and consume the message silently.
B. A Stop primitive would stop the execution and consume the message silently; a Fail primitive would stop the execution, throw an exception and may rollback global transactions if configured.
C. A Stop primitive would stop the execution, throw an exception and consume the message; a Fail primitive would stop the execution and may return the message to the downstream primitive through its output terminal if configured.
D. A Stop primitive would stop the execution and may return the message to the downstream primitive through its output terminal if configured; a Fail primitive would stop the execution, throw an exception and may return the message to the downstream primitive through its output terminal if configured.
A PurchaseOrder business object and a child PurchaseOrderLine business object are defined in a library. An integration developer needs to extend the business object model to also represent service purchase orders. A service purchase order only differs from a normal purchase order in that each child line object has an additional service order amount property. What is the BEST way to accurately and thoroughly model the new service purchase order object(s)?
A. Both ServicePurchaseOrder and ServicePurchaseOrderLine objects should be createdServicePurchaseOrder should inherit from PurchaseOrderServicePurchaseOrderLine should
inherit from PurchaseOrderLine
B. Only a ServicePurchaseOrderLine object should be createdServicePurchaseOrderLine should inherit from PurchaseOrderLine
C. Only a ServicePurchaseOrder object should be createdServicePurchaseOrder should inherit from PurchaseOrder
D. Both ServicePurchaseOrder and ServicePurchaseOrderLine objects should be createdServicePurchaseOrder should not inherit from PurchaseOrderServicePurchaseOrderLine should inherit from PurchaseOrderLine
Interface requirements for a new project include allowing external client applications to create, retrieve or update customer records in a backend system. Which of the following export interface models BEST implement these requirements?
A. One interface with one operation and three inputs.
B. One interface with three operations and one input for each operation.
C. One interface with three operations and three inputs for each operation.
D. Three interfaces with one operation each and one input for each operation.
E. Three interfaces with three operations each and one input for each operation.
Module A and Module B share the same resources deployed as a shared library on the server. Module A has to be updated resulting in changes to some of the shared resources. Which one of the following statements is correct with respect to the dependency of the two modules on the shared resources?
A. The shared library remains unaffected by the update to Module A.
B. Module B needs to be rebuilt, tested and updated.
C. Module B will update itself automatically as Module A is updated.
D. Module B will throw an error saying the shared library is out of date.
Which of the following event delivery types are supported by the WebSphere Adapters?
A. Ordered delivery
B. Persistent delivery
C. Guaranteed delivery
D. Non persistent delivery
An application with a mediation module has been deployed into a test environment. The integration developer would like to delete the transaction log file. Which of the following statements is true regarding this action? Deleting the transaction log file:
A. results in the cancellation of subsequent transactions.
B. causes started transactions to either roll back or be committed.
C. causes transactional information to be rolled over to SystemOut.log.
D. could cause started transactions to neither roll back nor be committed.
An integration developer has been tasked with consolidating common artifacts that are currently defined and used in separate unrelated mediation modules.
Which of the following should be done?
A. Both common business objects and common XML maps should be consolidated into a shared library.
B. Neither common business objects nor common XML maps should be consolidated into a shared library.
C. Business objects used by XML maps should not be consolidated into a shared library, but common XML maps should be
D. XML maps should not be consolidated into a shared library but common business objects used in XML maps should be.
Refer to the Exhibit.
An integration developer is tasked with the creation of an ant script for build and deployment automation.
One of the tasks required is to generate J2EE application EAR files from SCA modules. The integration
developer used the serviceDeploy task in the ant script as shown in the Exhibit.

While executing the script using ws_ant the integration developer encounters an error "Could not create task or type of type: servicedeploy". What is the reason for this error?
A. Absence of taskdef for servicedeploy
B. servicedeploy tag must be outside target
C. serviceDeploy libraries are missing in the classpath.
D. Syntax error because the servicedeplcy tag must be defined for serviceDeploy.
An integration developer is using a servlet created by a test project to execute test cases remotely.
Which of the following URL pattern is available by default for the servlet?
A. http://
B. http:^
C. http://
D. http://
An integration developer is tasked to test the XML maps created in the mediation flow component using the integration test client. In order to perform testing of the XML maps, which of the following is most applicable?
A. XML maps can be tested but not in debug mode.
B. XML maps can be tested without deploying on to the server.
C. XML maps can be tested without association to a mapping file.
D. A mediation module containing an XML map must be deployed to the server before the test is executed.