vote up 1 vote down star
1

Regardless of how hard/long it is, has anybody ever used C or C++ for web development?

flag
2  
"Yes" or "no" ? What do you want to know about it? – strager Aug 29 at 6:43
1  
It's been done, but not by sane people in this millennium. See here: stackoverflow.com/questions/1248923/… – annakata Aug 29 at 6:47
What do you mean by "web development"? Lots of Web servers have been written in C & C++. – Neil Butterworth Aug 29 at 7:41
whether it be webpage dev or web-based dev – baeltazor Sep 15 at 12:33

7 Answers

vote up 2 vote down check

At least on Apache / Linux environments, it's possible to use any file that can be executed as a CGI script. I've used C++ for one tiny shareware keygenerator script many years ago, but only because I already had the source in C++ and no knowledge of better suited programming languages.

I guess it would even be possible to use shell scripts for that purpose.

It makes little sense these days though. On database-driven websites, the SQL commands take usually much more resources than the program code. Therefore it would seldom make sense to use C++ over languages with much better support for web development, like C# / .NET.

link|flag
-1 ...never said he wanted to do it himself on a new project. Just asked if anybody has ever done it. – Justin Niessner Aug 29 at 6:49
2  
When someone asks a question in this forum, I do imply that he does that with a purpose, not out of pure curiousity. – Adrian Grigore Aug 29 at 6:53
vote up 16 vote down

Yes.

link|flag
4  
Can't really let you be downvoted for answering the question accurately. – silky Aug 29 at 6:50
6  
+1 for accuracy – Cyril Gupta Aug 29 at 6:53
5  
+1 for sense of humor – Adrian Grigore Aug 29 at 7:02
1  
+1 because you were downvoted for having a sense of humor and answering – baeltazor Aug 29 at 7:23
2  
The answer's quality matches that of the question. – Neil Butterworth Aug 29 at 7:42
show 1 more comment
vote up 1 vote down

Yes they have (and apparently some still do, though I can't name them off the top of my head...been a while since I heard about it).

Used to be possible by writing something that hooked in to isapi.dll (in IIS) and handled raw HTTP requests. I'm guessing Apache has a module that can handle it as well.

Good times...

link|flag
vote up 1 vote down

You might want to see this question

http://stackoverflow.com/questions/746309/which-is-the-best-c-web-framework

link|flag
thank you for the link checking it out now. – baeltazor Aug 29 at 7:26
vote up 4 vote down

The smart-ass answer: almost all web development is done in C or C++. It's just that C or C++ is a layer in the stack, and not the topmost layer. .NET, Java, Ruby, Python, PHP - all the most prominent runtime execution engines for these languages are written in C or C++.

link|flag
OMG BARRY I HAVE YOUR BLOG IN MY FAVORITES I'M A REGULAR READER OF YOUR BLOG! YAY I love the article you wrote on Compiler and "How to be happy" very good stuff! – baeltazor Aug 29 at 7:28
vote up 3 vote down

If you were in the pre-historic age of web development, you'd do a lot of web development in C++.

There was a time when dynamic content was channeled through CGI scripts and a lot of scripting jobs were handled through C++ based executables.

Later it was possible to patch into the inner workings of HTTP and handle data any-which-way you want by writing an ISAPI DLL (which classic ASP was).

So yes, web development has been and will be done in C++.

link|flag
1  
i was there, and done that.... except that at that time, C++ was far too new and exotic! it was all C – Javier Aug 29 at 7:03
I've seen C++ executables for scriptin too – Cyril Gupta Aug 29 at 7:19
vote up 1 vote down

It still goes on -- You only have to look at the web offering for products like Crystal Reports that are written in C++,but it's on the fine line of being the framework itself, rather than actual "web development".

link|flag

Your Answer

Get an OpenID
or

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