Salesforce-MuleSoft-Developer-I試験の準備方法|効果的なSalesforce-MuleSoft-Developer-Iテスト資料試験|最高のSalesforce Certified MuleSoft Developer (Mule-Dev-201)前提条件試験に合格することは、Salesforce試験問題と試験スキルの知識に基づいています。 Salesforce-MuleSoft-Developer-Iトレーニングクイズには、目的を同時に達成できる豊富なコンテンツがあります。 レビューでは、高効率のSalesforce Certified MuleSoft Developer (Mule-Dev-201)実践教材が重要な役割を果たすことがわかっています。 弊社の専門家も最新のコンテンツを収集し、試験のトレンドがどこに向かっているのか、実際にSalesforce Certified MuleSoft Developer (Mule-Dev-201)試験したいものを調査しています。 シラバスと新しいトレンドを分析することで、Salesforce-MuleSoft-Developer-I練習エンジンは、参考のためにこの試験に完全に一致しています。 したがって、Fast2testこの機会に取り組んでください。私たちの練習資料はあなたを失望させません。 Salesforce Certified MuleSoft Developer (Mule-Dev-201) 認定 Salesforce-MuleSoft-Developer-I 試験問題 (Q169-Q174):質問 # 169
Refer to the exhibits.
The two Mule configuration files belong to the same Mule project. Each HTTP Listener is configured with the same host string and the port number, path, and operation values are shown in the display names.
What is the minimum number of global elements that must be defined to support all these HTTP Listeners?
A. 0
B. 1
C. 2
D. 3
正解:C
解説:
In this case three configurations will be required each for port 8000, 6000 and 7000.
There would be three global elements defined for HTTP connections.
Each HTTP connection will have host and port. One example shown below with host as localhost and port 6000
To use an HTTP listener, you need to declare a configuration with a corresponding connection. This declaration establishes the HTTP server that will listen to requests.
Additionally, you can configure a base path that applies to all listeners using the configuration.
<http:listener-config name="HTTP_Listener_config" basePath="api/v1">
<http:listener-connection host="0.0.0.0" port="8081" />
</http:listener-config> https://docs.mulesoft.com/http-c ... tener-configuration
質問 # 170
Refer to the exhibits.
A Mule application is being developed to process web client POSTrequests with payloads containing order information including the user name and purchased items The Shipping connector returns a shipping address for the input payloads user name The Shipping connector's Shipping Address operation is configured with a target named shippingAddress.
The Set Payload transformer needs to set an item key equal to the items value from the original received payload and a shippinglnfo key equal to the the ShippingAddress operation's response What is a straightforward way to property configure the Set Payload transformer with the required data?
A.
B.
C.
D.
正解:A
質問 # 171
Refer to the exhibits.
The Batch Job scope contains two Batch Steps scopes with different accept expression.
The input payload is passed to the Batch Job scope.
After the entire payload is processed by the batch job scope , what messages have been logged by the Logger component?
A. 1. {amount=140}
2. {amount=102}
3. {step2amount=100}
B. 1. {amount=140}
2. {amount=102}
3. {step2amount=100}
4. {step2amount=140}
C. 1. {amount=140}
2. {amount=102}
3. {step2amount=100}
4. {step2amount=40}
D. 1. {amount=140}
2. {amount=102}
3. {step2amount=100}
4. {step2amount=140}
正解:D
解説:
5. {step2amount=102}
Explanation:
This question validates you knowledge on Batch Processing. Before we analyze the question , lets revise a bit about batch filters.
Batch Filters
You can apply one or more filters as attributes to any number of batch steps.
Imagine a batch job whose first batch step checks if a Salesforce contact exists for a record, and a second batch step that updates each existing Salesforce contact with new information. You can apply a filter to the second batch step to ensure it only processes records that didn't fail during the first batch step.
By having batch steps accept only some records for processing, you streamline the batch job so the Mule runtime engine can focus only on the relevant data for a particular batch step.
A batch step uses two attributes to filter records:
acceptExpression
acceptPolicy
Each batch step can accept one acceptExpression and one acceptPolicy attributes to filter records.
Use the acceptExpression attribute to process only records that evaluate to true; if the record evaluates to false, the batch step skips the record and sends it to the next one. In other words, the records with an accept expression that resolves to false are the ones that Mule filters out.
The example below filters out all records where the age is less than 21; the batch step does not process those records.
<batch:job jobName="batchJob">
<batch:process-records >
<batch:step name="adultsOnlyStep" acceptExpression="#[payload.age > 21]">
...
</batch:step>
</batch:process-records>
</batch:job>
Mule Ref Doc : Refining Batch Steps Processing | MuleSoft Documentation As we are clear with above concepts , now lets understand this solution step by step.
1) Batch Step (Less than 50)
Accept expression for this batch step is less than 50. Hence elements which will go in this batch step are amount value 40 and 2. Hence output of logger in first batch step is
{amount=140}
{amount=102}
2) Batch Step (Greater than 20)
Accept condition for this batch step is greater than 20. Note that input amount values for this batch step are 100 , 140 and 102 (last two values have been updated in batch step less than 50) As all values satisfy this condition out put of second logger is
{step2amount=100}
{step2amount=140}
{step2amount=102}
Hence correct answer to this question is
{amount=140}
{amount=102}
{step2amount=100}
{step2amount=140}
{step2amount=102}
2) Batch Step (Greater than 20)
Accept condition for this batch step is greater than 20. Note that input amount values for this batch step are 100 , 140 and 102 (last two values have been updated in batch step less than 50) As all values satisfy this condition out put of second logger is
{step2amount=100}
{step2amount=140}
{step2amount=102}
Hence correct answer to this question is
{amount=140}
{amount=102}
{step2amount=100}
{step2amount=140}
{step2amount=102}
質問 # 172
A. Option C
B.
C. Option A
D. Option B
E.
F.
G. Option D
H.
正解:D、F
質問 # 173
Refer to the exhibit.
In the execution of the Scatter_Gather, the flow1 route completes after 10 seconds and the flow2 route completes after 20 seconds.
Howmany seconds does it take for the Scatter_Gather to complete?