Cross Origin HTTP Request from CocoaHTTPServer

589 Views Asked by At

I'm using CocoaHTTPServer to host my own HTML file. In index.html I'm attempting to perform a request to another resource but I'm unable to execute this resource successfully. Here is my current setup.

 self.httpServer = [[HTTPServer alloc] init];
[self.httpServer setType:@"_http._tcp."];
[self.httpServer setPort:8090];
NSString *webPath = [[NSBundle mainBundle].resourcePath stringByAppendingPathComponent:@"Web"];
[self.httpServer setDocumentRoot:webPath];

Then from the browser I load http://localhost:8090 when serves up my index.html file successfully.

Then on $(document).ready I create an AJAX request by calling my function startPoll.

proxyAjax: function ( opts ) {

    var proxyOpts = _.cloneDeep(opts);

    if (!proxyOpts.headers) proxyOpts.headers = {};
    proxyOpts.headers['x-forwarded-url'] = proxyOpts.url;
    proxyOpts.url = new URI({
      protocol: 'http',
      hostname: 'localhost',
      port: 8090,
      path: '/'
    }).toString();

    proxyOpts.type = proxyOpts.type || proxyOpts.method;

    console.log("PROXYING:", proxyOpts);
    return $.ajaxDigest(proxyOpts);
  },

// Attempt an API call to the camera on a short timeout.
// Call the callback when we have a non-timeout response.
startPoll: function ( callback ) {
    var self = this;
    console.log("Polling...");
    this.proxyAjax({
      url: 'http://192.168.123.1/deviceinfo',
      username: 'admin',
      password: 'password',
      timeout: 2000
    })
    .done( function ( data, textStatus, jqXHR ) {
      console.log("Poll success:", arguments);
      callback(jqXHR);
    })
  }

Then my HTTPServer gets the request in HTTPConnection.m in this method - (void)replyToHTTPRequest

The Xcode console shows this request coming in.

Received HTTP request:
GET / HTTP/1.1
Host: localhost:8090
X-Requested-With: XMLHttpRequest
Accept-Language: en-US,en;q=0.8
x-forwarded-url: http://192.168.123.1/deviceinfo
Accept: */*
User-Agent: Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148 Safari/6533.18.5
Referer: http://localhost:8090/
Accept-Encoding: gzip, deflate, sdch
Connection: keep-alive

Now I attempt to issue a new request to the x-forwarded-url and return that response as the original response unsuccessfully. My done callback in startPoll is never called.

if ([[request headerField:@"x-forwarded-url"] length] > 0) {
    NSURL *url = [[NSURL alloc] initWithString:[request headerField:@"x-forwarded-url"]];
    HTTPMessage *remoteRequest = [[HTTPMessage alloc] initRequestWithMethod:@"HEAD" URL:url version:[request version]];
    [remoteRequest setHeaderField:@"Access-Control-Allow-Origin" value:@"*"];
    [remoteRequest setHeaderField:@"Access-Control-Allow-Methods" value:@"GET,PUT,POST,DELETE,OPTION"];
    [remoteRequest setHeaderField:@"Access-Control-Allow-Headers" value:@"Accept, Origin, Content-Type"];
    [remoteRequest setHeaderField:@"HOST" value:url.host];
    NSData *requestData = [remoteRequest messageData];
    NSString *responseString = [[NSString alloc] initWithData:requestData encoding:NSUTF8StringEncoding];
    APILogVerbose(@"%@[%p]: HTTP Request:\n%@", THIS_FILE, self, responseString);
    [asyncSocket writeData:requestData withTimeout:TIMEOUT_WRITE_HEAD tag:HTTP_REQUEST_HEADER];
    return;
}

Anyone see anything that I'm missing or should try?

1

There are 1 best solutions below

3
On

I expected to see "Access-Control-Allow-Origin" as a response header from your HTTP server, not a request header from your server to the x-forwarded-url.

See: How does Access-Control-Allow-Origin header work?