Windows Service & Web Service
-
In ASP.NET i have one application. I need to run a report from that app to consultants at every weekend and monthend it should work automatically when system starts. I need to schedule it in windows service and other retriving queries for this in web service in asp.net. how to do this. how to call windows service from webservice. Thanks Prya
-
In ASP.NET i have one application. I need to run a report from that app to consultants at every weekend and monthend it should work automatically when system starts. I need to schedule it in windows service and other retriving queries for this in web service in asp.net. how to do this. how to call windows service from webservice. Thanks Prya
Why you put burden of retrieving queries to windows service, rather you can put report data from windows service in db, and let web service directly fetch reports from db to service to asp.net page without interrupting windows service. Regards, Ketan.
-
Why you put burden of retrieving queries to windows service, rather you can put report data from windows service in db, and let web service directly fetch reports from db to service to asp.net page without interrupting windows service. Regards, Ketan.
Actually i want only the scheduling in windows service. other works i have to do in asp.net. so i thought it is better to use web service and easy to access the windows service from web service. i dont know how to call. Thanks. Regards, Prya