delphi windows service can't download file from internet

前端 未结 4 1202
名媛妹妹
名媛妹妹 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条回答
  •  -上瘾入骨i
    2021-01-24 01:20

    Normaly, under LocalSystem, a service can't access network resources. You said it works with another PC, I can't explain why. You said it works in another application, yes, because application is executed with current account.

    The solution may be to execute the service under the Network Serviceaccount. Check it to see if it fixes the issue !

提交回复
热议问题