Jump to content

Leaderboard


Popular Content

Showing content with the highest reputation on 12/05/20 in Posts

  1. Edwin Yip

    How create a website whit Delhpi

    Yes, those are really good Delphi guys ;) It's their endeavor, but not Delphi's ever-increasing licensing fees, that drives the prosperity of the Delphi community ;)
  2. Arnaud Bouchez

    How create a website whit Delhpi

    Our Open Source mORMot has a powerful MVC Web development model, based on Mustache templates for HTML/CSS views, and interfaces/classes to write the Controller and the Model. Check https://synopse.info/files/html/Synopse mORMot Framework SAD 1.18.html#TITLE_498 and
  3. Bill Meyer

    Delphi 6 all of a sudden wants to be activated

    You misspelled "feature."
  4. David Heffernan

    How create a website whit Delhpi

    There are countless ways in which Delphi code may be involved in web development. If you want anybody to spend their time helping you I suggest that you spend more of your time thinking about your problem, and specifying in more detail what specifically you need help with.
  5. FPiette

    Prefix unit local variable names

    I'll write almost as you do except: 1) First letter is always uppercase. 2) Constant have no prefix but always all uppercase with underscore to separate words like MAX_CLIENT 3) Local method variable have no prefix at all since all other have a prefix. As you said, it is much of personal taste but your asked so my answer.
  6. Wagner Landgraf

    How create a website whit Delhpi

    Excellent! I'm always pleased with people that see the positive side of things.
  7. Anders Melander

    How create a website whit Delhpi

    I'm amazed that people are able to offer architectural and implementation suggestions for "How create a website". Your physic powers must be excellent.
  8. Wagner Landgraf

    How create a website whit Delhpi

    Frontend: TMS Web Core (https://tmssoftware.com/web) Backend: TMS XData (https://tmssoftware.com/biz)
  9. Remy Lebeau

    tlsv1 alert protocol version

    Which version of Delphi are you using? Which version of Indy? The code looks fine, so the issue has to be with the OpenSSL DLLs themselves, Do you know what version of TLS the server requires? Does it even support TLS v1.0..v1.2 nowadays? Maybe it requires TLS v1.3 instead? If so, you won't be able to use TIdSSLIOHandlerSocketOpenSSL for TLS v1.3, you will have to use this new SSLIOHandler instead (work in progress), which uses OpenSSL 1.1.x instead of 1.0.2. They don't belong there. Put them in your application's folder instead. Just FYI: https://www.indyproject.org/2020/06/16/openssl-binaries-moved-to-github/ Do you know what the old version was? Are you SURE about that? At runtime, what does Indy's OpenSSLVersion() function in the IdSSLOpenSSL unit report after OpenSSL has been loaded? How about the IsOpenSSL_TLSv(1_0|1_1|1_2)_Available() functions in the IdSSLOpenSSLHeaders unit? Have you tried looking at the TLS handshake in a packet sniffer, such as Wireshark? What TLS version is your app claiming to use?
  10. EgonHugeist

    Ole DB (Ado) for MSSQL un-deprecated by Microsoft

    No Bruce, ZeosLib as an OpenSource DAC(Database access component) and it's definitelly not for FireDac. We may call it "a source of inspiration for Dimitry's FireDac/AnyDac". ZeosLib is much better maintained than dbGo. So don't hassitate to use OpenSource! Regards, Michael
×