10-22-2019, 12:16 PM
>>I believe it will work if you use encodeURIComponent() on your parameters...
Yes, it works as the Base64 encoding (but without the need to decode).
Here's what's happening with SSL on the IW side with a single ':' as an ajax callback parameter: The ':' is removed then the parameter string is inserted back into the parameter string recursively until it breaks a 4K limit. In my case the ajax call repeated 6 times from a single click until the 4k limit is reached. Probably would keep repeating otherwise. Attached is the IW output from a test and you can absolutely see what's happening.
Yes, it works as the Base64 encoding (but without the need to decode).
Here's what's happening with SSL on the IW side with a single ':' as an ajax callback parameter: The ':' is removed then the parameter string is inserted back into the parameter string recursively until it breaks a 4K limit. In my case the ajax call repeated 6 times from a single click until the 4k limit is reached. Probably would keep repeating otherwise. Attached is the IW output from a test and you can absolutely see what's happening.

