How to comunicate Web Application and Windows Service
-
Hello All, I want to ask that, Can I communicate data into a web application through the windows service?? Actually My problem is that I have a Call Dialer which is responsible to dial the call into our BPO.So that dialer activex control easily use into a c# windows application but it is not to use in web application. So I want to this scenerio in front end my Web application run and the data processing end my windows services take care of that and dispaly the appropriate data to my web application according to need.. so Is IT Possible??? If yes then how can ?? I am searching into google also but I want to your help also.. Thanks in advance
Deepak :) Smile a Lots,Its Costs Nothing
-
Hello All, I want to ask that, Can I communicate data into a web application through the windows service?? Actually My problem is that I have a Call Dialer which is responsible to dial the call into our BPO.So that dialer activex control easily use into a c# windows application but it is not to use in web application. So I want to this scenerio in front end my Web application run and the data processing end my windows services take care of that and dispaly the appropriate data to my web application according to need.. so Is IT Possible??? If yes then how can ?? I am searching into google also but I want to your help also.. Thanks in advance
Deepak :) Smile a Lots,Its Costs Nothing
One thing you can do,If you want to show the data in your webapplication,let the windows service do the data processing job,Create a webservices that will monitor the database,and once your processing is done by win service you can show oit on your web page..
Cheers!! Brij Check My Latest Article
-
One thing you can do,If you want to show the data in your webapplication,let the windows service do the data processing job,Create a webservices that will monitor the database,and once your processing is done by win service you can show oit on your web page..
Cheers!! Brij Check My Latest Article
ya I Thought about that But how can I get the live data through windows services. Is it possible to run the windows service through the web application button click event. And other question is that I have must be add the my dialer ActiveX into my windows services when we add that activeX into my windows application then user able to dial and recive a call through dialer
Deepak :) Smile a Lots,Its Costs Nothing
-
ya I Thought about that But how can I get the live data through windows services. Is it possible to run the windows service through the web application button click event. And other question is that I have must be add the my dialer ActiveX into my windows services when we add that activeX into my windows application then user able to dial and recive a call through dialer
Deepak :) Smile a Lots,Its Costs Nothing
As you said that your widows services is processing the data.After processing it you can put it in some kind of temporary database,and Monitor the DB from your webservice and show it on your webapplications or you can put some async call which will access the DB and show data on your webpage. Windows service should always be running on the system and process the data when gets some data.
Deepak the Cool wrote:
Is it possible to run the windows service through the web application button click event
NO
Cheers!! Brij Check My Latest Article