Is it possible to to something like this using Spring.NET IoC container?
MyClass instance = new MyClass();
ContextRegistry.GetContext().InjectDepenencies(instance);
// instance has the defined dependencies set
This would come in handy. Of couse I could use ContextRegistry.GetContext().Get("name")
but that would create a new instance of the defined object. I would need to set the dependencies of an already created object.