I have a COM+ application written in C# (ServicedComponent.) The application pool size > 1 in all cases. I am using SharedPropertyGroups to retain and share data. From my testing it is not clear if all the running instances of the application is sharing the same values.
Are the properties stored in SharedPropertyGroup are shared across all the instances of the same COM+ application?
Each application pool (DLLHost process) will get it's own shared property manager. From COM+ Shared Property Manager Concepts:
"Shared properties stored in the SPM are available only to objects running in the same process."
So, the shared property manager will let you share transient state inside of one application (pool instance).
If you want to share state between multiple processes then you would probably want to look at an out of process cache approach (e.g. Windows Server AppFabric Caching or a database depending on the requirements).
Also see .NET Enterprise Services and COM+ 1.5 Architecture where they describe some of the issues when using application pooling: