07-28-2022, 04:41 AM
Thanks for reporting this.
The JS error has been fixed, and the Indy issue needs to be configured accordingly:
program IWSignaturePad;
uses
IWRtlFix,
IWStart,
InIOHandler, // <- add this unit
Unit27 in 'Unit27.pas' {IWForm27: TIWAppForm},
ServerController in 'ServerController.pas' {IWServerController: TIWServerControllerBase},
UserSessionUnit in 'UserSessionUnit.pas' {IWUserSession: TIWUserSessionBase};
{$R *.res}
begin
IdMaxLineLengthDefault := 128 * 1024; // <- Increase to something like 64 or 128 kb
TIWStart.Execute(True);
end.
The JS error has been fixed, and the Indy issue needs to be configured accordingly:
program IWSignaturePad;
uses
IWRtlFix,
IWStart,
InIOHandler, // <- add this unit
Unit27 in 'Unit27.pas' {IWForm27: TIWAppForm},
ServerController in 'ServerController.pas' {IWServerController: TIWServerControllerBase},
UserSessionUnit in 'UserSessionUnit.pas' {IWUserSession: TIWUserSessionBase};
{$R *.res}
begin
IdMaxLineLengthDefault := 128 * 1024; // <- Increase to something like 64 or 128 kb
TIWStart.Execute(True);
end.