Hi all,
I have a REST WS with method post that returns a base64, but I don't know how to call it and save the result as a appian document
I tried to save the value in the database but the result can be around 14,000,000 (a pdf document with 21 pages) and the text datatype can save only 60,000
Any suggest???
Discussion posts and replies are publicly visible
Instead of a text datatypes in the data base, try something like "long" which has more space. Please use caution in your database accumulating too many long values. Plan to delete the base64 strings out of the db as soon as you've converted them back into files.
Thanks Robert I'm going to try it, I'll tell you what happend