Include Parameters in Message Body
The Include Parameters in Message Body checkbox allows you to specify whether or not you want the input parameters to be included in the message body.
You use this checkbox in conjunction with the REST_based service mode and you use it if you want to use arrays.
| Setting | Result |
|---|---|
|
Checkbox is not selected |
In this case, the PCo server expects the client to send a bare request. The request then looks like this: |
|
Checkbox is selected |
In this case, the server expects the client to send a wrapped request. This means that the input parameters are contained in the HTTP message body. If you are working with JSON, the request looks like this: {“inParameter1“: [“a“,“b“], “inParameter2“: [“c“,“d“]} |