How manage .Net Windows Service using XML webServices

  • Thread starter Thread starter Neslihan ERDEM
  • Start date Start date
N

Neslihan ERDEM

Every body Hi

first of all I say Why do I need Windows Service /
Every Day I create XML file . I writed a XML web
service And .I join this servis Windows service. I
create Windows Service that I call method XML Web
Service .
My Problem I generate Windows Service but I want this
service always run . But I dont make it

How make /Net windows service always run
 
Neslihan,

If you have a web service then it is running inside of IIS (most
likely), and you don't have to have it be a service, since it is always
running. You just have to make sure that the calls are made to your web
service when you want to do what you need.

Hope this helps.
 
I want to descrie my web service..

Firstly I create ASP.NET Web Aplication , after I add ASP:NET WEb Service
and Windows Service I want that I always create XML file to chance data
(I control data with sql datareader ).If Data changed I want to generate XML
file . I make GetXMLMethod to XML Web Services . This Method call by
windows service . This much everything is true. My problem I did'nt say to
work in these hours Windows Service .

Nicholas Paldino said:
Neslihan,

If you have a web service then it is running inside of IIS (most
likely), and you don't have to have it be a service, since it is always
running. You just have to make sure that the calls are made to your web
service when you want to do what you need.

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Neslihan ERDEM said:
Every body Hi

first of all I say Why do I need Windows Service /
Every Day I create XML file . I writed a XML web
service And .I join this servis Windows service. I
create Windows Service that I call method XML Web
Service .
My Problem I generate Windows Service but I want this
service always run . But I dont make it

How make /Net windows service always run
 
Back
Top