as simple as i can:
i have a WCF service with a private constructor. if i'm not wrong, constructors must be parameterless in WCF and the parameter i need is the caller's name (or caller's method name), so i can assign a few readonly fields.
so, the question is: is there a way that i can get the caller's name -- or the method that invoked it? i was playing around with OperationContext.Current, but without any luck.