mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-03-21 21:27:27 +02:00
44 lines
975 B
Plaintext
44 lines
975 B
Plaintext
---
|
|
sidebar_position: 7
|
|
---
|
|
|
|
import Tabs from '@theme/Tabs';
|
|
import TabItem from '@theme/TabItem';
|
|
|
|
# ProcessRequest
|
|
Sends a single request to a specified address and receives a response using the default settings
|
|
|
|
|
|
|
|
`Function ProcessRequest(Val Address, Val Data = "", Val ResponseString = True) Export`
|
|
|
|
| Parameter | CLI option | Type | Required | Description |
|
|
|-|-|-|-|-|
|
|
| Address | --address | String | ✔ | Address and port |
|
|
| Data | --data | String, BinaryData | ✖ | Data or text to be sent |
|
|
| ResponseString | --string | Boolean | ✖ | An attribute of receiving the response as a string |
|
|
|
|
|
|
Returns: BinaryData, String - Response
|
|
|
|
<br/>
|
|
|
|
:::tip
|
|
Parameters with Binary data type can also accept file paths on disk and URLs
|
|
:::
|
|
<br/>
|
|
|
|
|
|
|
|
```bsl title="1C:Enterprise/OneScript code example"
|
|
Address = "45.79.112.203:4242";
|
|
Data = "Echo this!" + Chars.LF;
|
|
|
|
Result = OPI_TCP.ProcessRequest(Address, Data);
|
|
```
|
|
|
|
|
|
|
|
|
|
|