1

我正在使用 Streamsets 管道从浏览器流式传输数据。因此,为此,我创建了一个具有 HTTP 服务器源的管道,以从浏览器 Javascript 发布数据,并尝试使用 REST 客户端写入该 URL,并成功写入。响应标头已在 SDC.properties 文件中设置。

http.access.control.allow.origin=*
http.access.control.allow.headers=origin, content-type, accept, authorization, x-requested-by, x-ss-user-auth-token, x-ss-rest-call
http.access.control.allow.methods=GET, POST, PUT, DELETE, OPTIONS, HEAD

但是当我尝试使用XMLHTTPRequest从 JavaScript 写入一些数据时,它会为飞行前请求引发错误。下面是 JavaScript 代码:

  var http = new XMLHttpRequest();
  var value = '{ "prop1": "value 2", "prop2": "value 2" }';
  var url ='http://13.68.93.97:8100/'
  var async = true
 if ('withCredentials' in http) {
    http.open('OPTIONS', url, async);
} else if (typeof XDomainRequest != "undefined") {
    http = new XDomainRequest(); //for IE
    http.open('OPTIONS', url);
} else {
    http.open('OPTIONS', url, async);
}
    http.open('POST', url, true);
    http.setRequestHeader('Content-Type', 'application/json; charset=utf-8');
    http.setRequestHeader('X-SDC-APPLICATION-ID', 'testApp1');
http.setRequestHeader("Access-Control-Allow-Origin", "*");
http.setRequestHeader('Access-Control-Allow-Methods', "POST, OPTIONS, GET");
http.setRequestHeader('Access-Control-Allow-Credentials', "true");
http.setRequestHeader('Access-Control-Expose-Headers', "X-Region");
http.setRequestHeader("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept,Accept-language");
http.withCredentials = true;
http.onreadystatechange = function () {
    if (http.readyState == 4 && http.status == 200) {
        console.log(http.responseText);
    }
}
http.send(value); 

上述代码执行引发的错误:

XMLHttpRequest 无法加载http://13.68.93.97:8100/。对预检请求的响应未通过访问控制检查:请求的资源上不存在“Access-Control-Allow-Origin”标头。因此,不允许访问源“ http://localhost ”。

任何帮助都会非常有帮助。谢谢..!!

4

1 回答 1

1

更新- Data Collector 在 2017 年 3 月发布的版本 2.4.0.0 中添加了 CORS 支持

StreamSets Data Collector 当前不支持HTTP Server 源中的 CORS - 文件中的这些属性sdc.properties适用于 SDC Web UI。我已经提交了 Jira, SDC-5298,但我对你的用例很好奇。您只是在使用浏览器进行实验,还是看到用户通过 JavaScript 向 SDC 发送数据的生产用例?

如果您有生产用例,请对该 Jira 发表评论,我们将研究将 CORS 添加到 HTTP 服务器源。

如果您只是想要一种轻松发送数据的方式,您有几个选择:

  1. 从命令行使用 curl:

    curl http://localhost:8000/ -H 'X-SDC-APPLICATION-ID: bob' -d '{"a":"b"}'
    
  2. 安装 Chrome 扩展程序(例如CORS Toggle)以禁用 Chrome 中的 CORS 检查。

  3. --disable-web-security使用该选项启动 Chrome 。

于 2017-02-09T19:29:26.263 回答