Hi Luis,
how can you possibly get a <MAXSTRING> error extracting a stream from a base64 encoded property that is imported from a JSON string that is limited itself by the MAXSTRING value?
In the line:
set bodyJson = %request.Content.Read()You get the whole JSON into a string limited to string max size.
To avoid this, you can import directly the content stream into a dynamic object:
set dynamicBody = {}.%FromJSON(%request.Content)Enrico
- Log in to post comments
.png)
.png)