You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by "Miquel (JIRA)" <ji...@apache.org> on 2015/12/30 11:07:49 UTC

[jira] [Created] (CB-10281) Allow CORS

Miquel created CB-10281:
---------------------------

             Summary: Allow CORS
                 Key: CB-10281
                 URL: https://issues.apache.org/jira/browse/CB-10281
             Project: Apache Cordova
          Issue Type: New Feature
          Components: weinre
    Affects Versions: 3.5.0
            Reporter: Miquel
            Assignee: Patrick Mueller
            Priority: Minor
             Fix For: Master


I've created a pull request to allow CORS:

https://github.com/apache/cordova-weinre/pull/10:

{noformat}
diff --git a/weinre.server/lib/weinre.js b/weinre.server/lib/weinre.js
index a4ca11c..036df78 100644
--- a/weinre.server/lib/weinre.js
+++ b/weinre.server/lib/weinre.js
@@ -133,6 +133,11 @@ startServer = function() {
   });
   app.use(express.favicon(favIcon));
   app.use(jsonBodyParser());
+  app.use(function(req, res, next) {
+    res.header("Access-Control-Allow-Origin", "*");
+    res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept");
+    next();
+  });
   app.all(/^\/ws\/client(.*)/, function(request, response, next) {
     var uri;
     uri = request.params[0];
{noformat}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org