473,803 Members | 2,279 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How to get the List of Component Services using Dotnet ?

Hi

I want to list the available "Component Services " (COM+) in a machine .

i am trying to get the list of Componenet services in a machine using
windows forms in dotnet , how can i retrive the list of componenet services,

i know we can get the list of windows services, but i dont know how to get
the list of Component services ?

can any one let me know how to do this ?

Thanks
Senthil
Jan 27 '06 #1
3 4093
Hi,

Add COM reference to C:\Windows\Syst em32\comsvcs.dl l
Then enumerate COM+ applications as following:
-- BEGIN CODE --

COMSVCSLib.MtsG rpClass group = new COMSVCSLib.MtsG rpClass();

for (int i = 0; i < group.Count; i++)
{
object item = null;
group.Item(i, out item);
COMSVCSLib.COME vents events = (COMSVCSLib.COM Events) item;

listBox1.Items. Add(events.GetP rocessID().ToSt ring() + ":" +
events.PackageG uid + ":" + events.PackageN ame);
Marshal.Release ComObject(item) ;
item = null;
Marshal.Release ComObject(event s);
events = null;
}

Marshal.Release ComObject(group );
group = null;
-- END CODE --

hope this helps
--
Milosz Skalecki
MCP, MCAD
"SenthilVel " wrote:
Hi

I want to list the available "Component Services " (COM+) in a machine .

i am trying to get the list of Componenet services in a machine using
windows forms in dotnet , how can i retrive the list of componenet services,

i know we can get the list of windows services, but i dont know how to get
the list of Component services ?

can any one let me know how to do this ?

Thanks
Senthil

Jan 27 '06 #2
Hi

Thanks a Lot !!!

i have one more requirement:

i need to select the listed COM+ Applications and be bale to start and
Stop...

for windows service i used to do like this:
ServiceControll er SC = new ServiceControll er();

SC.ServiceName = "MyService" ;

SC.start();

so in the same way what must be done here for COM+ ?

Thanks

Senthil

"Milosz Skalecki" <mi*****@REMOVE ITwp.pl> wrote in message
news:F4******** *************** ***********@mic rosoft.com...
Hi,

Add COM reference to C:\Windows\Syst em32\comsvcs.dl l
Then enumerate COM+ applications as following:
-- BEGIN CODE --

COMSVCSLib.MtsG rpClass group = new COMSVCSLib.MtsG rpClass();

for (int i = 0; i < group.Count; i++)
{
object item = null;
group.Item(i, out item);
COMSVCSLib.COME vents events = (COMSVCSLib.COM Events) item;

listBox1.Items. Add(events.GetP rocessID().ToSt ring() + ":" +
events.PackageG uid + ":" + events.PackageN ame);
Marshal.Release ComObject(item) ;
item = null;
Marshal.Release ComObject(event s);
events = null;
}

Marshal.Release ComObject(group );
group = null;
-- END CODE --

hope this helps
--
Milosz Skalecki
MCP, MCAD
"SenthilVel " wrote:
Hi

I want to list the available "Component Services " (COM+) in a machine .

i am trying to get the list of Componenet services in a machine using
windows forms in dotnet , how can i retrive the list of componenet
services,

i know we can get the list of windows services, but i dont know how to
get
the list of Component services ?

can any one let me know how to do this ?

Thanks
Senthil

Jan 30 '06 #3
any ways to start and stop the com+ applications?

"SenthilVel " <se************ ******@misyshea lthcare.com> wrote in message
news:ez******** ******@TK2MSFTN GP15.phx.gbl...
Hi

Thanks a Lot !!!

i have one more requirement:

i need to select the listed COM+ Applications and be bale to start and
Stop...

for windows service i used to do like this:
ServiceControll er SC = new ServiceControll er();

SC.ServiceName = "MyService" ;

SC.start();

so in the same way what must be done here for COM+ ?

Thanks

Senthil

"Milosz Skalecki" <mi*****@REMOVE ITwp.pl> wrote in message
news:F4******** *************** ***********@mic rosoft.com...
Hi,

Add COM reference to C:\Windows\Syst em32\comsvcs.dl l
Then enumerate COM+ applications as following:
-- BEGIN CODE --

COMSVCSLib.MtsG rpClass group = new COMSVCSLib.MtsG rpClass();

for (int i = 0; i < group.Count; i++)
{
object item = null;
group.Item(i, out item);
COMSVCSLib.COME vents events = (COMSVCSLib.COM Events) item;

listBox1.Items. Add(events.GetP rocessID().ToSt ring() + ":" +
events.PackageG uid + ":" + events.PackageN ame);
Marshal.Release ComObject(item) ;
item = null;
Marshal.Release ComObject(event s);
events = null;
}

Marshal.Release ComObject(group );
group = null;
-- END CODE --

hope this helps
--
Milosz Skalecki
MCP, MCAD
"SenthilVel " wrote:
Hi

I want to list the available "Component Services " (COM+) in a machine .

i am trying to get the list of Componenet services in a machine using
windows forms in dotnet , how can i retrive the list of componenet
services,

i know we can get the list of windows services, but i dont know how to
get
the list of Component services ?

can any one let me know how to do this ?

Thanks
Senthil


Feb 7 '06 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
2613
by: Michael Crawford | last post by:
Hi, Where would one start for this type of application: I want to create an vb.net container application that has the gives the end user the ability to install and uninstall plugins or add-in modules. As the user installs the various components, additional functionality to the application is integrated. How would I structure or orchestrate a project plan that makes use of add-in
8
775
by: Carel Lotz | last post by:
H We have ported our VB 6 application into VB .NET but are still integrating with a few COM + applications written in VB6 running on our application server (Win 2000 Server). We have the proxies to link to the application server installed but we every now and then get a error when we try to make a call to a component running on the app server. The error message is something like Object reference not set to an instance of an objec at...
5
1966
by: jqpdev | last post by:
Hello all... I'm coming from a Borland Delphi background. Delphi has a specific component called a Data Module. In the designer the Data Module behaves like a windows form. A developer can drop non-visual (controls) on the data module surface and wire them up and create procedures, functions, event procedures. In the source file (code behind file) the Data Module is a class, and the dropped components are public properties. The...
7
3807
by: David Freeman | last post by:
Hi There! I'm trying to create a User Registration page in ASP.NET and wondering what is the best way to get the list of up-to-date Countries and Cities? Are there any Web Services on the web that I can use to retrieve such information? If not, what are the options? Please, any suggestions and pointers will be very much appreciated! Dave
1
3211
by: Stuart Dee | last post by:
Hi, How do i create a dcom or com+ component with visual basic dot net. Ive actually created it but the article tells me to register tlb and insert into gac How do I put it into MTS as a dcom component Any good articles Tia
0
1059
by: SenthilVel | last post by:
Hi I want to list the available "Component Services " (COM+) in a machine . i am trying to get the list of Componenet services in a machine using windows forms in dotnet , how can i retrive the list of componenet services, i know we can get the list of windows services, but i dont know how to get the list of Component services ?
11
1871
by: BillGatesFan | last post by:
I have a web service which calls a .NET queued serviced component in COM+. I turned statistics on for the component. I call the component 10 times, 10 objects get created but they do not go away. I'm calling Marshal.ReleaseComObject after I make each call. public NotifyResponse Notify(NotifyRequest reqMessage) { try {
1
1614
by: =?Utf-8?B?VGFwaW8gTGluZHF2aXN0?= | last post by:
I have a problem with .NET COM+ component which cannot access the private key of the client certificate. The problem seems to be that when the user on which privileges the COM+ server application is running is logged in, the certificate can be accessed. But as soon as the user logs out the I get forbidden errors on the server. I've tried to put the certificate in the users personal store and in the local machine personal store and...
0
30253
AmberJain
by: AmberJain | last post by:
Windows Autorun FAQs: List of autostart locations Linked from the Original article- "Windows Autorun FAQs: Description". Que: Can you list all the autostart locations for windows? Ans: Here is a comprehensive list of all autostart locations for Windows OSes: NOTE : These are some abbreviations used in this list. Please note them carefully: HKCU = HKEY_CURRENT_USER HKLM = HKEY_LOCAL_MACHINE
0
9699
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9562
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10542
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10309
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
10068
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6840
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5625
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4274
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2968
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.