# A2A Connector - Full Documentation # Using Anypoint Code Builder to Configure A2A Connector 1.1 > For the full documentation index, see: https://docs.mulesoft.com/llms.txt **Open Beta Release**: The **cloud IDE is in open beta**. Any use of Anypoint Code Builder in its beta state is subject to the applicable beta services terms and conditions, available from the IDE. To use Anypoint Code Builder to configure a connector or module, create a basic integration project in Anypoint Code Builder, add connectors and other components to your Mule application to process your business logic, and configure the attributes. ## Before You Begin Before creating an integration project, you must: - [Set up and access the Anypoint Code Builder web or desktop IDE](../../anypoint-code-builder/start-acb) - Have credentials to access the connector’s API - Ensure that the Visual Studio Code Extension Pack for Java is installed. To use this connector, you must be familiar with: - The connector’s API - Anypoint Connectors - Mule runtime engine (Mule) ## Create a New Integration Project To create a new integration project: 1. In the activity bar of the IDE, click the  (**Anypoint Code Builder**) icon. 2. From **Quick Actions**, click **Develop an Integration**:  3. Complete the following in the **Develop an Integration** form:
| Attribute | Value |
|---|---|
Project Name | Unique name for your project. This name is used as the title and name of the integration project file. For example, if the project name is "Salesforce Integration," the project file name is |
Project Location | Your home directory or another directory you create. Click Browse to select a different directory for the integration project. Don’t create the project within another project directory. |
| 1 | Search locally |
| 2 | Search in Exchange |
| Attribute | Description | Required |
|---|---|---|
Primary node only | Select this option to execute the Task Listener source on the primary node only when running in a cluster. | No |
Redelivery policy | Configures the redelivery policy for executing requests that generate errors. You can add a redelivery policy to any source in a flow. | No |
Reconnection strategy | Retry strategy in case of connectivity errors. When an operation in a Mule application fails to connect to an external server, the default behavior is for the operation to fail immediately and return a connectivity error. You can modify the default behavior by configuring the reconnection strategy for the operation. | No |
Response | The response payload to return. Defaults to | No |
Response Headers | HTTP response headers to include with the response. | No |
| 1 | a2a:server-config defines the A2A server configuration. |
| 2 | a2a:connection specifies the path to use to listen for requests. |
| 3 | a2a:agent-card specifies the agent card. Use the file attribute to point to the absolute path of the JSON file on disk. For CloudHub use cases, if the file is located in the home directory of the CloudHub instance, you can reference it using ${app.home}/agent-card.json. |
| 1 | The a2a:task-listener component acts as the entry point, waiting to receive a task from an A2A server. This task contains a user’s query about stock market data. |
| 2 | The logger component outputs an informational message Triggering MCP Tools to the MuleSoft logs. |
| 3 | The set-variable component extracts the ID from the incoming payload (the task received in step 1) and stores it in a flow variable named task_id. |
| 4 | Another set-variable component extracts the sessionId from the payload. If sessionId isn’t present, it defaults to an empty string. This value is stored in a flow variable named session_id. |
| 5 | This set-variable extracts the actual user query from the payload. Specifically, it takes the text from the first part of the message within the payload and stores it in a flow variable named user_prompt. |
| 6 | The ms-inference:mcp-tools-native-template configures an LLM to act as a specialized financial analysis assistant. |
| 7 | This set-variable component takes the response generated by the ms-inference:mcp-tools-native-template (from step 6) and stores it in a flow variable named mcp_tooling_results. |
| 8 | The ms-inference:agent-define-prompt-template component processes the results from the previous AI interaction to generate a user-friendly response. |
| 9 | The ee:transform (DataWeave transformation) component takes the payload.response from the previous AI interaction and transforms it into a structured JSON output. |
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Name | String | Name for this configuration. Connectors reference the configuration with this name. | x | |
Connection | The connection types to provide to this configuration. | x | ||
Name | String | ID used to reference this configuration. | x | |
Expiration Policy | Configures the minimum amount of time that a dynamic configuration instance can remain idle before Mule considers it eligible for expiration. |
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Server Url | String | Base URL of the target A2A server. | x | |
Request Timeout | Number | Sets the duration to wait for server responses before timing out requests. | 30 | |
Request Timeout Unit | Enumeration, one of:
| Time unit for the Request Timeout field. | SECONDS | |
Authentication | HttpRequestAuthentication | |||
Default Headers | Object | Default headers. | ||
Tls Context | ||||
Reconnection | When the application is deployed, a connectivity test is performed on all connectors. If set to true, deployment fails if the test doesn’t pass after exhausting the associated reconnection strategy. |
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Name | String | Name for this configuration. Connectors reference the configuration with this name. | x | |
Connection | The connection types to provide to this configuration. | x | ||
Name | String | ID used to reference this configuration. | x | |
Expiration Policy | Configures the minimum amount of time that a dynamic configuration instance can remain idle before Mule considers it eligible for expiration. | |||
Card Json | String | Agent card as a JSON string. | ||
Card Path | String | The absolute path of a JSON file to load the agent card. | ||
Task History Enabled | Boolean | Set to | false | |
Default Max History Length | Number | Maximum number of task history objects to store. | ||
Task Repository Object Store | ObjectStore |
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Listener Config | String | Reference to the | x | |
Agent Path | String | Path at which the agent is available. | x | |
Tls Context Ref | String | |||
Reconnection | When the application is deployed, a connectivity test is performed on all connectors. If set to true, deployment fails if the test doesn’t pass after exhausting the associated reconnection strategy. |
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Configuration | String | Name of the configuration to use. | x | |
Task Id | Any | Unique identifier for the task. | #[payload] | |
Config Ref | ConfigurationProvider | Name of the configuration to use to execute this component. | x | |
Additional Properties | Object | Additional properties to include with the request. Use this field to specify custom key-value pairs that are sent with the A2A connector request. This field is optional and null-safe. | ||
Target Variable | String | Name of the variable that stores the operation’s output. | ||
Target Value | String | Expression that evaluates the operation’s output. The outcome of the expression is stored in the Target Variable field. | #[payload] | |
Error Mappings | Array of Error Mapping | Set of error mappings. | ||
Reconnection Strategy | Retry strategy in case of connectivity errors. |
Type | Any |
Attributes Type |
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Configuration | String | Name of the configuration to use. | x | |
Get Push Config Params | Any | Object for fetching the push notification configuration for a task. | x | |
Config Ref | ConfigurationProvider | Name of the configuration to use to execute this component. | x | |
Additional Properties | Object | Additional properties to include with the request. Use this field to specify custom key-value pairs that are sent with the A2A connector request. This field is optional and null-safe. | ||
Target Variable | String | Name of the variable that stores the operation’s output. | ||
Target Value | String | Expression that evaluates the operation’s output. The outcome of the expression is stored in the Target Variable field. | #[payload] | |
Error Mappings | Array of Error Mapping | Set of error mappings. | ||
Reconnection Strategy | Retry strategy in case of connectivity errors. |
Type | Any |
Attributes Type |
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Configuration | String | Name of the configuration to use. | x | |
Use Extended Card | Boolean | When true, fetches the authenticated extended agent card instead of the normal agent card. | false | |
Config Ref | ConfigurationProvider | Name of the configuration to use to execute this component. | x | |
Additional Properties | Object | Additional properties to include with the request. Use this field to specify custom key-value pairs that are sent with the A2A connector request. This field is optional and null-safe. | ||
Target Variable | String | Name of the variable that stores the operation’s output. | ||
Target Value | String | Expression that evaluates the operation’s output. The outcome of the expression is stored in the Target Variable field. | #[payload] | |
Error Mappings | Array of Error Mapping | Set of error mappings. | ||
Reconnection Strategy | Retry strategy in case of connectivity errors. |
Type | Any |
Attributes Type |
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Configuration | String | Name of the configuration to use. | x | |
Get Push Config Params | Any | Object for fetching the push notification configuration for a task. | x | |
Config Ref | ConfigurationProvider | Name of the configuration to use to execute this component. | x | |
Additional Properties | Object | Additional properties to include with the request. Use this field to specify custom key-value pairs that are sent with the A2A connector request. This field is optional and null-safe. | ||
Target Variable | String | Name of the variable that stores the operation’s output. | ||
Target Value | String | Expression that evaluates the operation’s output. The outcome of the expression is stored in the Target Variable field. | #[payload] | |
Error Mappings | Array of Error Mapping | Set of error mappings. | ||
Reconnection Strategy | Retry strategy in case of connectivity errors. |
Type | Any |
Attributes Type |
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Configuration | String | Name of the configuration to use. | x | |
Task Query | Any | #[payload] | ||
Config Ref | ConfigurationProvider | Name of the configuration to use to execute this component. | x | |
Additional Properties | Object | Additional properties to include with the request. Use this field to specify custom key-value pairs that are sent with the A2A connector request. This field is optional and null-safe. | ||
Target Variable | String | Name of the variable that stores the operation’s output. | ||
Target Value | String | Expression that evaluates the operation’s output. The outcome of the expression is stored in the Target Variable field. | #[payload] | |
Error Mappings | Array of Error Mapping | Set of error mappings. | ||
Reconnection Strategy | Retry strategy in case of connectivity errors. |
Type | Any |
Attributes Type |
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Configuration | String | Name of the configuration to use. | x | |
Get Push Config Params | Any | Object for fetching the push notification configuration for a task. | x | |
Config Ref | ConfigurationProvider | Name of the configuration to use to execute this component. | x | |
Additional Properties | Object | Additional properties to include with the request. Use this field to specify custom key-value pairs that are sent with the A2A connector request. This field is optional and null-safe. | ||
Target Variable | String | Name of the variable that stores the operation’s output. | ||
Target Value | String | Expression that evaluates the operation’s output. The outcome of the expression is stored in the Target Variable field. | #[payload] | |
Error Mappings | Array of Error Mapping | Set of error mappings. | ||
Reconnection Strategy | Retry strategy in case of connectivity errors. |
Type | Any |
Attributes Type |
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Configuration | String | Name of the configuration to use. | x | |
Message | Any | Message to send. | #[payload] | |
Config Ref | ConfigurationProvider | Name of the configuration to use to execute this component. | x | |
Additional Properties | Object | Additional properties to include with the request. Use this field to specify custom key-value pairs that are sent with the A2A connector request. This field is optional and null-safe. | ||
Target Variable | String | Name of the variable that stores the operation’s output. | ||
Target Value | String | Expression that evaluates the operation’s output. The outcome of the expression is stored in the Target Variable field. | #[payload] | |
Error Mappings | Array of Error Mapping | Set of error mappings. | ||
Reconnection Strategy | Retry strategy in case of connectivity errors. |
Type | Any |
Attributes Type |
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Configuration | String | Name of the configuration to use. | x | |
Stream Message | Any | Message to send (MessageSendParams schema). | #[payload] | |
Config Ref | ConfigurationProvider | Name of the configuration to use to execute this component. | x | |
Additional Properties | Object | Additional properties to include with the request. Use this field to specify custom key-value pairs that are sent with the A2A connector request. This field is optional and null-safe. | ||
Target Variable | String | Name of the variable that stores the operation’s output. | ||
Target Value | String | Expression that evaluates the operation’s output. The outcome of the expression is stored in the Target Variable field. | #[payload] | |
Error Mappings | Array of Error Mapping | Set of error mappings. | ||
Reconnection Strategy | Retry strategy in case of connectivity errors. |
Type | Any |
Attributes Type |
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Configuration | String | Name of the configuration to use. | x | |
Task Push Notification Config | Any | Associates a push notification configuration with a specific task. | x | |
Config Ref | ConfigurationProvider | Name of the configuration to use to execute this component. | x | |
Additional Properties | Object | Additional properties to include with the request. Use this field to specify custom key-value pairs that are sent with the A2A connector request. This field is optional and null-safe. | ||
Target Variable | String | Name of the variable that stores the operation’s output. | ||
Target Value | String | Expression that evaluates the operation’s output. The outcome of the expression is stored in the Target Variable field. | #[payload] | |
Error Mappings | Array of Error Mapping | Set of error mappings. | ||
Reconnection Strategy | Retry strategy in case of connectivity errors. |
Type | Any |
Attributes Type |
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Configuration | String | Name of the configuration to use. | x | |
Task Id Params | Any | Task ID to resubscribe to (TaskIdParams schema). | #[payload] | |
Config Ref | ConfigurationProvider | Name of the configuration to use to execute this component. | x | |
Additional Properties | Object | Additional properties to include with the request. Use this field to specify custom key-value pairs that are sent with the A2A connector request. This field is optional and null-safe. | ||
Target Variable | String | Name of the variable that stores the operation’s output. | ||
Target Value | String | Expression that evaluates the operation’s output. The outcome of the expression is stored in the Target Variable field. | #[payload] | |
Error Mappings | Array of Error Mapping | Set of error mappings. | ||
Reconnection Strategy | Retry strategy in case of connectivity errors. |
Type | Any |
Attributes Type |
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Configuration | String | Name of the configuration to use. | x | |
Notification Message | Any | The JSON notification message (task or message object). This value is automatically wrapped in JSON-RPC format. | #[payload] | |
Config Ref | ConfigurationProvider | Name of the configuration to use to execute this component. | x | |
Error Mappings | Array of Error Mapping | Set of error mappings. | ||
Reconnection Strategy | Retry strategy in case of connectivity errors. |
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Configuration | String | Name of the configuration to use. | x | |
Artifact Update Content | Any | TaskArtifactUpdateEvent content following A2A specification. | #[payload] | |
Config Ref | ConfigurationProvider | Name of the configuration to use to execute this component. | x | |
Error Mappings | Array of Error Mapping | Set of error mappings. | ||
Reconnection Strategy | Retry strategy in case of connectivity errors. |
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Configuration | String | Name of the configuration to use. | x | |
Status Update Content | Any | TaskStatusUpdateEvent content following A2A specification. | #[payload] | |
Config Ref | ConfigurationProvider | Name of the configuration to use to execute this component. | x | |
Error Mappings | Array of Error Mapping | Set of error mappings. | ||
Reconnection Strategy | Retry strategy in case of connectivity errors. |
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Configuration | String | Name of the configuration to use. | x | |
Primary Node Only | Boolean | Determines whether to execute this source on only the primary node when running Mule instances in a cluster. | ||
Config Ref | ConfigurationProvider | Name of the configuration to use to execute this component. | x | |
Redelivery Policy | Defines a policy for processing the redelivery of the same message. | |||
Reconnection Strategy | Retry strategy in case of connectivity errors. |
Type | String |
Attributes Type |
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Configuration | String | Name of the configuration to use. | x | |
Primary Node Only | Boolean | Determines whether to execute this source on only the primary node when running Mule instances in a cluster. | ||
Config Ref | ConfigurationProvider | Name of the configuration to use to execute this component. | x | |
Redelivery Policy | Defines a policy for processing the redelivery of the same message | |||
Reconnection Strategy | Retry strategy in case of connectivity errors. | |||
Additional Headers | Object | Additional HTTP headers to include with each request. | ||
Authentication | HttpRequestAuthentication | |||
Push notification request timeout | Number | 60 | ||
Request Timeout Unit | Enumeration, one of:
| Time unit for the Push notification request timeout field. | SECONDS | |
Proxy Config | HttpProxyConfig | Proxy configuration. |
Type | Any |
Attributes Type |
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Configuration | String | Name of the configuration to use. | x | |
Primary Node Only | Boolean | Determines whether to execute this source on only the primary node when running Mule instances in a cluster. | ||
Config Ref | ConfigurationProvider | Name of the configuration to use to execute this component. | x | |
Redelivery Policy | Defines a policy for processing the redelivery of the same message. | |||
Reconnection Strategy | Retry strategy in case of connectivity errors. | |||
Response | Any | #[payload] | ||
Response Headers | Object | HTTP response header. |
Type | Any |
Attributes Type |
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Configuration | String | Name of the configuration to use. | x | |
Primary Node Only | Boolean | Determines whether to execute this source on only the primary node when running Mule instances in a cluster. | ||
Config Ref | ConfigurationProvider | Name of the configuration to use to execute this component. | x | |
Redelivery Policy | Defines a policy for processing the redelivery of the same message. | |||
Reconnection Strategy | Retry strategy in case of connectivity errors. |
Type | Any |
Attributes Type |
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Enabled Protocols | String | Comma-separated list of protocols enabled for this context. | ||
Enabled Cipher Suites | String | Comma-separated list of cipher suites enabled for this context. | ||
Trust Store | Configures the TLS truststore. | |||
Key Store | Configures the TLS keystore. | |||
Revocation Check | Configures a revocation checking mechanism. |
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Path | String | Path to the truststore. Mule resolves the path relative to the current classpath and file system. | ||
Password | String | Password used to protect the truststore. | ||
Type | String | Type of store. | ||
Algorithm | String | Encryption algorithm that the truststore uses. | ||
Insecure | Boolean | If |
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Path | String | Path to the keystore. Mule resolves the path relative to the current classpath and file system. | ||
Type | String | Type of store. | ||
Alias | String | Alias of the key to use when the keystore contains multiple private keys. By default, Mule uses the first key in the file. | ||
Key Password | String | Password used to protect the private key. | ||
Password | String | Password used to protect the keystore. | ||
Algorithm | String | Encryption algorithm that the keystore uses. |
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Only End Entities | Boolean | Which elements to verify in the certificate chain:
Verify only the last element in the certificate chain.
Verify all elements in the certificate chain. | ||
Prefer Crls | Boolean | How to check certificate validity:
Check the Certification Revocation List (CRL) for certificate validity.
Use the Online Certificate Status Protocol (OCSP) to check certificate validity. | ||
No Fallback | Boolean | Whether to use the secondary method to check certificate validity:
Use the method that wasn’t specified in the Prefer Crls field (the secondary method) to check certificate validity.
Don’t use the secondary method to check certificate validity. | ||
Soft Fail | Boolean | What to do if the revocation server can’t be reached or is busy:
Avoid verification failure.
Allow the verification to fail. |
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Url | String | URL of the OCSP responder. | ||
Cert Alias | String | Alias of the signing certificate for the OCSP response. If specified, the alias must be in the truststore. |
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Path | String | Path to the CRL file. |
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Fails Deployment | Boolean | When the application is deployed, a connectivity test is performed on all connectors. If set to true, deployment fails if the test doesn’t pass after exhausting the associated reconnection strategy. | ||
Reconnection Strategy | Reconnection strategy to use. |
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Frequency | Number | How often to attempt to reconnect, in milliseconds. | ||
Blocking | Boolean | If | true | |
Count | Number | How many reconnection attempts the Mule app can make. |
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Frequency | Number | How often to attempt to reconnect, in milliseconds. | ||
Blocking | Boolean | If | true |
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Max Idle Time | Number | Configures the maximum amount of time that a dynamic configuration instance can remain idle before Mule considers it eligible for expiration. | ||
Time Unit | Enumeration, one of:
| Time unit for the Max Idle Time field. |
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Status Code | Number | HTTP status code of the response. | x | |
Headers | Object | Map of HTTP headers in the message. | x | |
Reason Phrase | String | HTTP reason phrase of the response. |
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Source | Enumeration, one of:
| |||
Target | String | x |
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Final Event Found | Boolean | Whether a final event was found during SSE session. | false | |
Status Code | Number | HTTP status code of the response. | x | |
Headers | Object | Map of HTTP headers in the message. | x | |
Reason Phrase | String | HTTP reason phrase of the response. |
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Task Id | String | The ID assigned to this task, either provided by the client or auto-generated by the connector. | x | |
Context Id | String | The context ID assigned to this task, either provided by the client or auto-generated by the connector. | x | |
Query Params | Object | The query parameters received in the HTTP request. | x | |
Headers | Object | The HTTP headers received in the request. | x | |
Version | String | HTTP version of the request. Former | x | |
Scheme | String | HTTP scheme of the request. Former | x | |
Method | String | HTTP method of the request. Former | x | |
Local Address | String | Local host address from the server. | x | |
Remote Address | String | Remote host address from the sender. Former | x | |
Json Rpc Method | String | The JSON-RPC method name from the A2A request (for example, | x | |
Client Certificate | Client certificate (if 2 way TLS is enabled). Former |
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Basic Constraints | Number | Basic constraints extension value indicating if the certificate can be used to sign other certificates. | ||
Critical Extension OI Ds | Array of String | Object identifiers (OIDs) of critical extensions in the certificate. | ||
Encoded | Binary | The encoded form of the certificate. | ||
Extended Key Usage | Array of String | Extended key usage extension indicating specific purposes for which the certificate public key can be used. | ||
Extensions | Array of Certificate Extension | Certificate extensions providing additional information about the certificate. | ||
Issuer Alternative Names | Array of Alternative Name Data | Alternative names for the certificate issuer. | ||
Issuer DN | Distinguished name of the certificate issuer. | |||
Issuer Unique ID | Array of Boolean | Unique identifier for the certificate issuer. | ||
Issuer X500 Principal | X.500 principal information for the certificate issuer. | |||
Key Usage | Array of Boolean | Key usage extension indicating the purposes for which the certificate public key can be used. | ||
Name | String | Name associated with the certificate. | ||
Non Critical Extension OI Ds | Array of String | Object identifiers (OIDs) of non-critical extensions in the certificate. | ||
Not After | Date | Expiration date of the certificate. | ||
Not Before | Date | Date from which the certificate is valid. | ||
Public Key | Public key information from the certificate. | |||
Serial Number | Number | Serial number of the certificate. | ||
Serial Number Object | Serial number object containing detailed serial number information. | |||
Sig Alg Name | String | Name of the signature algorithm used to sign the certificate. | ||
Sig Alg OID | String | Object identifier (OID) of the signature algorithm. | ||
Sig Alg Params | Binary | Parameters for the signature algorithm. | ||
Signature | Binary | Digital signature of the certificate. | ||
Subject Alternative Names | Array of Alternative Name Data | Alternative names for the certificate subject. | ||
Subject DN | Distinguished name of the certificate subject. | |||
Subject X500 Principal | X.500 principal information for the certificate subject. | |||
Type | String | Type of the certificate. | ||
Version | Number | Version number of the certificate format. |
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Criticality | Boolean | Indicates whether the extension is critical. If | ||
Oid | String | Object identifier (OID) that uniquely identifies the extension type. | ||
Value | Binary | The extension value in its encoded form. |
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Name | String | The alternative name value. | ||
Type | Number | The type of alternative name. |
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Common Name | String | The common name (CN) component of the distinguished name. | ||
Name | String | The full distinguished name string representation. |
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Name | String | The X.500 distinguished name in string format. |
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Algorithm | String | The algorithm used for the public key (for example, RSA, DSA, EC). | ||
Encoded | Binary | The encoded form of the public key. | ||
Modulus | Number | The modulus value for RSA public keys. | ||
Params | Number | Algorithm-specific parameters for the public key. | ||
Public Key | String | The public key value in string representation. |
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Serial Number | Number | The serial number value of the certificate. |
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Max Redelivery Count | Number | Maximum number of times to process a redelivered request unsuccessfully before returning a REDELIVERY_EXHAUSTED error. | ||
Message Digest Algorithm | String | Secure hashing algorithm to use if the Use Secure Hash field is | ||
Message Identifier | One or more expressions that determine if a message was redelivered. This property can be set only if the Use Secure Hash field is | |||
Object Store | ObjectStore | Configures the object store that stores the redelivery counter for each message. |
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Use Secure Hash | Boolean | If | ||
Id Expression | String | One or more expressions that determine when a message was redelivered. You can set this property only if the Use Secure Hash field is |
| Field | User Action |
|---|---|
Username | Username used to initialize the session. |
Password | Password used to authenticate the user. |
Preemptive | If set to true, the client sends its authentication credentials (username and password) with the initial HTTP request to the server, rather than waiting for the server to challenge (401 Unauthorized) the client. |
| Field | User Action |
|---|---|
Username | Username used to initialize the session. |
Password | Password used to authenticate the user. |
Preemptive | If set to true, the client sends its authentication credentials (username and password) with the initial HTTP request to the server, rather than waiting for the server to challenge (401 Unauthorized) the client. |
| Field | User Action |
|---|---|
Domain | Name of the proxy domain. |
Workstation | Name of the proxy workstation. |
Username | Username used to initialize the session. |
Password | Password used to authenticate the user. |
Preemptive | If set to true, the client sends its authentication credentials (username and password) with the initial HTTP request to the server, rather than waiting for the server to challenge (401 Unauthorized) the client. |
| From Version | To Version |
|---|---|
0.x | 1.x |
| Software | Version |
|---|---|
Mule | 4.9.8 and later |
OpenJDK | 17 |
A2A protocol | 0.3.0 |