Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6849677
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T01:01:21+00:00 2026-05-27T01:01:21+00:00

I’ve got C++ backend application that interacts with webpage using fastcgi. Webpage uses jQuery

  • 0

I’ve got C++ backend application that interacts with webpage using fastcgi.
Webpage uses jQuery ‘get’ method to send request to this application but it can’t receive proper answer.
All this works on nginx.

Here is simplified source of C++ app (it uses FastCGI C++ library libfcgi.lib from http://www.fastcgi.com/drupal/node/5 )

#include <string>

#include "fcgi_stdio.h"

int main() {
    FCGX_Init();

    std::string port=":9000";
    int listenQueueBacklog = 400;

    int listen_socket = FCGX_OpenSocket(port.c_str(), listenQueueBacklog);

    FCGX_Request request;
    FCGX_InitRequest(&request, listen_socket, 0);

    while(FCGX_Accept_r(&request) == 0)
    {
         FCGX_FPrintF(request.out, "Content-type: text/html\r \n\r\n<TITLE>fastcgi</TITLE>\n<H1>Fastcgi: Hello world.</H1>\n");
         FCGX_Finish_r(&request);
    }

    return 0;
}

Here is source of webpage.

<html>
    <head>
        <script type="text/javascript" src="jquery-1.7.min.js"></script>
    </head>
    <body>
        <script type="text/javascript">
            $.get("http://localhost:8081", function(data, status, xhr) {  alert("Data=" + data + ";Status=" + status); });
        </script>
    </body>
</html>

And here is part of nginx configuration

server {
    listen       8080;
    server_name  localhost;

    location / {
        root   html;
        index  index.html index.htm;
    }

    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   html;
    }
}

server {
    listen       8081;
    server_name  localhost;

    location / {
        fastcgi_pass   127.0.0.1:9000;
        include        fastcgi_params;
    }

    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   html;
    }
 }

I receive request in C++ app (stopping at breakpoint inside while loop) after opening webpage.
But after executing FCGX_Finish_r I see no alert, i.e. callback function is not called.
(When I used jQuery 1.4.2 instead of 1.7, callback function was called, but without data, and I saw ‘Data=;Status=success’ alert window,
so problem remained).

And one more thing – if I just open ‘http://localhost:8081&#8217; in browser, everything is correct, I see ‘Fastcgi: Hello world.’ in browser.

I’d be very grateful if anyone could point out what is the problem.

UPDATE:

I edited nginx configuration (removed server listening on 8081 and added fastcgi pass to folder)

server {
    listen       8080;
    server_name  localhost;

    location / {
        root   html;
        index  index.html index.htm;
    }

    location /foo {
        fastcgi_pass   127.0.0.1:9000;
        include        fastcgi_params;
    }

    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   html;
    }
}

and webpage source code

$.get("http://localhost:8080/foo", function(data, status, xhr) { alert("Data=" + data + ";Status=" + status); });

according to omnosis’s advice and everything started working fine!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T01:01:22+00:00Added an answer on May 27, 2026 at 1:01 am

    http://localhost:8081
    this cause the error, because it called from a different URL, athough this is only the port different, so this request is actually a cross domain request which is disabled by the browser.

    You should check out these topics:

    AJAX response not valid in C++ but Apache

    and the solution to use the apache proxy forwarding, as Byron Whitlock suggest:

    apache httpd extension help

    You should forward a folder to a port so instead of localhost:8081 you should use localhost:8080/foo or a different file like localhost:8080/foo.cgi, or use a subdomain like foo.localhost:8080

    I dont know how to configure maybe this is good

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

That's pretty much it. I'm using Nokogiri to scrape a web page what has
I've got a string that has curly quotes in it. I'd like to replace
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have a jquery bug and I've been looking for hours now, I can't
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
I have a French site that I want to parse, but am running into
I'm using v2.0 of ClassTextile.php, with the following call: $testimonial_text = $textile->TextileRestricted($_POST['testimonial']); ... and
We're building an app, our first using Rails 3, and we're having to build
We are using XSLT to translate a RIXML file to XML. Our RIXML contains

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.