I m working on a Asp.Net MVC application which will have a Windows service.
The Windows service basically call an external Soap based web service which receive some parameters and return data, windows service will store that data into SQL server. This windows service will be calling external web service periodically automatically.
Since I dont have a detail understanding of services. can you please guide me on the following lines:
- What can be the technologies to accomplish this ?
- Can a Windows service be created using WCF ? If so what protocol will be used for it ?
- How to run Windows service while development/ testing ?
- How to schedule Windows service calling web service ?