Hello,
We would need some help,
Our aim is to send an image as binary data using a REST Service
Currently we do the following:
1 We get from the external system a binary image in our REST Operation
2 We encode it to Base64
set linea=""
while (tResponse.Data.AtEnd = 0) {
set linea = linea_$system.Encryption.Base64Encode(tResponse.Data.Read(57))
}
3 We send it to the Process in a Response Message: