HTTPBeforeCommand event ına aşağıdaki kod ile istemciye şifre doğrulama ekranı gönderebilirsiniz. Gelen header bilgisi ile doğrulama işlemini yapabilir ve oturum kaydı tutabilirsiniz.
AContext.Connection.IOHandler.WriteLn('HTTP/1.1 407 Proxy Authentication Required'); AContext.Connection.IOHandler.WriteLn('Proxy-Authenticate: Basic realm="Proxy Kullanıcı Bilgileri"'); AContext.Connection.IOHandler.WriteLn('Content-Length: 0'); AContext.Connection.IOHandler.WriteLn('Connection: close'); AContext.Connection.IOHandler.WriteLn(''); Acontext.Connection.Disconnect;
0 Yorumlar.