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
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 Service
account.
Check it to see if it fixes the issue !