[Mar 18, 2026] Get Up-To-Date Real Exam Questions for MuleSoft-Integration-Architect-I with New Materials [Q154-Q178]

Share

[Mar 18, 2026] Get Up-To-Date Real Exam Questions for MuleSoft-Integration-Architect-I with New Materials

Updated MuleSoft-Integration-Architect-I Certification Exam Sample Questions


Salesforce MuleSoft-Integration-Architect-I Exam Syllabus Topics:

TopicDetails
Topic 1
  • Designing Integration Solutions to Meet Performance Requirements: This topic covers meeting performance and capacity goals, using streaming features, and processing large message sequences.
Topic 2
  • Designing Architecture Using Integration Paradigms: This topic focuses on creating high-level integration architectures using various paradigms. It includes API-led connectivity, web APIs and HTTP, event-driven APIs, and message brokers, and designing Mule application using messaging patterns and technologies.
Topic 3
  • Designing and Developing Mule Applications: It includes selecting application properties, using fundamental features, designing with core routers, understanding the Salesforce Connector, and leveraging core connectors.
Topic 4
  • Designing Integration Solutions to Meet Reliability Requirements: It includes selecting alternatives to traditional transactions, recognizing the purpose of various scopes and strategies, differentiating disaster recovery and high availability, and using local and XA transactions.
Topic 5
  • Designing Automated Tests for Mule Applications: This topic covers unit test suites, and scenarios for integration and performance testing.
Topic 6
  • Initiating Integration Solutions on Anypoint Platform: Summarizing MuleSoft Catalyst and Catalyst Knowledge Hub, differentiating between functional and non-functional requirements, selecting features for designing and managing APIs, and choosing deployment options are its sub-topics.
Topic 7
  • Applying DevOps Practices and Operating Integration Solutions: Its sub-topics are related to designing CI
  • CD pipelines with MuleSoft plugins, automating interactions with Anypoint Platform, designing logging configurations, and identifying Anypoint Monitoring features.
Topic 8
  • Designing Integration Solutions to Meet Security Requirements: This topic emphasizes securing access to the Anypoint Platform and APIs, using Anypoint Security, counteracting security vulnerabilities, and understanding audit logging capabilities.

 

NEW QUESTION # 154
An external web UI application currently accepts occasional HTTP requests from client web browsers to change (insert, update, or delete) inventory pricing information in an inventory system's database. Each inventory pricing change must be transformed and then synchronized with multiple customer experience systems in near real-time (in under 10 seconds). New customer experience systems are expected to be added in the future.
The database is used heavily and limits the number of SELECT queries that can be made to the database to 10 requests per hour per user.
What is the most scalable, idiomatic (used for its intended purpose), decoupled. reusable, and maintainable integration mechanism available to synchronize each inventory pricing change with the various customer experience systems in near real-time?

  • A. Replace the external web UI application with a Mule application to accept HTTP requests from client web browsers In the same Mule application, use a Batch Job scope to test if the database request will succeed, aggregate pricing changes within a short time window, and then update both the inventory pricing database and each customer experience system using a Parallel For Each scope
  • B. Add a trigger to the inventory-pricing database table so that for each change to the inventory pricing database, a stored procedure is called that makes a REST call to a Mule application Write the Mule application to publish each Mule event as a message to an Anypoint MQ exchange Write other Mule applications to subscribe to the Anypoint MQ exchange, transform each received message, and then update the Mule application's corresponding customer experience system(s)
  • C. Write a Mule application with a Database On Table Row event source configured for the inventory pricing database, with the watermark attribute set to an appropriate database column In the same now, use a Scatter-Gather to call each customer experience system's REST API with transformed inventory-pricing records
  • D. Write a Mule application with a Database On Table Row event source configured for the inventory pricing database, with the ID attribute set to an appropriate database column In the same flow, use a Batch Job scope to publish transformed Inventory-pricing records to an Anypoint MQ queue Write other Mule applications to subscribe to the Anypoint MQ queue, transform each received message, and then update the Mule application's corresponding customer experience system(s)

Answer: B


NEW QUESTION # 155
Anypoint Exchange is required to maintain the source code of some of the assets committed to it, such as Connectors, Templates, and API specifications.
What is the best way to use an organization's source-code management (SCM) system in this context?

  • A. Organizations can continue to use an SCM system of their choice for branching and merging, as long as they follow the branching and merging strategy enforced by Anypoint Exchange
  • B. Organizations need to point Anypoint Exchange to their SCM system so Anypoint Exchange can pull source code when requested by developers and provide it to Anypoint Studio
  • C. Organizations should continue to use an SCM system of their choice, in addition to keeping source code for these asset types in Anypoint Exchange, thereby enabling parallel development, branching, and merging
  • D. Organizations need to use Anypoint Exchange as the main SCM system to centralize versioning and avoid code duplication

Answer: D

Explanation:
* Organization should continue to use SCM system of their choice, in addition to keeping source code for these asset types in Anypoint Exchange, thereby enabling parallel development, branching.
* Reason is that Anypoint exchange is not full fledged version repositories like GitHub.
* But at same time it is tightly coupled with Mule assets


NEW QUESTION # 156
A retail company is implementing a MuleSoft API to get inventory details from two vendors by Invoking each vendor's online applications. Due to network issues, the invocations to the vendor applications are timing out intermittently, but the requests are successful after re-invoking each What is the most performant way of implementing the API to invoke each vendor application and to retry invocations that generate timeout errors?

  • A. Use a For-Each scope to invoke the two vendor applications in series, one after the other.
    Place the For-Each scope inside an Until-Successful scope to retry requests that raise timeout errors.
  • B. Use a Choice scope to Invoke each vendor application on a separate route.
    Place the Choice scope inside an Until-Successful scope to retry requests that raise timeout errors.
  • C. Use a Round-Robin scope to invoke each vendor application on a separate route.
    Use a Try-Catch scope in each route to retry requests that raise timeout errors.
  • D. Use a Scatter-Gather scope to invoke each vendor application on a separate route.
    Use an Until-Successful scope in each route to retry requests that raise timeout errors.

Answer: A


NEW QUESTION # 157
During a planning session with the executive leadership, the development team director presents plans for a new API to expose the data in the company's order database. An earlier effort to build an API on top of this data failed, so the director is recommending a design-first approach.
Which characteristics of a design-first approach will help make this API successful?

  • A. Adding global policies to the API so all developers automatically secure the implementation before coding anything
  • B. Publishing the fully implemented API to Exchange so all developers can reuse the API
  • C. Developing a specification so consumers can test before the implementation is built
  • D. Building MUnit tests so administrators can confirm code coverage percentage during deployment

Answer: C


NEW QUESTION # 158
An organization is designing an integration Mule application to process orders by submitting them to a back-end system for offline processing. Each order will be received by the Mule application through an HTTPS POST and must be acknowledged immediately. Once acknowledged, the order will be submitted to a back-end system. Orders that cannot be successfully submitted due to rejections from the back-end system will need to be processed manually (outside the back-end system).
The Mule application will be deployed to a customer-hosted runtime and is able to use an existing ActiveMQ broker if needed. The ActiveMQ broker is located inside the organization's firewall. The back-end system has a track record of unreliability due to both minor network connectivity issues and longer outages.
What idiomatic (used for their intended purposes) combination of Mule application components and ActiveMQ queues are required to ensure automatic submission of orders to the back-end system while supporting but minimizing manual order processing?

  • A. An Until Successful scope to call the back-end system
    One or more ActiveMQ long-retry queues
    One or more ActiveMQ dead-letter queues for manual processing
  • B. One or more On Error scopes to assist calling the back-end system
    One or more ActiveMQ long-retry queues
    A persistent dead-letter object store configured in the CloudHub Object Store service
  • C. A Batch Job scope to call the back-end system
    An Until Successful scope containing Object Store components for long retries A dead-letter object store configured in the Mule application
  • D. One or more On Error scopes to assist calling the back-end system
    An Until Successful scope containing VM components for long retries
    A persistent dead-letter VM queue configured in CloudHub

Answer: A


NEW QUESTION # 159
When designing an upstream API and its implementation, the development team has been advised to not set timeouts when invoking downstream API. Because the downstream API has no SLA that can be relied upon. This is the only donwstream API dependency of that upstream API. Assume the downstream API runs uninterrupted without crashing. What is the impact of this advice?

  • A. An SLA for the upstream API CANNOT be provided.
  • B. The invocation of the downstream API will run to completion without timing out.
  • C. A load-dependent timeout of less than 1000 ms will be applied by the Mule runtime in which the downstream API implementation executes.
  • D. A default timeout of 500 ms will automatically be applied by the Mule runtime in which the upstream API implementation executes.

Answer: A

Explanation:
An SLA for the upstream API CANNOT be provided.


NEW QUESTION # 160
Refer to the exhibit.
A Mule application is being designed to expose a SOAP web service to its clients.
What language is typically used inside the web service's interface definition to define the data structures that the web service Is expected to exchange with its clients?

  • A. WSDL
  • B. XSD
  • C. RAMI
  • D. JSON Schema

Answer: B

Explanation:
Correct answer: XSD In this approach to developing a web service, you begin with
----------------------------------------------------------------------------------------------------------------- Reference: https://www.w3schools.com/xml/schema_intro.asp


NEW QUESTION # 161
An insurance company is using a CIoudHub runtime plane. As a part of requirement, email alert should be sent to internal operations team every time of policy applied to an API instance is deleted As an integration architect suggest on how this requirement be met?

  • A. Create a custom connector to be triggered every time of policy is deleted in API manager
  • B. Use audit logs in Anypoint platform to detect a policy deletion and configure the Audit logs alert feature to send an email to the operations team
  • C. Implement a new application that uses the Audit log REST API to
  • D. Use Anypoint monitoring to configure an alert that sends an email to the operations team every time a policy is deleted in API manager

Answer: C

Explanation:
detect the policy deletion and send an email to operations team the SMTP connector


NEW QUESTION # 162
In Anypoint Platform, a company wants to configure multiple identity providers (IdPs) for multiple lines of business (LOBs). Multiple business groups, teams, and environments have been defined for these LOBs.
What Anypoint Platform feature can use multiple IdPs across the company's business groups, teams, and environments?

  • A. Virtual private clouds
  • B. Permissions
  • C. Client (application) management
  • D. MuleSoft-hosted (CloudHub) dedicated load balancers

Answer: D

Explanation:
To use a dedicated load balancer in your environment, you must first create an Anypoint VPC. Because you can associate multiple environments with the same Anypoint VPC, you can use the same dedicated load balancer for your different environments.


NEW QUESTION # 163
A project team is working on an API implementation using the RAML definition as a starting point. The team has updated the definition to include new operations and has published a new version to exchange. Meanwhile another team is working on a mule application consuming the same API implementation.
During the development what has to be performed by the mule application team to take advantage of the newly added operations?

  • A. Scaffold API implementation application with the new definition
  • B. Scaffold the client application with the new definition
  • C. Update the REST connector from exchange in the client application
  • D. Update the API connector in the API implementation and publish to exchange

Answer: C


NEW QUESTION # 164
What is true about the network connections when a Mule application uses a JMS connector to interact with a JMS provider (message broker)?

  • A. To receive messages into the Mule application, the JMS provider initiates a network connection to the JMS connector and pushes messages along this connection
  • B. To complete sending a JMS message, the JMS connector must establish a network connection with the JMS message recipient
  • C. The AMQP protocol can be used by the JMS connector to portably establish connections to various types of JMS providers
  • D. The JMS connector supports both sending and receiving of JMS messages over the protocol determined by the JMS provider

Answer: D

Explanation:
* To send message or receive JMS (Java Message Service) message no separate network connection need to be established. So option A, C and D are ruled out.
Correct answer: The JMS connector supports both sending and receiving of JMS
* JMS Connector enables sending and receiving messages to queues and topics for any message service that implements the JMS specification.
* JMS is a widely used API for message-oriented middleware.
* It enables the communication between different components of a distributed application to be loosely coupled, reliable, and asynchronous.
MuleSoft Doc Reference: https://docs.mulesoft.com/jms-connector/1.7/


NEW QUESTION # 165
What aspects of a CI/CD pipeline for Mule applications can be automated using MuleSoft-provided Maven plugins?

  • A. Compile, package, unit test, deploy, integration test (Incorrect)
  • B. Compile, package, unit test, validate unit test coverage, deploy
  • C. Compile, package, unit test, deploy, create associated API instances in API Manager
  • D. Import from API designer, compile, package, unit test, deploy, publish to Anypoint Exchange

Answer: B

Explanation:
Correct answer is "Compile, package, unit test, validate unit test coverage, deploy" Explanation : Anypoint Platform supports continuous integration and continuous delivery using industry standard tools Mule Maven Plugin The Mule Maven plugin can automate building, packaging and deployment of Mule applications from source projects Using the Mule Maven plugin, you can automate your Mule application deployment to CloudHub, to Anypoint Runtime Fabric, or on-premises, using any of the following deployment strategies * CloudHub deployment * Runtime Fabric deployment * Runtime Manager REST API deployment * Runtime Manager agent deployment MUnit Maven Plugin The MUnit Maven plugin can automate test execution, and ties in with the Mule Maven plugin. It provides a full suite of integration and unit test capabilities, and is fully integrated with Maven and Surefire for integration with your continuous deployment environment. Since MUnit 2.x, the coverage report goal is integrated with the maven reporting section. Coverage Reports are generated during Maven's site lifecycle, during the coverage-report goal. One of the features of MUnit Coverage is to fail the build if a certain coverage level is not reached. MUnit is not used for integration testing Also publishing to Anypoint Exchange or to create associated API instances in API Manager is not a part of CICD pipeline which can ne achieved using mulesoft provided maven plugin Explanation:
Architecture mentioned in the question can be diagrammatically put as below. Persistent Object Store is the correct answer .
* Mule Object Stores: An object store is a facility for storing objects in or across Mule applications. Mule uses object stores to persist data for eventual retrieval.
Mule provides two types of object stores:
1) In-memory store - stores objects in local Mule runtime memory. Objects are lost on shutdown of the Mule runtime. So we cant use in memory store in our scenario as we want to share watermark within all cloudhub workers
2) Persistent store - Mule persists data when an object store is explicitly configured to be persistent. Hence this watermark will be available even any of the worker goes down Diagram Description automatically generated


NEW QUESTION # 166
An organization has defined a common object model in Java to mediate the communication between different Mule applications in a consistent way. A Mule application is being built to use this common object model to process responses from a SOAP API and a REST API and then write the processed results to an order management system.
The developers want Anypoint Studio to utilize these common objects to assist in creating mappings for various transformation steps in the Mule application.
What is the most idiomatic (used for its intended purpose) and performant way to utilize these common objects to map between the inbound and outbound systems in the Mule application?

  • A. Use the Java module
  • B. Use the Transform Message component
  • C. Use the WSS module
  • D. Use JAXB (XML) and Jackson (JSON) data bindings

Answer: D


NEW QUESTION # 167
What requirement prevents using Anypoint MQ as the messaging broker for a Mule application?

  • A. When the messaging broker must be deployed on-premises
  • B. When the payload sent through the message broker must be encrypted
  • C. When the messaging broker must support point-to-point messaging
  • D. When the payload sent through the message broker must use XML format

Answer: A

Explanation:
Anypoint MQ is a cloud-based messaging service provided by MuleSoft, and it cannot be deployed on- premises. If there is a requirement for the messaging broker to be deployed on-premises, Anypoint MQ would not be suitable. Other considerations such as payload format (XML), encryption, and point-to-point messaging are supported by Anypoint MQ, but the deployment environment requirement is a critical constraint.
References
* MuleSoft Anypoint MQ Documentation
* Cloud vs. On-Premises Messaging Solutions


NEW QUESTION # 168
An insurance provider is implementing Anypoint platform to manage its application infrastructure and is using the customer hosted runtime for its business due to certain financial requirements it must meet. It has built a number of synchronous API's and is currently hosting these on a mule runtime on one server These applications make use of a number of components including heavy use of object stores and VM queues.
Business has grown rapidly in the last year and the insurance provider is starting to receive reports of reliability issues from its applications.
The DevOps team indicates that the API's are currently handling too many requests and this is over loading the server. The team has also mentioned that there is a significant downtime when the server is down for maintenance.
As an integration architect, which option would you suggest to mitigate these issues?

  • A. Change applications by use an event-driven model
  • B. Increase physical specifications of server CPU memory and network
  • C. Add a load balancer and add additional servers in a cluster configuration
  • D. Add a load balancer and add additional servers in a server group configuration

Answer: C

Explanation:
To address the reliability and scalability issues faced by the insurance provider, adding a load balancer and configuring additional servers in a cluster configuration is the optimal solution. Here's why:
* Load Balancing: Implementing a load balancer will help distribute incoming API requests evenly across multiple servers. This prevents any single server from becoming a bottleneck, thereby improving the overall performance and reliability of the system.
* Cluster Configuration: By setting up a cluster configuration, you ensure that multiple servers work together as a single unit. This provides several benefits:
* High Availability: If one server goes down, the load balancer can redirect traffic to other available servers in the cluster, minimizing downtime.
* Scalability: Additional servers can be added to the cluster to handle increased load as the business grows.
* Fault Tolerance: Clustering allows for automatic failover and recovery, ensuring that applications remain available even if one server fails.
* Maintenance: With a cluster configuration, servers can be taken offline for maintenance one at a time without affecting the overall availability of the applications, as the load balancer can redirect traffic to the remaining servers.
* VM Queues and Object Stores: In a clustered environment, the use of VM queues and object stores can be more efficiently managed as these resources are distributed across multiple servers, reducing the risk of contention and improving throughput.
MuleSoft Documentation on Clustering: https://docs.mulesoft.com/mule-runtime/4.3/clustering Best Practices for Scaling Mule Applications: https://blogs.mulesoft.com/dev/mule-dev/mule-4-scaling- applications/


NEW QUESTION # 169
A mule application is deployed to a Single Cloudhub worker and the public URL appears in Runtime Manager as the APP URL.
Requests are sent by external web clients over the public internet to the mule application App url. Each of these requests routed to the HTTPS Listener event source of the running Mule application.
Later, the DevOps team edits some properties of this running Mule application in Runtime Manager.
Immediately after the new property values are applied in runtime manager, how is the current Mule application deployment affected and how will future web client requests to the Mule application be handled?

  • A. Cloudhub will redeploy the mule application to the OLD Cloudhub worker New web client requests are ROUTED to the OLD Cloudhub worker BOTH before and after the Mule application is redeployed.
  • B. Cloudhub will redeploy the Mule application to the OLD Cloudhub worker New web client requests will RETURN AN ERROR until the Mule application is redeployed to the OLD Cloudhub worker
  • C. Cloudhub will redeploy the Mule application to a NEW Cloudhub worker New web client requests are ROUTED to the OLD Cloudhub worker until the NEW Cloudhub worker is available.
  • D. CloudHub will redeploy the Mule application to a NEW Cloudhub worker New web client requests will RETURN AN ERROR until the NEW Cloudhub worker is available

Answer: C

Explanation:
CloudHub supports updating your applications at runtime so end users of your HTTP APIs experience zero downtime. While your application update is deploying, CloudHub keeps the old version of your application running. Your domain points to the old version of your application until the newly uploaded version is fully started. This allows you to keep servicing requests from your old application while the new version of your application is starting.


NEW QUESTION # 170
An organization's security requirements mandate centralized control at all times over authentication and authorization of external applications when invoking web APIs managed on Anypoint Platform.
What Anypoint Platform feature is most idiomatic (used for its intended purpose), straightforward, and maintainable to use to meet this requirement?

  • A. Client management configured in access management
  • B. Identity management configured in access management
  • C. Enterprise Security module coded in Mule applications
  • D. External access configured in API Manager

Answer: A

Explanation:
Reference: https://blogs.mulesoft.com/dev-guides/api-security-ways-to-authenticate-and-authorize/


NEW QUESTION # 171
An organization is choosing between API-led connectivity and other integration approaches.
According to MuleSoft, which business benefits is associated with an API-led connectivity approach using Anypoint Platform?

  • A. Higher outcome repeatability through centralized development
  • B. improved security through adoption of monolithic architectures
  • C. Increased developer productivity through sell-service of API assets
  • D. Greater project predictability through tight coupling of systems

Answer: C


NEW QUESTION # 172
Mule application muleA deployed in cloudhub uses Object Store v2 to share data across instances. As a part of new requirement , application muleB which is deployed in same region wants to access this Object Store.
Which of the following option you would suggest which will have minimum latency in this scenario?

  • A. Object Store of one mule application cannot be accessed by other mule application.
  • B. Both of the above option will have same latency
  • C. Object Store REST API
  • D. Object Store connector

Answer: C

Explanation:
V2 Rest API is recommended for on premise applications to access Object Store. It also comes with overhead of encryption and security of using rest api. With Object Store v2, the API call is localized to the same data center as the Runtime Manager app.
But in this case requirement is to access the OS of other mule application and not the same mule application.
You can configure a Mule app to use the Object Store REST API to store and retrieve values from an object store in another Mule app.
However, Object Store v2 is not designed for app-to-app communication.


NEW QUESTION # 173
An organization is building out a test suite for their application using MUnit.
The Integration Architect has recommended using Test Recorder in Anypoint Studio to record the processing flows and then configure unit tests based on the captured events.
What Is a core consideration that must be kept In mind while using Test Recorder?

  • A. The Recorder supports loops where the structure of the data being tested changes inside the Iteration
  • B. Tests for flows cannot be created if Mule errors are raised Inside the flows, even if the errors are handled by On-Error Continue error handlers
  • C. The Recorder supports mocking a message before or inside a Foreach processor
  • D. Mocking values resulting from parallel processes are possible and will not affect theexecution of the processors that follow in the test

Answer: B

Explanation:
* MUnit and Test Recorder:
* MUnit is MuleSoft's testing framework designed to create automated tests for Mule applications.
* Test Recorder in Anypoint Studio allows capturing live processing flows and events to automatically generate test cases.
* Core Consideration:
* While using Test Recorder, it is essential to consider how errors within the flows are handled.
* If Mule errors are raised within the flows, Test Recorder will not be able to create tests for these flows, even if the errors are managed by On-Error Continue error handlers.
* This limitation requires careful design and error handling strategies to ensure test cases can be recorded and executed effectively.
* Error Handling in MUnit:
* MUnit allows simulating error scenarios using mocks and spies.
* Proper error handling within the application flow ensures robustness and reliable test creation.
* However, the inability to create tests when errors are raised during recording indicates a need for alternative approaches to manage errors during test case generation.
MuleSoft Documentation on MUnit: MUnit Documentation
MuleSoft Blog on MUnit Test Recorder: MUnit Test Recorder


NEW QUESTION # 174
Refer to the exhibit.
An organization is designing a Mule application to receive data from one external business partner. The two companies currently have no shared IT infrastructure and do not want to establish one. Instead, all communication should be over the public internet (with no VPN).
What Anypoint Connector can be used in the organization's Mule application to securely receive data from this external business partner?

  • A. VM connector
  • B. SFTP connector
  • C. File connector
  • D. Object Store connector

Answer: B

Explanation:
* Object Store and VM Store is used for sharing data inter or intra mule applications in same setup. Can't be used with external Business Partner
* Also File connector will not be useful as the two companies currently have no shared IT infrastructure. It's specific for local use.
* Correct answer is SFTP connector. The SFTP Connector implements a secure file transport channel so that your Mule application can exchange files with external resources. SFTP uses the SSH security protocol to transfer messages. You can implement the SFTP endpoint as an inbound endpoint with a one-way exchange pattern, or as an outbound endpoint configured for either a one-way or request-response exchange pattern.


NEW QUESTION # 175
An API implementation is being developed to expose data from a production database via HTTP requests. The API implementation executes a database SELECT statement that is dynamically created based upon data received from each incoming HTTP request. The developers are planning to use various types of testing to make sure the Mule application works as expected, can handle specific workloads, and behaves correctly from an API consumer perspective. What type of testing would typically mock the results from each SELECT statement rather than actually execute it in the production database?

  • A. Functional testing (black box)
  • B. Performance testing
  • C. Integration testing
  • D. Unit testing (white box)

Answer: D

Explanation:
In Unit testing instead of using actual backends, stubs are used for the backend services. This ensures that developers are not blocked and have no dependency on other systems.
In Unit testing instead of using actual backends, stubs are used for the backend services. This ensures that developers are not blocked and have no dependency on other systems.
Below are the typical characteristics of unit testing.
-- Unit tests do not require deployment into any special environment, such as a staging environment
-- Unit tests san be run from within an embedded Mule runtime
-- Unit tests can/should be implemented using MUnit
-- For read-only interactions to any dependencies (such as other APIs): allowed to invoke production endpoints
-- For write interactions: developers must implement mocks using MUnit
-- Require knowledge of the implementation details of the API implementation under test


NEW QUESTION # 176
An organization is evaluating using the CloudHub shared Load Balancer (SLB) vs creating a CloudHub dedicated load balancer (DLB). They are evaluating how this choice affects the various types of certificates used by CloudHub deployed Mule applications, including MuleSoft-provided, customer-provided, or Mule application-provided certificates. What type of restrictions exist on the types of certificates for the service that can be exposed by the CloudHub Shared Load Balancer (SLB) to external web clients over the public internet?

  • A. All certificates which can be used in shared load balancer need to get approved by raising support ticket
  • B. Underlying Mule applications need to implement own certificates
  • C. Only self signed certificates can be used
  • D. Only MuleSoft provided certificates can be used for server side certificate

Answer: D

Explanation:
Correct answer is Only MuleSoft provided certificates can be used for server side certificate
* The CloudHub Shared Load Balancer terminates TLS connections and uses its own server-side certificate.
* You would need to use dedicated load balancer which can enable you to define SSL configurations to provide custom certificates and optionally enforce two-way SSL client authentication.
* To use a dedicated load balancer in your environment, you must first create an Anypoint VPC. Because you can associate multiple environments with the same Anypoint VPC, you can use the same dedicated load balancer for your different environments.
Additional Info on SLB Vs DLB:
Table Description automatically generated


NEW QUESTION # 177
An organization is designing a Mule application to periodically poll an SFTP location for new files containing sales order records and then process those sales orders. Each sales order must be processed exactly once.
To support this requirement, the Mule application must identify and filter duplicate sales orders on the basis of a unique ID contained in each sales order record and then only send the new sales orders to the downstream system.
What is the most idiomatic (used for its intended purpose) Anypoint connector, validator, or scope that can be configured in the Mule application to filter duplicate sales orders on the basis of the unique ID field contained in each sales order record?

  • A. Configure a Cache scope to filter and store each record from the received file by the order ID
  • B. Configure a Database connector to filter and store each record by the order ID
  • C. Configure an Idempotent Message Validator component to filter each record by the order ID
  • D. Configure a watermark In an On New or Updated File event source to filter unique records by the order ID

Answer: C

Explanation:
Reference: https://docs.mulesoft.com/mule-runtime/3.9/idempotent-filter


NEW QUESTION # 178
......

MuleSoft-Integration-Architect-I Study Guide Cover to Cover as Literally: https://validdumps.free4torrent.com/MuleSoft-Integration-Architect-I-valid-dumps-torrent.html