Is it pos开发者_JAVA技巧sible to initialize a castle container (windsor) by passing a stream to the XmlInterpreter somehow? It appears that the current implementation only supports files. thanx, -tzurs
Inherit from AbstractStreamResource, then you can do:
var c = new WindsorContainer(new XmlInterpreter(new MyStreamResource(...)));
See FileResource for guidance.
精彩评论