Jump to content

Olli73

Members
  • Content Count

    31
  • Joined

  • Last visited

Everything posted by Olli73

  1. Olli73

    TRestRequest and IOS...

    Is at this place something filled in "restResponse1.Content"? Is the value later (after the Handler) filled? And what is the StatusCode of the response?
  2. Olli73

    TRestRequest and IOS...

    In case of ExecuteAsync, have you used the ACompletionHandler Parameter instead of the Afterexecute event and also set the ASynchronized Parameter to true?
  3. Olli73

    TRestRequest and IOS...

    Instead of creating your own thread/task, you could/should use "RestRequest1.ExecuteAsync(...)".
  4. Olli73

    My app dies in Server 2019

    Do you use a DLL and have also in Windows event log something with "KERNELBASE.dll"? I could only solve such an issue by including the DLL code into program.
  5. Download works out of the box, upload not. You must have a PHP Script, a CGI, a ISAPI dll or an own server to be able to upload files.
  6. What did you install / configure on Apache server side to accept uploading files?
  7. Olli73

    Deployment to IIS

    Not much information. I would also create a logging in the ISAPI dll.
  8. Olli73

    Deployment to IIS

    Not sure, my experience with IIS is a long time ago, but it could be here: %SystemDrive%\inetpub\logs\LogFiles
  9. Olli73

    Deployment to IIS

    Are you loading DLL's or other files you expect in root folder?
  10. Olli73

    Deployment to IIS

    Servers mostly send only an "internal error", so that hackers have not much information about an issue (Vulnerability). So only a log on server can tell you more.
  11. Olli73

    Deployment to IIS

    Your answer body in readable format: Could be an issue in your dll or other internal issues. Is your DLL 32 or 64 bit and it is propper configured in IIS? EDit: You must search / find a server log...
  12. Olli73

    *UPDATED!...Issue Populating The ListView Subitems

    So you can add a sub item: LsubItem := ListView1.Items.Add; LSubItem.Text := 'Sub-Item'; LSubItem.Parent := LItem; But I think you should try TListBox. FMX list box is more comparable to VCL list view.
  13. Which error message? At which place (event) are you?
  14. You try to read "parameters", but send data in body!? Then you must read body of request,
  15. Is "data" variable of type string? Then try with Ansistring please,
  16. "Access-Control-Allow-Origin: *" and Credentials / "Access-Control-Allow-Credentials: true" do not work together. Try with "Access-Control-Allow-Origin: null" or better a propper address.
  17. I am aware of issues with AI, Too often AI has invented Delphi functions which would be practical but are not available. I wanted only mention what AI has to say about this...
  18. OK, but Copilot tells me:
  19. Is it a laptop? Maybe the cores get too hot and so gets throttled...
  20. Since the params parameter in the ExecuteProcess function is string, I would not use PChar casting in Parameters variable; use strings. And for testing I would try it without "stdout > ...". And I would try to use the path to the DB insterad of "gds_db".
  21. How looks your call of RunProcess?
  22. I would try to set the options later in the code
  23. Olli73

    email issues

    In the unit "OverbyteIcsSmtpProt.pas" you can find this line: StrCat(PAnsiChar(Line), PAnsiChar(SmtpDefEncArray[FMailMsgText.TransferEncoding])); But it must be: StrCat(PAnsiChar(Line), PAnsiChar(AnsiString(SmtpDefEncArray[FMailMsgText.TransferEncoding]))); Edit: Text translated, first I wrote in German 😉
  24. Olli73

    email issues

    How do you set the encoding?
×