mvanrijnen
Members-
Content Count
471 -
Joined
-
Last visited
-
Days Won
1
Everything posted by mvanrijnen
-
Signotaur Code Signing Server - Looking for beta testers
mvanrijnen replied to Vincent Parrett's topic in Delphi Third-Party
Yes. my question was more, (a discussion i had on this forum a few years ago also), do we benefit for preventing false positives using signing (makes it easier turning the mgmt in positive direction, so they don't only see it as a cost) ? (we are going to implement signing anyway). -
Signotaur Code Signing Server - Looking for beta testers
mvanrijnen replied to Vincent Parrett's topic in Delphi Third-Party
So we create only software for internal use, using (at the moment) , do we benefit from code signing ? -
this is not sustainable as a process to get updates to the end users. I just spent 2 days of work updating our buildmachine from11.x to 12.2. Can start over now?
-
In that case, the text is not static π
-
Simulate blocking mode to send Email
mvanrijnen replied to Berocoder's topic in Network, Cloud and Web
Not a direct answer, but we (in our custom ERP solution), put the emails in a table (kind of a mailqueue) , and another process (service) polls and/or gets signaled when to scan the table for messages to send. With this we have better control, and are sure that the email is send in the background. We also can control a minimum, maximum datetime to send the message etc etc. (sometimes an email message is irrelevant if it didn't get send after a specific date) So not high prio mails are send like every 5 minutes, high prio directly. Only problem is that interactive emails (send with a client like outlook) are not under the same control. The service itself is highly configurable, with different outgoing servers, accounts etc etc., -
Constant declarations keeps baffling me (don't know enough I guess)
mvanrijnen replied to Tommi Prami's topic in RTL and Delphi Object Pascal
yes, so called "CONSTANT VARIABLES" π -
hope we get build in Nullable types soon.
-
Watch me coding in Delphi on YouTube
mvanrijnen replied to silvercoder79's topic in Tips / Blogs / Tutorials / Videos
i really do no understand why you publish this on youtube, why not a normal website where people can read this stuff ? Stuff like this is much better taken into the brain while reading instead of watching a video. Is it because you want to generate income from YT with it ? -
DelphiLSP.Exe version 11.1 vs 12.2
mvanrijnen replied to Gert Scholten's topic in Delphi IDE and APIs
LSP in 12.x (when it works) gives also wrong method/prop/var names sometimes, such as in the same unit strict private fields from other object -
Regression - Delphi 12 - Unable to debug dynamically loaded packages
mvanrijnen replied to @AT's topic in Delphi IDE and APIs
thats not good, having a problem with a RAD server package, which i would like to debug, gonna be a problem this week. Maybe the right time to say goodbye to RADserver and transfer the code to MARS (the Rest Server, not the planet) @Marco CantuWhats the status of this problem? -
Regression - Delphi 12 - Unable to debug dynamically loaded packages
mvanrijnen replied to @AT's topic in Delphi IDE and APIs
Is this fixed in D12.2 ? Would nice to know before i spent 2 days updating the dev environment . -
Good delphi learning sites for new team member
mvanrijnen posted a topic in Tips / Blogs / Tutorials / Videos
Hi folks, We have a new developer at out team, he got C# & Python at his study, and has to learn Delphi now to be productive in our team π What sites you recommend to start out with Delphi, we have him now looking to Learn Delphi, and the links mentioned there. -
RESTClient.OnNeedClientCertificate event does not execute
mvanrijnen replied to Leszek's topic in Network, Cloud and Web
So unusable π Thats the EMB way, big mouth, big blogs, moving fancy blog posts, but not complete components or working IDE (i also hacked a few of the Rest.BackEnd.* units because they do not complete support all properties of the TRestRequest etc) -
Omnithreadlibrary.com down? Check here and read user reports (downforeveryoneorjustme.com)
-
RESTClient.OnNeedClientCertificate event does not execute
mvanrijnen replied to Leszek's topic in Network, Cloud and Web
Which service are you trying to reach? Cause (long time ago for me) i think that it depends on the server settings if a ClientCert is needed. See for examplle "IdServerIOHandlerSSLOpenSSL1.SSLOptions.Mode :" property. Could be that this also has to be set in the client -
Delphi Rest Client Authorization with Client Certificates
mvanrijnen replied to MTKor's topic in Network, Cloud and Web
At what point you are stuck? You can use the "TRestClient.OnNeedClientCertificate" event, simple example code: We check the certificate name, which has to begin with a certain value (stored in the CNST_CERT_PREFIX constant), and of course it has to be a valid certificate. (i believe you need the client certificate installed in "user" context, not sure about that, long time ago i was busy with this). procedure TMyProgram.DoOnClientCertificateNeeded(const Sender: TObject; const ARequest: TURLRequest; const ACertificateList: TCertificateList; var AnIndex: Integer); var idx : integer; begin if CNST_CERT_PREFIX.IsEmpty then raise Exception.Create('[TMyProgram.DoOnClientCertificateNeeded] CNST_CERT_PREFIX is empty.'); for idx := 0 to ACertificateList.Count - 1 do begin if ACertificateList[idx].CertName.StartsWith(CNST_CERT_PREFIX) then begin if (ACertificateList[idx].Start<=Now) and (ACertificateList[idx].Expiry>Now) then begin AnIndex := idx; break; end else raise Exception.Create('[TMyProgram.DoOnClientCertificateNeeded] Client Certificate Expired.'); end; end; end; -
Upgarding from RAD Server 11 to RAD Server 12
mvanrijnen replied to Alex_mex's topic in General Help
Just moving to D12 myself. in the EMSDevServer (development environment for RadServer), i do not get breakpoints in my code? -
A better way to share global data structures than as global variables?
mvanrijnen replied to DavidJr.'s topic in Algorithms, Data Structures and Class Design
post deleted? -
How to rearrange projects in projects group file?
mvanrijnen replied to Robert Gilland's topic in Delphi IDE and APIs
just drag and drop in the projects list of the group? -
also check: GitHub - andrea-magni/MARS: MARS-Curiosity Delphi REST Library
-
TMethodImplementationIntercept/__dbk_fcall_wrapperο»Ώ called infinite and high cpu
mvanrijnen posted a topic in RTL and Delphi Object Pascal
We have one application which since a few months gives problems on most of the workstation here. (not all, ofcourse not on the dev machines π ) The application goes into high cpu constantly without doing anything (wanted). We noticed that this was causes by a thread which uses/started because TMethodImplementationIntercept so we fixed thats this method was not exported, then the troubles moved to __dbk_fcall_wrapper. It's only in one of the many applications we have here that this problem occurs, anyone any idea or direction we should search in? -
haha, you have stocks in that ? π (i still have to compare it to mitm)
-
if they are o365 accounts, you could take a look at the Microsoft Graph API instead. maybe worth instead of doing it the "old way".
-
Custom managed records with String List causing memory leak
mvanrijnen replied to Gary's topic in FMX
then he get's an AV, cause he's freeing the CustomButtons in his Clear method. -
Creating a recent folder location list in an INI file
mvanrijnen replied to JohnLM's topic in Algorithms, Data Structures and Class Design
i have a ini helpers for this ....