Jump to content

mvanrijnen

Members
  • Content Count

    471
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by mvanrijnen

  1. mvanrijnen

    SSL certificate for VCL Application Exe

    Yes but because it's for our own internal software, which is copied to the clients from an "applauncher" with versiion control etc, it does not add that much for us if it does nothing with the malware/virusscan software.
  2. mvanrijnen

    SSL certificate for VCL Application Exe

    A small bump and topic hack. Will code signing also prevent from virusscanners see an executable as malicious ? We do have that with some applications here sometimes. (we only write software for use within our own company)
  3. mvanrijnen

    Several F2084 Internal Error on Delphi 10.4.2

    At the moment here it's like the LSP/Codecompletion etc, is dependant on the weather or something, can not get my finger at it, when it stops. sometimes it works all day, today, it stops every 5 minutes working. (especially, codecompletion and jump to things in other units)
  4. mvanrijnen

    Several F2084 Internal Error on Delphi 10.4.2

    Here is the LSP working for most of the time. so still some issues with newly added files now en then (especcialy when you drag/drop an existing source file to a project).
  5. mvanrijnen

    Outlook Server Execution Failed

    Yes, don't think those two are compatible, (2010), 2013,2016,2019 should work for the most common things, besides i think it's a hazard to still run OL2003 (so is 2010 (&2013?) no more security fixes)
  6. same here, i assume the install is ok, otherwise an error would be shown after installation? maybe @Marco Cantu can say something about this? after all EMB points to this forum itself, so maybe they want to be a little bit involved in the community ?
  7. mvanrijnen

    Several F2084 Internal Error on Delphi 10.4.2

    Would like to join the Beta, but can find not one usable link, searched for 15minutes. Website is one big commercial shit. We are on subscription license. One would think that something like this is available from "The New Customer Portal".
  8. mvanrijnen

    Several F2084 Internal Error on Delphi 10.4.2

    its not clear for EMB workers also, look at the reaction from EMB: [RSP-33759] compiler failures - Embarcadero Technologies "Yevhen Buhai requested more info in order to validate the issue and commented: Hello, can you attach please the test project where it happened?" Instead of, "Yes we are aware of this problem, and are fixing it really soon ..."
  9. mvanrijnen

    Several F2084 Internal Error on Delphi 10.4.2

    I have no speakers at my desktop at work, very difficult to listen to a webinar, it should not be that difficult, to communicate this kind of things in a way that's obvious for everyone, (email ???), some subforum at this website ? Maybe, maybe if they think of it, on their own website, or maybe from within the IDE.
  10. mvanrijnen

    Several F2084 Internal Error on Delphi 10.4.2

    Yes, ok. was just a little joke. nofi But i' m really curious where the different behaviour comes from, some people have never problems, and other again and again. Maybe EMB should do a kind of investigation on the machines/projects what causes the problems at some people,
  11. mvanrijnen

    Several F2084 Internal Error on Delphi 10.4.2

    So, what would be the difference between people with and people without the problems? * Installed packages ? * Windows environment, version, updates ? * Multiple Delphi IDE's open at one time ? (i've sometimes 3-5 open delphi ide's). * FMX, VCL development ? Looks sometimes a little bit like the dutch government nowdays, EMB and the MVP's denying the problems, and we the "people" (eg normal users/customers) are stuck with the ..... ๐Ÿ™‚ Still wondering why no communication from EMB at all, they are on this Forum, better they refer to this forum, would be nice if the where some bit more active and/or responsive.
  12. I think he points to the DosCommand, which can be installed with GetIt itself, do this before u compile autogetit. (so start Delphi, go to GetIt, install DosCommand from there), continue compiling autogetit after that.
  13. mvanrijnen

    RegEx performance

    We check the email address just with delphi code, implemented the rules needed. Also check the TLD against a TLD table, and we check if the email address is really accepted. (lookup mx, and simulate sending a mail, with most servers you can check if the email address is known to the server. (catch all addressess are always ok, thats a thing),. With this method we known which customers we need to contact to get a new valid email address. (our company does not have a customer portal, so we need to check everything ourselves)
  14. mvanrijnen

    can you help me port c# code to winapi/wininet please?

    start here ๐Ÿ™‚ : REST.Client.TRESTClient - RAD Studio API Documentation (embarcadero.com)
  15. mvanrijnen

    swagger help needed

    Its not that difficult, i have my own generator at the moment, only it generates code against our own restclient. But it's written just to make usable classes and client for us. And only implements at the moment whats needed for us, so i'm trying to determine the specs which the "public" would need, when creating a new one. If i see your comments, your still on swagger 2.x, and we are talking OpenApi 3.x. The .java would be needed if we (i) want to have a generator which fits the openapi toolchain. Generators List (openapi-generator.tech) Create a New Generator (openapi-generator.tech) But i'll see where i land, i go make what i think is necessary, inspect if SwagDog is a usable base, and give a sign when there is a minimum usable generator. From you i'l take for now ๐Ÿ™‚ : * selecting which API's should be generated or skipped, * idenifiying identical class. * ordering classes, automaticly or defined as override Why it takes a little bit time (actual time): * I do this in private (95%) * Gonna be first "public" repo on github * Have a ton of things to do at home/garden and garage,
  16. mvanrijnen

    swagger help needed

    Yes, ofcourse, can take a look at that, make a fork of that project. And create a generator which uses the same kind of mustache files as i mentioned. Project is only OpenApi v2.x, so also need to extend to v3.x Advantage is that then we are half way to also create the .java later. I see the .java solution in the longway as the best, because then it can be incorperated in the whole openapi toolchain. But for now, maybe a first expirment to create a mustache based generator on the project mentioned is the best to start. First client would be created with the standard rest-request component. (or maybe just straight indy http request). @David Schwartz Is the API you are using a public one? maybe you have an uri to it ?
  17. mvanrijnen

    swagger help needed

    Okay, started with uploading some old and new work to github. But after some research (followup from a tip from @sh17), we can go a few directions. 1. Create a generator in .java for Delphi. (we can fork the code and mustache templates for example from the c# generator and create delphi versions from them As the main work is done in the .java code, everyone can "easily" use the mustache templates to create a client against their own base rest-client ) Never done jave before ๐Ÿ˜ž 2. Continue with what i started now, implement the OpenApi (formeley Swagger) model in Delphi. This then could be used to generate the client from native delphi code. 3. ๐Ÿ™‚ Generate a generator in .java which generates some kind of inbetween code, usable for us Delphi developers. so we have WiP. (work in progress) The link to the C# Generator: Part1: https://github.com/OpenAPITools/openapi-generator/blob/master/modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/AbstractCSharpCodegen.java Part2: https://github.com/OpenAPITools/openapi-generator/blob/master/modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/CSharpClientCodegen.java The link to the C# mustache templates: openapi-generator/modules/openapi-generator/src/main/resources/csharp at master ยท OpenAPITools/openapi-generator (github.com)
  18. mvanrijnen

    10.4.2 LSP code completion error

    What hotfix, i did not get any mail from EMB about a hotfix, nor did i get it through our supplier. We don't hear anything, only, can you send a sample project for every bug we inject to QA at EMB. We do that, en then we hear nothing. How many individual issues about the LSP etc you want to see?
  19. mvanrijnen

    10.4.2 LSP code completion error

    the info is given by all the other RSP's about LSP etc, i see this as the only way to communicate with EMB.
  20. mvanrijnen

    10.4.2 LSP code completion error

    There are still issues with the LSP, ErrorInsight, CodeCompletion etc. See the list at: Issue Navigator - Embarcadero Technologies Please vote, a scream to EMB ๐Ÿ™‚ [RSP-33648] When are LSP, ErrorInsigh, CodeCompletion issues serious addressed ?? - Embarcadero Technologies
  21. It's about: GitHub - StockSharp/StockSharp: Algorithmic trading and quantitative trading open source platform to develop trading robots (stock markets, forex, crypto, bitcoins, and options). I want (maybe) use it for a custom trading bot, but it's Russian, so people heard about this, can it be trusted?
  22. mvanrijnen

    10.4.2 LSP code completion error

    If it really is influenced by the Windows build, or specific update, maybe report it to EMB?
  23. mvanrijnen

    StockSharp, anybody worked with this?

    Better question, anyone knows a framework like this for Delphi ?
ร—