How to build a COM+ app
C#
1
Posts
1
Posters
0
Views
1
Watching
-
I am a newbie in C#. I tried to build a COM+ application by creating an interface like this: public interface ITest { int sum(int x, int y); } then I created a class which inherit from ServicedComponent and this interface. After that I complied and deployed it by using regsvcs. Everything seemed to be fine, but when I checked my COM+ from COM Admin, I not only saw the inferface but also the class methods. It doesn't seems right because normally, only the interface's method should be there. What did I do wrong here? Thanks, Tommy.