COM+ question

  • Thread starter Thread starter Niko
  • Start date Start date
N

Niko

I have a very simple serviced component, which is installed under com+
application, but when I go in Component services (status) to watch my
com+ in action I don’t see any information that my object vas activated,
pooled …
Usually I can see that when I work with com object written in old
fashion c++ way!

Why is that?
 
Niko said:
I have a very simple serviced component, which is installed under com+
application, but when I go in Component services (status) to watch my com+
in action I don’t see any information that my object vas activated,
pooled …
Usually I can see that when I work with com object written in old fashion
c++ way!

Why is that?

Because you didn't enable "track events and statistics" (use dcomcnfg and
check : activation properties of you component).
You can enable this in code by setting the [EventTrackingEnabled(true)]
class attribute.

Willy.
 
Back
Top