List of questions
Related questions
Question 94 - MCD - Level 1 discussion
A Utlility.dwl is located in a Mule project at src/main/resources/modules. The Utility.dwl file defines a function named encryptString that encrypts a String What is the correct DataWeave to call the encryptString function in a Transform Message component?
A.
1. %dw 2.0 2. output application/json 3. import modules::Utility 4. --- 5. Utility::encryptString( 'John Smith' )
B.
1. %dw 2.0 2. output application/json 3. import modules::Utility 4. --- 5. encryptString( 'John Smith' )
C.
1. %dw 2.0 2. output application/json 3. import modules.Utility 4. --- 5. encryptString( 'John Smith' )
D.
1. %dw 2.0 2. output application/json 3. import modules.Utility 4. --- 5. Utility.encryptString( 'John Smith' )
Your answer:
0 comments
Sorted by
Leave a comment first