Servoy 2021 doesn't support multipart/form-data text request

I am trying to make Servoy 2021.3.2 LTS RESTful Web Service handle multipart/form-data (text) requests.
I successfully can do it with “Servoy 2022.03.4 LTS”, but Servoy 2021.3.2 LTS doesn’t work the same way. See attached video and postmen request file.

Is there way to make Servoy 2021.3.2 LTS RESTful Web Service work the same way. Maybe copy some files from Servoy 2022.03.4 LTS is going to help?

Thanks, Anton

servoy_server.zip (1.83 MB)

Pretty easy with the Velocity plugin which is so much more powerful than the WS_REST plugin…

See the attached solution and config.json file in the zip file: [attachment=0]velocity.zip[/attachment]
You need to add the latest (v3.6.3) Velocity plugin in your /application_server/plugins - you can download the distribution here: Files - VelocityReport Plugin - ServoyForge - you just need the content of the “plugins” folder from the zip distribution.

Then create a “reports” folder (name doesn’t matter) somewhere on the file system with a “www” folder (name matter) and place the “config.json” file in it.
In servoy-admin/plugin-settings set the value of the “velocityreport.reportfolder” property to the path where you’ve put the reports folder.

Then instead of using “rest_ws” in your url, use “velocity”:

http://localhost:8183/servoy-service/rest_ws/avanti_api/api_web_service/... 
becomes 
http://localhost:8183/servoy-service/velocity/avanti_api/api_web_service/...

velocity.zip (3.1 KB)

Thanks, it worked. Even it supports multipart/related content type.