Quantcast
Channel: time tracking
Browsing all 12 articles
Browse latest View live

Re: time tracking

Hi someguy,Please refer to MSDN article, which will instruct you how to do it:Combine Web and Windows Services to Run Your ASP.NET Code at Scheduled Intervals Best regards, Guang-Ming Bian - MSFT

View Article



Re: time tracking

It is best to use things as they were intended. A Windows service is intended to start when the system starts, and to be available to perform tasks on a schedule, or as requested. A web service, on the...

View Article

Re: time tracking

hi,johnwsaunders3 Web services are meant to be passive, activated only when a request arrivesthis is the reason why i have migrate my procedures to windows service, which will detect and send a sms...

View Article

Re: time tracking

You should also take a look at Query Notifications in SQL Server (ADO.NET). However, this sort of thing should be done in a Windows Service, and not in a web service. Web services are meant to be...

View Article

Re: time tracking

i'll check that site, if you have any other simple suggestions please let me know, thanks

View Article


Re: time tracking

if you use an on insert  trigger in SQL 2005 , it will expose an "inserted" table. Not sure exactly what it is called - my trigger knowledge is now a bit rustly since it's been a while since I used it....

View Article

Re: time tracking

my scenario: every time a new entry is inserted in the table, the window service will send an sms (the recipient is based on the new entry inserted).i just need a trigger for the web service to send an...

View Article

Re: time tracking

Do you need to do it every 15 minutes. If not you could do a trigger that checks the inserted values and see if the status = 0 and use the xpsendmail function in sql 2005 to send a mail on the insert...

View Article


Re: time tracking

i created a windows service (a timer function) that checks an sql table for every 15 mins if theres a uncomplete transaction(if Status field is equals to 0). then using that window service i need to...

View Article


Re: time tracking

Why do you want to use a webservice to check if sql data has changed. Have a look a sql dependancy, mabye it could be a solution to you problem. Generate a proxy for the WS and add it like a normal...

View Article

Re: time tracking

does anyone have an idea on how to call web service method using windows service??

View Article

time tracking

hi,Does anyone have ideas on how to check records in sql table at a particular time (e.i. every 15 mins) using web services?Thanks

View Article
Browsing all 12 articles
Browse latest View live




Latest Images