試験の準備方法-有難いSalesforce-MuleSoft-Developer-I日本語版参考書試験-最高のSalesforce-MuleSoft-Developer-I日本語解説集望ましい仕事を見つけるのに十分な競争力がないと感じたら、 あなたはSalesforce-MuleSoft-Developer-I認定試験資格証明書を取得するべきです。 私たちのSalesforce-MuleSoft-Developer-I試験教材は、あなたが就職市場で最も一般的なスキルを身につけるのに役立ちます。 そうすれば、望ましい仕事を見つけることができます。 また、私たちのSalesforce-MuleSoft-Developer-I試験教材に関する基礎知識があるかどうかは構わないです。実際Salesforce-MuleSoft-Developer-I試験に対して試験ガイドがあります。 Salesforce Certified MuleSoft Developer (Mule-Dev-201) 認定 Salesforce-MuleSoft-Developer-I 試験問題 (Q62-Q67):質問 # 62
Refer to the exhibits.
Set paylaod transformer is set the firstName and lastName of the customer as shown in below images.
What is thecorrect Dataweave expression which can be added in message attribute of a Logger activity to access firstName (which in this case is Madhav) from the incoming event?
A. vars."customer"."firstName"
B. vars."customer.firstName"
C. customer.firstName
D. firstName
正解:A
解説:
Correct answer is vars."customer"."firstName"
Please note that you can also access firstName using this syntax vars.customer.firstName.
Mule Ref Doc : Variables in Mule Apps | MuleSoft Documentation
質問 # 63
A Mule project contains a DataWeave module file WebStore dvA that defines a function named loginUser The module file is located in the projects src/main/resources/libs/dw folder What is correct DataWeave code to import all of the WebStore.dwl file's functions and then call the loginUser function for the login "cindy.park@example.com"?
A.
B.
C.
D.
正解:C
質問 # 64
Refer to the exhibits.
What is written to the records.csv file when the flow executes?
A. The JSON payload
B. An error message
C. The payload convert to CVS
D. Nothing
正解:A
解説:
Transform Message Add write_date is coverting payload in JSON format and same JSON payload is avaialble to file write processor. However, if the payload is a different format (for example, not CSV) , you can place the transformation inside the Write operation to generate content that will be written without producing a side effect on the message in transit. This is not done in this case. By default, the connector writes whatever is in the message payload. Hence JSON payload will be written to file.
質問 # 65
A web client sends one GET request to the test flow's HTTP Listener, which causes the test flow to call the updateTemp flow After the test flow returns a response, the web client then sends a different GET request to trie getTemp flow's HTTP Listener The test flow is not called a second time.
What response is returned from the request to the getTemp flow's HTTP Listener?
A.
B.
C.
D.
正解:D
質問 # 66
Refer to the exhibits. Client sends the request to ClientRequestFlow which calls ShippingFlow using HTTP Request activity.
During E2E testing it is found that that HTTP:METHOD_NOT_ALLOWED error is thrown whenever client sends request to this flow.
What attribute you would change in ClientRequestFlow to make this implementation work successfully?
A. Change the method attribute value to "*''
B. Change the allowed method attributes value to "POST"
C. Change the protocol attribute value to "HTTPS"
D. Change the path attribute value to "/api/ship"
正解:B
解説:
Correct answer is Change the method attributes value to "POST".
It can be fixed in either of the two ways as below.
1) Changing method attribute to POST in ClientRequestFlow
2) Setting allowedMethods as PUT in ShippingFlow (but doesn't fit as question mentions about changing ClientRequestFlow)