delphi windows service can't download file from internet

前端 未结 4 1243
名媛妹妹
名媛妹妹 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:30

    Services cannot access Network Resources, such as via UNC paths, without additional access rights applied. But a service has unrestricted access to use TCP and UDP sockets. I've written several services that connect to remote servers via TCP/IP and they work fine without extra configurations or access rights needed.

提交回复
热议问题