Base64 Decode is truncating result
Hi,
I have a message encoded and sent over to 3rd party and third party will encode the response and send that to me. I am supposed to decode it and see the result. I am using Base64 Encoding/Decoding. The encoding is working very fine. But while decoding, I can see only part of the first line, then rest is truncated. Do you know if I am missing anything?
below is the encoding and decoding peoplecode I have.
Local Crypt &cryEncode, &cryDecode;
Local string &encodeResult, &decodeResult;
&cryEncode = CreateObject("Crypt");
&cryEncode.Open("BASE64_ENCRYPT");
&cryEncode.UpdateData(&xml.GenXmlString());
&encodeResult = &cryEncode.Result;