Skip to content

Commit 581ed12

Browse files
Merge branch 'development' into kk-snow-mcp
2 parents d649913 + 4cbc0f9 commit 581ed12

81 files changed

Lines changed: 720 additions & 227 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

content/en/docs/deployment/docker-deploy/docker-pad.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Portable App Distribution offers a more agile, user-centric, and efficient deplo
3535

3636
Before you begin, ensure you have the following:
3737

38-
* Mendix Studio Pro version 11.19, 11.6.5, or above
38+
* Mendix Studio Pro version 10.24.19, 11.19, 11.6.5, or above
3939
* A Mendix app that you want to deploy
4040
* Docker installed on your system (for building and running Docker images)
4141
* Access to a container registry (for pushing and pulling Docker images)

content/en/docs/deployment/general/pad/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ To license a Mendix app on the Portable App Distribution, add it to your configu
3333

3434
## Prerequisites
3535

36-
The Portable App Distribution functionality is available for Mendix Studio Pro version 11.9, 11.6.5 MTS, or above. The functionality will be enabled for more Studio Pro versions in future releases.
36+
The Portable App Distribution functionality is available in Mendix Studio Pro versions 10.24.19 LTS, 11.9, 11.6.5 MTS, and above. The functionality will be enabled for more Studio Pro versions in future releases.
3737

3838
You must also ensure that you have the supported version of [Java Runtime Environment](/refguide/system-requirements/#java).
3939

content/en/docs/deployment/mendix-cloud-deploy/change-plan.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,10 @@ If the Technical Contact cancels a request, the plan change process is canceled
130130

131131
## Scheduling a Plan Change {#scheduling-a-plan-change}
132132

133+
{{% alert color="warning" %}}
134+
Before scheduling a plan change request, check the [Mendix Status Page](https://status.mendix.com) for planned platform maintenance or Cloud Portal releases. Scheduling a plan change during maintenance windows may cause the request to fail.
135+
{{% /alert %}}
136+
133137
If your request status is **Pending Schedule**:
134138

135139
1. Open **Request Details** by clicking **Details** in the **Change Requests** tab.

content/en/docs/deployment/mx-azure/mx-azure-export-logs.md

Lines changed: 391 additions & 0 deletions
Large diffs are not rendered by default.

content/en/docs/deployment/on-premises-design/cloud-foundry/cloud-foundry-deploy-pad.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,28 @@ To deploy your app to Cloud Foundry, perform the following steps:
4646
services:
4747
env:
4848
```
49-
49+
50+
An example manifest file can look like the following:
51+
52+
``` yaml
53+
applications:
54+
- name: mx-java-app
55+
path: <path-to-zip>
56+
memory: 1G
57+
buildpacks:
58+
- java_buildpack
59+
services:
60+
- <service instance_id to be bind>
61+
- <service instance_id to be bind>
62+
env:
63+
JBP_CONFIG_OPEN_JDK_JRE: '{ jre: { version: 21.+}}'
64+
JBP_LOG_LEVEL: INFO
65+
JAVA_OPTS: >
66+
-Xmx512m
67+
-Xms512m
68+
-XX:MaxDirectMemorySize=20M
69+
-XX:MaxMetaspaceSize=128M
70+
```
71+
5072
5. Run the `cf push` command.
5173
6. Verify that the Mendix app has started successfully.

content/en/docs/marketplace/genai/reference-guide/conversational-ui.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ To use the Conversational UI module, your Mendix Studio Pro version must be 10.2
5656

5757
You must also ensure you have the other prerequisite modules that Conversational UI requires. These modules are included by default in the [Blank GenAI App](https://marketplace.mendix.com/link/component/227934), the [AI Bot Starter App](https://marketplace.mendix.com/link/component/227926), the [Support Assistant Starter App](https://marketplace.mendix.com/link/component/231035), and the [RFP Assistant Starter App](https://marketplace.mendix.com/link/component/235917). If not, you need to install them manually.
5858

59-
* [GenAI Commons](https://marketplace.mendix.com/link/239448)
59+
* [GenAI Commons](https://marketplace.mendix.com/link/component/239448)
6060
* [Agent Commons](https://marketplace.mendix.com/link/component/240371)
6161
* [Atlas Core](https://marketplace.mendix.com/link/component/117187)
6262
* [Data Widgets](https://marketplace.mendix.com/link/component/116540)
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
---
22
title: "Consumed REST Service"
33
url: /refguide/consumed-rest-services/
4-
description: "Presents an overview of consumed REST services and JSON in Mendix."
4+
description: "Describes how to interact with REST APIs in Mendix and build REST requests."
55
weight: 15
66
#If moving or renaming this doc file, implement a temporary redirect and let the respective team know they should update the URL in the product. See Mapping to Products for more details.
77
---
88

99
## Consumed REST Services
1010

11-
Mendix offers different features which allow you to interact with any REST API. You can use them to build and test your REST requests or create data structures in your project.
11+
Mendix offers features that allow you to interact with any REST API. You can use them to build and test your REST requests or create data structures in your project.
1212

1313
## Read More
1414

15-
* [Consumed REST Service](/refguide/consumed-rest-service/), an overview on how to Consume a REST Service document
16-
* [Import an OpenAPI/Swagger contract](/refguide/consumed-rest-service/#installation), instructions on how to create a Consumed REST Service from an OpenAPI/Swagger contract
17-
* [Call REST Service](/refguide/call-rest-action/), a description of the microflow action
18-
* [Use Call REST Service Action in a Microflow](/refguide/integration/use-call-rest-action-in-microflow/), instructions on how to use the Call REST Service action in a microflow
19-
* [HttpRequest and HttpResponse System Entities](/refguide/http-request-and-response-entities/), an overview of these system entities in your domain model
15+
* [Consumed REST Service](/refguide/consumed-rest-service/) – Describes how to consume a REST service
16+
* [Import an OpenAPI/Swagger contract](/refguide/consumed-rest-service/#installation) – Describes how to create a consumed REST service from an OpenAPI/Swagger contract
17+
* [Call REST Service](/refguide/call-rest-action/) – Describes the Call REST Service microflow action
18+
* [Use Call REST Service Action in a Microflow](/refguide/integration/use-call-rest-action-in-microflow/) – Describes how to use the Call REST Service action in a microflow
19+
* [HttpRequest and HttpResponse System Entities](/refguide/http-request-and-response-entities/) – Describes these system entities in your domain model

0 commit comments

Comments
 (0)