10 August 2026
Jeroen Röttinktext not yet in the index
AI mentions to use TIWServerController.OnBeforeDispatch but that fires too late seems.
Jeroen RöttinkAI mentions to use TIWServerController.OnBeforeDispatch but that fires too late seems.
After some extra AI tokens I got the working solution to subclass THTTPServerIndy and handle OnParseAuthentication.
unit Auth.HttpServer;
interface
procedure RegisterBearerAuthHttpServer;
implementation
uses
SysUtils, InContext, IW.Server.HTTPIndy, IW.Server.Indy;
type
TBearerAwareHttpServerIndy = class(THTTPServerIndy)
private
procedure HandleParseAuthentication(AContext: TInContext; const AAuthType, AAuthData: string;
var VUsername, VPassword: string; var VHandled: Boolean);
protected
procedure InitComponent; override;
end;
procedure TBearerAwareHttpServerIndy.InitComponent;
begin
inherited;
OnParseAuthentication := HandleParseAuthentication;
end;
procedure TBearerAwareHttpServerIndy.HandleParseAuthentication(AContext: TInContext;
const AAuthType, AAuthData: string; var VUsername, VPassword: string; var VHandled: Boolean);
begin
// validation of the token is done in the contenthandler
// here is accepting the scheme sufficient
VHandled := SameText(AAuthType, 'Bearer');
end;
procedure RegisterBearerAuthHttpServer;
begin
TSaServerIndy.RegisterHttpServerIndy(TBearerAwareHttpServerIndy);
end;
end.
Jeroen Röttinkunit Auth.HttpServer;
interface
procedure RegisterBearerAuthHttpServer;
implementation
uses
SysUtils, InContext, IW.Server.HTTPIndy, IW.Server.Indy;
type
TBearerAwareHttpServerIndy = class(THTTPServerIndy)
private
procedure HandleParseAuthentication(AContext: TInContext; const AAuthTy
Hi Jeroen,
We are incorporating something like that in all our servers, to handle bearer authentication easier, in all server types, not only Indy, but it's not ready yet.
Feel free to send me any specific requirements you have so I can check if it will fit our implementation.
11 August 2026
Ettienne Du PlessisHi I had a valid intraweb installation . lost the machine that it ran on . where can i find the download and serial number for intraweb 14.0.29
14 is a pretty old version, weve changed several systems since then but Ive tagged Nikita to help.
12 August 2026
Chad Z.14 is a pretty old version, weve changed several systems since then but Ive tagged Nikita to help.
Key has been recovered and the installer has been made available to the customer
27 August 2026
28 August 2026
nouri@Alex7691
I still haven't received any update regarding my purchase of Intraweb. Could someone please let me know what I should expect and what the next steps are?
29 August 2026
VinceI still haven't received any update regarding my purchase of Intraweb. Could someone please let me know what I should expect and what the next steps are?
As the website says normal you should receive it within 24 hours. I've tagged someone who can check the exact status. Check your spam folder
VinceI still haven't received any update regarding my purchase of Intraweb. Could someone please let me know what I should expect and what the next steps are?
Hi Vincent, we saw your purchase and issued and sent the license to you after we checked and confirmed your purchase. Please check the spam folder just in case. We also DMed you.