C# http network requests with Windows service
- by Omegavirus
hello,
today i wrote a windows service which needs to send regular http requests to a server.
the problem is that the service runs under the "SYSTEM" account as local service and as such a type of service it isn't allowed to access the network.. for installing the service i use this class:
http://dl.dropbox.com/u/152585/ServiceInstaller.cs
is there a way to send http requests in a .net c# windows service and get the http response? thanks. :)