Please report new issues athttps://github.com/DOCGroup
Initially, the single threaded lock was part of the servant object which made it easy to serialize calls to the servant even if it was registered among multiple single threaded POAs. However, the problem was that all the servants also needed to be serialized in a single threaded POA. Therefore, the single threaded lock was moved from the servant to the POA. In addition, the spec also says: "POAs using the SINGLE_THREAD_MODEL may need to cooperate to ensure that calls are safe even when implementation code (such as a servant manager) is shared by multiple single-threaded POAs." It seems that to achieve serialization for all servants in the POA and shared servants across single threaded POAs, there would be to have two set of locks: (a) on the POA to serialize all the servants; (b) on the implementation object (servant, managers, activators) to serialize objects shared among different POAs.
Accepted.