About Access Windows Service information

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have facing a difficult problem about windows service

I have created a windows Service and I have add some set/get method to
return the value that caluate in background.

And i have another window form application, in this, i would like to get
back the value in the method that added in my windows service.

Is it possible, if yes, how can i get it?

Pls help...Thz~~
 
I always implement a remoting interface to comunicate with my services cross
application domains ( even between different computers )

this way you can get and set anny information you want from anny program
that implements the same remoting channel


regards

Michel Posseth [MCP]
 
Thz for yr reply first, however i dont understand how to do it.
And my service is placed in local machine not need to cross application
domain.

For this service, i would like to load the XML file in the background for
web service reply, I will load the XML file when start my service, when i can
get the information in the XML via the service. I dont want to load the XML
file in memony in each request. Because the XML file may to so large. In this
suitation, What possible solution that can help me?

Michel Posseth said:
I always implement a remoting interface to comunicate with my services cross
application domains ( even between different computers )

this way you can get and set anny information you want from anny program
that implements the same remoting channel


regards

Michel Posseth [MCP]


Jaye said:
I have facing a difficult problem about windows service

I have created a windows Service and I have add some set/get method to
return the value that caluate in background.

And i have another window form application, in this, i would like to get
back the value in the method that added in my windows service.

Is it possible, if yes, how can i get it?

Pls help...Thz~~
 
Back
Top