Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a C++ server in linux using Mongoose listening on port 8080 for http requests. I'm using port 8080 because I have an Apache server already using port 80.

The reason I have my C++ server listening for http requests is so that I can receive the http GET sent by Facebook to get a user's Facebook info. For the Facebook server side Auth I'm redirecting to localhost:8080.

I am correctly getting the information sent from Facebook, but now Apache isn't serving up my html to the clients webpage (which works correctly if I only redirect to localhost).

Is it possible to make both of these work? Is the client still trying to get the index.html from port 80 or does it expect 8080 to now send this?

share|improve this question
A web-client (browser or other client) by default always tries to get from port 80. It has to be explicitly told to fetch from some other port. If the client doesn't connect to the normal web-server, you probably has some problems with redirection. – Joachim Pileborg Aug 15 '12 at 6:00
That question could well have been placed as a follow-up [/edit] to your existing question, C++ Linux Server getting Facebook HTTP Authentication message. Please consider not opening a new question for every small detail of your project, if those minor details fit well into the context of an existing one. Thanks. – CBroe Aug 15 '12 at 13:24

1 Answer

up vote 0 down vote accepted

Is 80 equal 8080? Apparently no. So the both ports might be listened by different applications. Try to inspect income requests with Wireshark (packet analyzer).

share|improve this answer
I got wireshark and checked out the packets being sent. It looks like it is only trying to request on port 8080. I'm not sure how I could fix this. Should I send a small html file that will redirect the client back to port 80 so that Apache can resume sending down the necessary information? – Josh Brittain Aug 15 '12 at 3:56
If your browser connects to port 8080 by default it is really strange. It must connect to port 80 firstly and only after that it may try another port if some kind of redirection exists. Filter packets by 'tcp.port == 80 || tcp.port == 8080' and inspect requests carefully. If there aren't requests to port 80, describe how you try to connect in detail. – Rubber Cthulhu Aug 15 '12 at 6:31

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.