delphi windows service can't download file from internet

前端 未结 4 1241
名媛妹妹
名媛妹妹 2021-01-24 00:37

i have a windows service written in delphi,the service will use to downloading a file from my website but it can\'t download the file,it doesn\'t thrown any exception also i c

4条回答
  •  自闭症患者
    2021-01-24 01:22

    Check the access rights of the user the service runs under.

    By default it is LocalSystem, which may not be allowed to access remote networks (i.e the Internet). Try running it under the same user you logged in as.

    Hope this helps

提交回复
热议问题