What condition requires using a CloudHub Dedicated Load Balancer?
What condition requires using a CloudHub Dedicated Load Balancer?A . When cross-region load balancing is required between separate deployments of the same Mule applicationB . When custom DNS names are required for API implementations deployed to customer-hosted Mule runtimesC . When API invocations across multiple CloudHub workers must be load...
What is the best API fault-tolerant invocation strategy to reduce overall errors in the process API, given these conditions and constraints?
A system API is deployed to a primary environment as well as to a disaster recovery (DR) environment, with different DNS names in each environment. A process API is a client to the system API and is being rate limited by the system API, with different limits in each of...
What additional canonical models, bounded-context models, or anti-corruption layers are best added to this architecture to help process data consumed from the backend system?
An organization has created an API-led architecture that uses various API layers to integrate mobile clients with a backend system. The backend system consists of a number of specialized components and can be accessed via a REST API. The process and experience APIs share the same bounded-context model that is...
According to MuleSoft, what organization structure could have saved the app team two months of development time?
An app team is developing a mobile banking app. It took them two months to create their own APIs to access transaction information from a central database. The app team later found out that another team had already built an API that accesses the transaction information they need. According to...
What is a typical result of using a fine-grained rather than a coarse-grained API deployment model to implement a given business process?
What is a typical result of using a fine-grained rather than a coarse-grained API deployment model to implement a given business process?A . A decrease in the number of connections within the application network supporting the business processB . A higher number of discoverable API-related assets in the application networkC...
What is the DataWeave expression to log the Content-Type header using a Logger component?
A flow contains an HTTP Listener as the event source . What is the DataWeave expression to log the Content-Type header using a Logger component?A . #["Content-Type: " ++ attributes.headers.'content-type']B . #["Content-Type: " + headers.'content-type']C . #["Content-Type: " + attributes.headers.'content-type']D . #["Content-Type: " ++ headers.'content-type']View AnswerAnswer: A Explanation: Option 1...
What attribute you would change in ClientRequestFlow to make this implementation work successfully?
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?...
host: " localhost"
host: " localhost"View AnswerAnswer: B Explanation: Correct answer is as below as it follows the correct syntax http: basepath: "api" host: "localhost" port: "8081"
Where must the global error handler be specified so that the global error handler catches all errors from flows without their own error handlers?
A Mule application contains a global error handler configured to catch any errors. Where must the global error handler be specified so that the global error handler catches all errors from flows without their own error handlers?A . A configuration properties fileB . Nowhere, the global error handler is automatically...
What step of gaining access to the API can be performed automatically by Anypoint Platform?
An organization has implemented a Customer Address API to retrieve customer address information. This API has been deployed to multiple environments and has been configured to enforce client IDs everywhere. A developer is writing a client application to allow a user to update their address. The developer has found the...