Click here to Skip to main content
15,921,694 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
is there a way to access objects ( that we can see in task manager registered in ROT like WINWOR>EXE) through windows services ?
these objects can b easily accessed through the windows form applications but those functions doesn't work for window services. Please guide
Posted
Updated 6-Mar-13 0:30am
v3

1 solution

Yes, you can, but this is not related to anything shown by Task Manager, you are confusing something with something else.

Two .NET technologies are based on conception of "remote object" or similar to it: "classical" .NET remoting and WCF. But you need to learn them to understand the ideas, and especially if you want to use either of them. Please see:


http://msdn.microsoft.com/en-us/library/aa185916.aspx[^],
http://msdn.microsoft.com/en-us/library/ms973857.aspx[^],
http://msdn.microsoft.com/en-us/library/kwdt6w2k%28v=vs.100%29.aspx[^],
http://msdn.microsoft.com/en-us/library/2e7z38xb%28v=vs.100%29.aspx[^];

http://en.wikipedia.org/wiki/Windows_Communication_Foundation[^],
http://msdn.microsoft.com/en-us/vstudio/aa496123[^],
http://msdn.microsoft.com/en-us/library/dd456779.aspx[^].

—SA
 
Share this answer
 
Comments
muneebalikiyani 5-Mar-13 23:46pm    
i have mentioned "Windows Services" and the objects i am talking about are those which are registered in ROT (running object table) , i m trying to access those objects through windows services but i think windows services doesn't support interaction with the Desktop applications.
Sergey Alexandrovich Kryukov 6-Mar-13 0:27am    
No, Windows services do not have UI. Why would you need any? You can have UI on another side. It all depends on your application. This is not directly related to your question and to transport.
—SA

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900