vote up -4 vote down star

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?

flag

38% accept rate
What? Please provide a specific example of this advice. A quote or a URL or something would help. Provide some specific details, please, to help us understand the question. – S.Lott Jan 14 at 2:04
Please use proper English (bc? bin?) – Epitaph Jan 14 at 2:27
That question is very hard to understand. Even after you fix all the typo and grammar problems such as: (i) then should be than; (ii) exe's should be executables; (iii) bc should be because; (iv) bin should be binaries(?), it still does not make sense. – Khnle Jan 14 at 3:35

6 Answers

vote up 2 vote down check

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.

link|flag
vote up 1 vote down

Um, ISAPI filters and ISAPI extensions are compiled C binaries and used with some frequency (though admittedly in decline).

link|flag
vote up 2 vote down

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.

link|flag
This is no different than any other use of CGI. – Ignacio Vazquez-Abrams Jan 14 at 2:41
Would you consider a Java servlet or WAR running inside an appserver or container to be a binary? – Bill Karwin Jan 14 at 3:09
vote up 1 vote down

I remember learning how to do CGI programming in C / C++ on IIS. I remember seeing URLs that ended with .exe

link|flag
vote up 2 vote down

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.

link|flag
vote up 0 vote down

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)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.