Service Converter
from converter import Converter
Port Name | Location | Protocol | Interfaces |
---|---|---|---|
ip | local | ConverterInterface |
List of Available Interfaces
ConverterInterface
Operation Name | Input Type | Output Type | Faults | Description |
---|---|---|---|---|
base64ToRaw | string | raw | IOException0#IOExceptionType | |
rawToBase64 | raw | string | - | |
rawToString | RawToStringRequest | string | IOException0#IOExceptionType | string <-> raw (byte arrays) conversion methods |
stringToRaw | StringToRawRequest | raw | IOException0#IOExceptionType |
Types
RawToStringRequest: The byte array to be converted
Type Declaration
raw { charset[0,1]: string // set the encoding. Default: system (eg. for Unix-like OS UTF-8) }
StringToRawRequest:
Type Declaration
string { charset[0,1]: string // set the encoding. Default: system (eg. for Unix-like OS UTF-8) }