What can I do to avoid ASP.Net creating a new WorkerAppDomain for my Custom IHttpHandler. As far I know the problem is the SimpleHttpworkerRequest which runs a new Appdomain.
I have an embedded cassini webserver, with this webserver I want to create a webinterface for my app. but I can't access the objects of my app, because the webrequests are created in a new Appdomain. If possible I want to avoid any kind of remoting.
Maybe I have a wrong perspective on the problem. What else is possible to create a web interface for an application?