08-18-2021, 09:26 PM
Ok, so seems that it is the registration of the external network interface address.
How's your ServerController.HttpSysOptions?
You can try to register the external interface explicitly via ServerController.OnBind. Try something like this:
procedure TIWServerController.IWServerControllerBaseBind(const aHttpBindings,
aHttpsBindings: TStrings);
begin
aHttpBindings.Add('http://46.191.248.132/MyBase1/');
end;
See how it behaves
How's your ServerController.HttpSysOptions?
You can try to register the external interface explicitly via ServerController.OnBind. Try something like this:
procedure TIWServerController.IWServerControllerBaseBind(const aHttpBindings,
aHttpsBindings: TStrings);
begin
aHttpBindings.Add('http://46.191.248.132/MyBase1/');
end;
See how it behaves

