An integration developer is testing a microflow which invokes several external services. This microflow should take no longer than 30 seconds to complete. During the execution, a transaction timeout exception was thrown. The developer suspects that one of the external services is taking too long to return the response. Which of the following methods is the BEST approach to troubleshoot this problem?
A. Implement a fault handler in the microflow and collect additional information through the exception stack-trace.
B. Use a BPC Explorer to check execution time of the each invocation activity.
C. Examine the SystemOut.log for the associating transaction exception stack-trace.
D. Use the Tivoli Performance Viewer to check the duration of the service invocation.
正解:C
質問 2:
Refer to the exhibit.

Given that an instance of the Parent business object is parent, which of the following fragment of code sets the GrandChild's name attribute to be "John Doe"?
A. DataObject child = parent.createDataObject("child");
DataObject grandchild = child.createDataObject("grandChild");
grandchild.setString("name", "John Doe");
B. DataObject grandchild = parent.createDataObject("grandChild");
grandchild.setString("name", "John Doe");
C. DataObject child = parent.createDataObject("http://Test/Child");DataObject child =
parent.createDataObject("http://Test/Child");
DataObject grandchild = child.createDataObject("http://Test/GrandChild");
grandchild.setString("name", "John Doe");
D. parent.setString("name", "John Doe");
正解:A
質問 3:
Refer to the Exhibit.

Which of the following statements is TRUE?
A. Java cannot be used for the date selection criteria.
B. The configuration is correct.
C. The default rule logic cannot be duplicated in the date selection ranges.
D. The date selection ranges are incorrect.
正解:B
質問 4:
Refer to the Exhibit.

As shown in the Exhibit, both modules of SolutionA reference the library, which is configured to be deployed with the module.
If an integration developer exports SolutionA for command-line service deployment, the result is:If an integration developer exports SolutionA for command-line service deployment, the result is:
A. two enterprise archives, one for each module, containing the archives for the library, the module and a web application.
B. one zip file containing the folders for the library and both modules.
C. two zip files, one for each module, containing the folders for the library and the module.
D. one enterprise archive containing the archives for the library, both modules, and a web application.
正解:C
質問 5:
Refer to the Exhibit.

The process variable decision is a Boolean. Invoke1 and Invoke2 return a "true" result.
All test cases for the process represent valid data. Some cases have data which result in neither invoke activity being called, and as a result a null pointer exception is thrown in the Case True case of the Evaluate "Decision" choice.
The process variable decision is a Boolean. Invoke1 and Invoke2 return a "true" result. All test cases for the process represent valid data. Some cases have data which result in neither invoke activity being called, and as a result a null pointer exception is thrown in the Case True case of the Evaluate "Decision" choice. The process variable decision is a Boolean. Invoke1 and Invoke2 return a "true" result.
All test cases for the process represent valid data. Some cases have data which result in neither invoke activity being called, and as a result a null pointer exception is thrown in the Case True case of the Evaluate "Decision" choice.
The process variable decision is a Boolean. Invoke1 and Invoke2 return a "true" result. All test cases for the process represent valid data. Some cases have data which result in neither invoke activity being called, and as a result a null pointer exception is thrown in the Case True case of the Evaluate "Decision" choice. Which of the following is the BEST way to eliminate the exception?
A. Add an invoke activity that returns "false" and call that first.
B. Move the assign activity outside the parallel activities scope so that it always runs.
C. Remove the condition on the path to the Invoke1 or Invoke2 activity to ensure that that activity always runs.
D. Use the initialize variable option for the decision variable to set it to false when an instance is created.
正解:D
質問 6:
Refer to the Exhibit.

Which of the following statements BEST describes the process?
A. An undo-operation should not be set on the Invoke activity.
B. If the target activity of the compensate activity is not set, no compensation will occur.
C. The compensation handler of the Invoke activity must contain a compensate activity.
D. It is possible for compensation to occur on the Invoke activity if no faults are thrown.
正解:A
質問 7:
Refer to the Exhibit.

When developing Component1, the integration developer needs to query the balance of the
source Account.
Assume that the namespace of all types is http://ExampleProcess.
Which of the following is the BEST solution?
A. Service partner1 = (Service) ServiceManager.INSTANCE.locateService("http://ExampleProcess","AccountMgntPartner1
");
DataObject balance = (DataObject) partner1.invoke("getBalance", source);
B. Service partner1 = (Service)
ServiceManager.INSTANCE.locateService("http://ExampleProcess","AccountMgntPartner1
");
DataObject balance = (DataObject) partner1. getBalance(source);
C. Service partner1 = (Service)
ServiceManager.INSTANCE.locateService("AccountMgntPartner1");
DataObject balance = (DataObject) partner1.invoke("getBalance", source);
D. AccountMgnt Partner1 = (AccountMgnt)
ServiceManager.INSTANCE.locateService("AccountMgntPartner1");
DataObject balance = (DataObject) partner1.getBalance(source);
正解:C
質問 8:
Refer to the Exhibit.

Which of the following statements CORRECTLY describes the configuration?
A. The interface implemented by Component1 must have only 1 operation.
B. The TargetFunctionName HTTP header must be set on the incoming request in order to invoke Component1.
C. Any operations implemented by Component1 must be two-way because the HTTP export binding is synchronous.
D. Component1 can be invoked using a SOAP input message.
正解:A





0 お客様のコメント