Member since
02-15-2017
5
Posts
4
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
11078 | 02-15-2017 07:04 PM |
06-14-2017
02:22 PM
The previous was not quite correct - still some errors in browser.
Finally I solved it using handleHttpRequest and handleHttpResponse porocessor the latter one returning custom header (aka custom property)access-control-allow-origin:*
... View more
06-14-2017
01:21 PM
I managed to solve it with jQuery like this: $.ajax({
url: url,
type: "POST",
crossDomain: true,
data: data,
dataType: "json",
success:function(result){
alert(JSON.stringify(result));
},
error:function(xhr,status,error){
alert(status);
}
});
... View more
06-14-2017
12:35 PM
Hello Milind, I have run into the same issue and I do not see way how to set 'Access-Control-Allow-Origin' header in ListenHTTP processor. "Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://XXX' is therefore not allowed access."
Could you please share more details how you solved it?
Thanks, Tomas
... View more
02-15-2017
07:04 PM
3 Kudos
Thanks, I am checking available service wrappers and procrun seemed old to me. So far I decided to try http://nssm.cc/ .
I was looking for some tested or official solution, but I guess there is none.
... View more
02-15-2017
11:25 AM
1 Kudo
Hello, is there some recommended or tested way how to run Apache Nifi as a Windows Service? All I can find is: "Currently, installing NiFi as a service is supported only for Linux and Mac OS X users." https://nifi.apache.org/docs/nifi-docs/html/getting-started.html#installing-as-a-service I would like to have Apache Nifi running in a way that will automatically start on Windows Server when OS starts and shutdown on OS suhtdown. Having this as a standard system service would be nice but not necessary. Thanks, Tomas
... View more
Labels:
- Labels:
-
Apache NiFi