Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
587 views

Castle Windsor strange behaviour wth property injection and factory method

I am using Castle Windsor 2.5.1 in an ASP.NET MVC project and using property injection to create an object which I expect to always be available on a base controller class. I am using a factory to ...
5
votes
2answers
379 views

Good micro-kernel book suggestions

I am currently 'dreaming' about writing a small micro-kernel for a custom processor. The main reason for doing so is to have an easier way for interfacing a more complicated OS on top of it. However, ...
1
vote
1answer
444 views

Can't Instantiate Windsor Custom Component Activator

I'm getting an exception calling Resolve: KernelException: Could not instantiate custom activator Inner Exception: {"Constructor on type 'MyProj.MyAdapter`1[[MyProj.MyBusinessObject, MyAsm, ...
1
vote
1answer
197 views

List all IRegistrations in WindsorContainer/Kernel

How do I get a list of all IRegistrations/ComponentRegistrations in my WindsorContainer or its kernel? I can see a way of doing this by wiring to the ComponentRegistered event and tracking there, but ...
0
votes
1answer
35 views

Is there any application of L4 (microkernel)?

I Googled a lot about L4 microkernel and found that very less resources are there on L4. What are some good links I can refer ? Is there any application of L4 (i.e. where it is used) ?
0
votes
0answers
46 views

Microkernel vs Virtual machine [closed]

I just want to know about the Main theme of the each approach with respect to Process Management, Memory Management and File Management.
0
votes
1answer
38 views

uart problem with linux and user written operating system

statement: i have tried almost all the options for getting to work, trying to send data thru UART from a intel pentium 2 system using a device driver in polled io mode written by me, its very simple ...
0
votes
1answer
80 views

C++ microkernel cout problem

Ok, I'm working on my Operating Systems assignment. I need to write a microkernel which is able to do some basic stuff with threads, semaphores, events, etc. BCC 3.1 is imitating my system ...
0
votes
1answer
189 views

What about using a microkernel for Node.sj + NginX?

Not even sure if it would easily work but for an upcoming project I may need to set up a web sockets only server, it would not have a database, memcache or even serve static files, all it would need ...
0
votes
0answers
424 views

dll “drop in” architecture using Castle Windsor & MicroKernel

I'd like to create a framework that uses IoC without needing any configuration: So instead of (adjusted from http://www.castleproject.org/container/gettingstarted/part1/code.html): IWindsorContainer ...