According to Jmeter spec, "Each JMeter thread has its own "cookie storage area". So, it means I can't use one global (top-level) HTTP Cookie Manager to share cookies between different threads.
So, the only solution I know is to store cookies as properties and extract them at the beginning of each thread.
Q: Is there any other way to do the same without storing cookies in files/properties?