![]() |
![]() |
![]() |
C# 'Servlet Engine' I like the C# Language because it's well designed, and .NET because it's well supported on Windows and available on Unix-like systems (courtesy of Mono).
Seun Osewa
I'm not a Java expert by any stretch, but I imagine that what you want to do is write classes that implement IHttpHandler, and then hook them up to URLs using Web.config.
Brad Wilson (dotnetguy.techieswithcats.com)
I also think that would be the way to do it, but how is that different from having an aspx file "without" gui?
Thomas Eyde
The fact that you don't have to deploy an ASPX file, basically.
Brad Wilson (dotnetguy.techieswithcats.com)
You don't have to deploy .aspx files anyway.
Steve Jones (UK)
Is it easier to not deploy an aspx file than to add the handler wiring to web.config? It's a one time action, anyway.
Thomas Eyde
The ASPX file will be compiled, pointlessly, and the resulting output buffer will be need to be cleared, pointlessly. If the end user deletes or mucks with the ASPX file (a real possibility if you're selling the application), they will also cause trouble.
Brad Wilson (dotnetguy.techieswithcats.com)
Oh, plus, pages aren't reusable. You can design stateless handlers that can be reused.
Brad Wilson (dotnetguy.techieswithcats.com)
|