An API has been built to enable scheduling email provider. The front-end system does very little data entry validation, and problems have started to appear in the email that go to patients. A validate-customer'' flow is added validate the data.
What is he expected behavior of the `validate-customer'' flow?
A. If only the email address Is invalid a VALIDATION.INVALID_EMAIL error is raised
B. If the email address is invalid, processing continues to see if the appointment data and customer name are also invalid
C. If the appointment date and customer name are invalid, a SCHEDULE:INVALID_APPOINTMENT_DATE error is raised
D. If all of the values are invalid the last validation error is raised:SCHEDULE:INVALID_CUSTOMER_NAME
A developer has created the first version of an API designed for business partners to work commodity prices.
What should developer do to allow more than one major version of the same API to be exposed by the implementation?
A. In Design Center, open the RAML and modify each operation to includethe major version number
B. In Anypoint Studio, generate scaffolding from the RAML, and the modify the
C. In Design Center, open the RAML and modify baseUn to include a variable that indicates the version number
D. In Anypoint Studio, generate scaffolding from the RAML, and then modify the flow names generated by APIKit to include a variable with the major version number
Which pattern can a web API use to notify its client of state changes as soon as they occur?
A. HTTP Webhock
B. Shared database trigger
C. Schedule Event Publisher
D. ETL data load
A Mule application need to invoice an API hosted by an external system to initiate a process. The external API takes anywhere between one minute and 24 hours to compute its process.
Which implementation should be used to get response data from the external API after it completes processing?
A. Use an HTTP Connector to invoke the API and wait for a response
B. Use a Scheduler to check for a response every minute
C. Use an HTTP Connector inside Async scope to invoice the API and wait for a response D. Expose an HTTP callback API in Mule and register it with the external system
A Mule application for processing orders must log the order ID for every log message output.
What is a best practice to enrich every log message with the order ID?
A. Use flow variables within every logger processor to log the order ID
B. Set a flow variable and edit the log4/2.xml file to output the variable as part of the message pattern
C. Create a custom XML SDK component to wrap the logger processor and automatically add the order ID within the connector
D. Use the Tracing module to set logging variables with a Mapped Diagnostic Context
Refer to the exhibit.
Based on the code snippet, schema,json file, and payload below, what is the outcome of the given code snippet when a request is sent with the payload?
A. The Mule flow will execute successfully with status code 200, and the response will be the JSON sent in request
B. The Mule flow will execute successfully with status code 204
C. The Mule flow will throw the exception `JSON:SCHEMA_NOT_HONOURED
D. The Mule flow will execute successfully with status code 200m andaresponse will display the message `' Age in years which must equal to or greater than zero.''
A Mule application deployed to a standardalone Mule runtime uses VM queues to publish messages to be consumed asynchronously by another flow.
In the case of a system failure, what will happen to in-flight messages in the VM queues that have been consumed?
A. For nay type of queue, the message will be processed after the system comes online
B. For persistent queues, the message will be processed after the system comes online
C. For transient queues, the message will be processed after the system comes online
D. For any type of queue, the message will be lost
In a Mule project, Flow-1 contains a flow-ref to Flow-2 depends on data from Flow-1 to execute successfully.
Which action ensures the test suites and test cases written for Flow-1 and Flow-2 will executesuccessfully?
A. Chain together the test suites and test cases for Flow-1 and Flow-2
B. Use `'Set Event to pass the input that is needed, and keep the test cases for Flow-1 and Flow-2 independent
C. Use `'Before Test Case'' To collect data from Flow-1 test cases before running Flow-2 test cases
D. Use `After Test Case' to produce the data needed from Flow-1 test cases to pass to Flow-2 test cases
Refer to the exhibit.
When creating a new project, which API implementation allows for selecting the correct API version and scaffolding the flows from the API specification?
A. Import a published API
B. Generate a local RAML from anypoint Studio
C. Download RAML from Design Center'
D. Import RAML from local file
A Mule application defines as SSL/TLS keystore properly `tis,keystore.keyPassword'' as secure.
How canthis property be referenced to access its value within the application?
A. #{secure::tiskeystore,keyPassowrd}
B. ${secure::tiskeystore,keyPassowrd}
C. ${secure::tiskeystore,keyPassowrd}
D. p{secure::tiskeystore,keyPassowrd}