QuickLib
QuickLib copied to clipboard
Quick development library (AutoMapper, LinQ, IOC Dependency Injection, MemoryCache, Scheduled tasks, Json and Yml Config and Options pattern, Serializers, etc) with crossplatform support for Delphi/Fi...
Hi, Have you thought about adding Authentication support to the QuickLib framework ? Basic client support for OpenID Connect, OAuth2, JWT would be pretty cool. https://openid.net/connect/ Regards Andrew
Hi, I install the Application with a parameter. Example: MyApplicaiton MyParam1 /install After the installation, When i try to start the application ParamStr(1) gives me empty value. When i make...
First, it was found that priority processing was not supported, causing some partial errors: Assert(true, TExpressionParser.Validate(5, '(0.3 < 8) or (5 < 4) and (2 = 1)')); //false is err...
It cannot be compiled in FreePascal. FPC version 3.0.4, Lazarus 2.0.2. 1st error: QuickFiles line#412 Result := Result + [rec.Name] I have replaced it with SetLength(Result, length(Result) + 1); Result[High(Result)]...
First of all, good job with developing and publishing those sets of useful classes. They are a big time-saver and there are several very useful ones. I was interested in...
https://docs.microsoft.com/en-us/azure/active-directory/develop/single-sign-on-saml-protocol https://docs.microsoft.com/en-us/azure/active-directory/saas-apps/saml-toolkit-tutorial The link below has a BASIC implementation of SAML for ASP.NET. (323 lines of c# code): https://github.com/jitbit/AspNetSaml How SAML works? SAML workflow has 2 steps: User is redirected...
Allow compilation with Delphi's "Typed @ operator" option enabled
Using Delphi 10.3 in Windows 10, setting ReportMemoryLeaksOnShutdown to True detects a memory leak in GetSpecialFolderPath function. As stated in https://www.experts-exchange.com/questions/10206340/Locating-special-folder.html, maybe you could consider a solution like: implementation uses...
If I am not wrong, according to description, it might be easy to use the Quick.Pooling to creste a database connection pool. An example to accomplish this (e.g. with ZeosDBO)...
Hi, now we can export Configuration classes to JSON and YAML files. Can you add XML format as well? Thanks