Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Since your are already using Microsoft technologies, I would suggest building a windows service using C#.</p> <p>Have a look at that link which has all the details for creating a simple windows service:</p> <p><strong>Creating a Basic Windows Service in C#</strong></p> <p><a href="http://www.codeproject.com/Articles/14353/Creating-a-Basic-Windows-Service-in-C" rel="nofollow noreferrer">http://www.codeproject.com/Articles/14353/Creating-a-Basic-Windows-Service-in-C</a></p> <p>You will also need to create a timer where you will call the web service.</p> <p>Take a look here as well:</p> <p><a href="https://stackoverflow.com/questions/12535722/what-is-the-best-way-to-implement-a-timer">What is the best way to implement a &quot;timer&quot;?</a></p> <p><strong>Update</strong>:</p> <p>1- What can be the technologies to accomplish this ?</p> <p>--> C#</p> <p>2- Can a Windows service be created using WCF ? If so what protocol will be used for it ?</p> <p>--> No, they are 2 different concepts. But you can host a WCF service in a managed windows service. take a look here: <a href="http://msdn.microsoft.com/en-us/library/ms733069.aspx" rel="nofollow noreferrer">http://msdn.microsoft.com/en-us/library/ms733069.aspx</a> Personally I don't like that approach.</p> <p>3- How to run Windows service while development/ testing ?</p> <p>--> You can start/stop/pause a windows service from the Administrative Tools C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Administrative Tools\services.lnk</p> <p>4- How to schedule Windows service calling web service ?</p> <p>--> Start a timer in the windows service "OnStart" method that will call the web service</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload