Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

is it possible to get the output of an c++ project as http request

eg:http://localhost:8080 

just it need to output an xml or just any output...

share|improve this question
What platform are you on? – JBRWilkinson Sep 3 '10 at 8:28

2 Answers

Yes - this is typically some sort of CGI mechanism. Depending on the software you're using to run your webserver, if it supports CGI, it can be configured to invoke your program when certain URLs are requested. Your program's output to stdout would then be sent back to the HTTP client.

Be careful with this approach, especially if your application takes input from the user: bugs in your program can lead to security vulnerabilities if, for example, you have the possibility of a buffer overflow. Interpreted languages can sometimes offer some protection here.

share|improve this answer

You can use any executable as a CGI script (though they are usually perl or shell scripts).

Make your c++ executable print whatever you need to stdout (cout).

Here is a great into to CGI, and 4.2 tells you that you can make any executable run via CGI.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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