Other then that exe's are not to be trusted bc they may have malicious code and few webservers will execute a bin, tell me why a bin should not be used for web programming?
|
|
|||||||
|
|
|
I think you sort of mix up things here. EXE files these days are just Portable Executable (PE) containers and may contain native code or a .Net Assembly. Now DLL files can contain native code or a .Net Assembly too, and deploying your Web Application in the form of DLL files is a quite standard procedure in ASP.NET. So just because it's an EXE file it doesn't mean it is a native Windows executable binary. Now I suppose you mean native applications. Native applications classically run in a CGI interface, and historically CGI launches a new process on each page request so there is quite some overhead on page requests, hence it is slow. Now there is a CGI variation called FastCGI, which enables you to run native binary web applications in a way that there is no need to create a new process every time a page is requested. FastCGI is fast. In fact, a lot of the popular dynamic languages interface FastCGI, but there is nothing stopping you from interfacing FastCGI from your code. Security is really not an issue, it is just a question of setting up the permissions on the host right. If your C process does not have permission to do nasty stuff, it doesn't matter if it is written in C, it won't be able to do so. What would you gain by a C web application? One might be tempted to say that there is a performance gain. However, the general experience is that for web applications the main performance bottleneck is seldom the application code itself; it is more likely that you will have performance problems because of using the wrong data structures, excessive database usage, etc., stuff that doesn't have to do anything with your application being compiled to native binary. What would you lose? A lot of time. Debugging allocation issues, memory leaks, synchronization, lack of available libraries, etc. Believe me, you just don't want to do it. |
|||
|
|
|
|
Um, ISAPI filters and ISAPI extensions are compiled C binaries and used with some frequency (though admittedly in decline). |
||
|
|
|
|
It turns out that the .exe's are slower. There is overhead involved in starting up a new process, and using .exe's in a traditional bin for web sites results in a new process for every single request. An architecture that creates one process for your application, hosted by the web server application itself (IIS/Apache, etc) performs much better. |
||||
|
|
|
I remember learning how to do CGI programming in C / C++ on IIS. I remember seeing URLs that ended with .exe |
||
|
|
|
|
I don't think there's any such rule that compiled languages are not to be used for web programming. In fact, if you count Java (which technically produces bytecode, not an exe), web programming does use binaries quite often. It is true, however, that dynamic languages have been very popular for web programming. These include Perl, PHP, Ruby, Python, and ASP.NET. This popularity is probably due to the ease of making changes without having to compile, rather than any prohibition against running binaries. |
||
|
|
|
|
You might want to be a bit more specific in your question. Binary executables are used all over the place for web programming. There are many web applications who have their back-ends written in C and C++. Many more are written in Java (and other Byte-code based languages) and many rely on interpreters (themselves executables) to provide server side functionality. Server side it really doesn't matter what you are using as long as it can accept incoming requests and output responses (with or without an independent web server) Client side, you really have no control over (unless you provide your own client) |
||
|
|
