Activity overview
Latest activity by ChristopheS
The architecture is as follows:
Client -> COM+ Package
In my scenario the client will do 1 call to COM+.
Internally inside COM+, the called component will make many calls (37) to a main business component. During my instrumentation, only 1 or 2 calls (even 0 sometimes) are captured.
Extra info:
- Type of instrumentation: Method-level timings; all methods (faster)
- My client is a Windows service
- Code is release version
- No PDB files deployed
- I have often "Interop.SEHException" logged by the profiler at the beginning of the execution (but don't know what this means) / comments
The architecture is as follows:
Client -> COM+ Package
In my scenario the client will do 1 call to COM+.
Internally inside COM+, the called component will make many calls (37) to a main business co...
Partial Instrumentation in COM+
Hi,
I have a Windows service that is monitoring a queue from MQSeries. When a message arrives, a .NET transaction is created in order to get(consume) the message in a transactional way.
Then the se...