Jump to content

mvanrijnen

Members
  • Content Count

    446
  • Joined

  • Last visited

  • Days Won

    1

mvanrijnen last won the day on October 26

mvanrijnen had the most liked content!

Community Reputation

120 Excellent

1 Follower

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. mvanrijnen

    Removing String

    double trouble 🙂
  2. mvanrijnen

    Removing String

    and now try this ) with this ( text as it )() fill fail (sometimes) 😉
  3. mvanrijnen

    Removing String

    Use this: System.SysUtils.TStringHelper.IndexOf - RAD Studio API Documentation (embarcadero.com) How to use the above to solve your problem is your job as a developer 😉
  4. 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.
  5. mvanrijnen

    Can not install Delphi Community Edition 11.2

    How do you get the CE version of 12 ? Delphi IDE for Native Apps: Community Edition - Embarcadero States its still 11.x ?
  6. mvanrijnen

    Delphi CE application accesses unknown IPs

    Ah see, little bit strange that a site as virustotal does not take this to consideration or report it with the found ip's.
  7. mvanrijnen

    Delphi CE application accesses unknown IPs

    You can check this also with procmon: Process Monitor - Sysinternals | Microsoft Learn as said, i'm gonna check this now 🙂 (private laptop i have CE installed, will do the same tomorrow with the Enterprise edition). procmon does not detect any network connectivity simple console app: (and just for fun i attached the ip trace from procmon, running bds-> start project1 -> close bds) Virustotal result: Link: VirusTotal - File - 956317d6f12af53a4c97db41807e9dd51fd37c30057607cecb969fc9214ccb99 Scanning: Bkav Pro W32.AIDetectMalware RisingTrojan.Generic@AI.100 (RDML:gihstO5MCnK0eVlOewg5Rw) SecureAgeMalicious VBA32 TScope.Trojan.Delf IP Traffic When executing the file being studied, it generated the following IP traffic. 192.229.211.108:80 (TCP) 20.99.184.37:443 (TCP) program Project1; {$APPTYPE CONSOLE} {$R *.res} uses System.SysUtils; begin try try Writeln; Writeln('This is just a test'); except on E: Exception do Writeln(E.ClassName, ': ', E.Message); end; finally Writeln; Write('press enter...'); Readln; end; end. bds ip trace.txt
  8. i'm out of idea, very strange that you get a statuscode 200, visible content in the proxy but not content in the delphi object.
  9. mvanrijnen

    Spring4D dictionary and record values

    litlle bit offtopic, just curious, but what would be the (big) advantage of using Spring4D for collections instead of the "Built In" generics/collections from Delphi?,.
  10. but there is clearly JSON data in the response, i really would not know where your response content is empty
  11. ah ok. You can see that there is content (348 bytes) but i think i know the problem, probably your accept header is not ok. more will follow in a minute, i check something..... you have this RESTProfileRequest.Params.AddItem('Accept', '*/*', TRESTRequestParameterKind.pkHTTPHEADER); somewhere? change the '*/* in 'application/json' or better just use the constant: CONTENTTYPE_APPLICATION_JSON (is declared in the Rest.Types unit) i use: req.AddParameter('Accept', ctAPPLICATION_JSON, pkHTTPHEADER, [TRESTRequestParameterOption.poDoNotEncode]);
  12. mvanrijnen

    Delphi 12 is available

    could be that we had the same problem, therefore we only use the pure/clear $(Auto)
  13. mvanrijnen

    Delphi 12 is available

    Just set it to auto in de Project options for the package: Lib suffix: $(Auto)
  14. mvanrijnen

    Delphi 12 is available

    Yes, they should turn it around, first release the CE as a preview,, get the community to work for you, they will if you provide them a free IDE. Go more to a system as MS does, you need to have a payed license if you have $xxx in annual revenue.......
×