Search found 11 matches

by raZcherry
11 Feb 2015 21:06
Forum: RaZberry
Topic: Logging http requests in a file
Replies: 0
Views: 2762

Logging http requests in a file

Hi All, in z-way version 1.7.2 I could log http requests in a seperate file: zway http logging.PNG The configuration was made in config.xml (here is my config from version 1.7.2) zway config.png In z-way version v2.0.1-rc11 the properties for http logging seems to be ignored and also no more http re...
by raZcherry
04 Nov 2014 17:39
Forum: RaZberry
Topic: WakeUp Event Listener
Replies: 1
Views: 3170

WakeUp Event Listener

Hi All, my devices (e.g. Philio 4-in-1 sensor) in z-way waking up every 30 minutes and I wanted to forward the wakeup notification to another web service. In z-way there is the possibility to bind this event with: zway.devices[nodeID].data.isAwake.bind( function() { mycode }); Somehow I can´t bind i...
by raZcherry
13 Oct 2014 20:32
Forum: RaZberry
Topic: Problem with equipment FIBARO FGMS-001 & Domoticz
Replies: 4
Views: 7063

Re: Problem with equipment FIBARO FGMS-001 & Domoticz

Hi everybody, i bought the same Fibaro FGMS-001 in version 2.6 (see attached picture), running z-way in version 1.7.2 and have also a problem with this sensor. fibaro sensor.PNG I already read through this Thread http://forum.z-wave.me/viewtopic.php?f=3422&t=20393&hilit=fgms and getting thes...
by raZcherry
02 Sep 2014 14:06
Forum: RaZberry
Topic: Extend Z-Way Api
Replies: 5
Views: 6843

Re: Extend Z-Way Api

Thank you pofs for your answer! I can execute global method over /ZAutomation like: /ZAutomation/getSomething and I can read params like: /ZAutomation/getSomething/param1/param2 Would it be possible to use this kind of calling and if so how can I get the params values ;) /ZAutomation/getSomething(pa...
by raZcherry
27 Aug 2014 19:25
Forum: RaZberry
Topic: Extend Z-Way Api
Replies: 5
Views: 6843

Extend Z-Way Api

Hi All, I want to extend the z-way api with new functionality. For example I define my api with method doSomething() under /ZWaveApi/myapi/doSomeThing() like in z-way /ZWaveApi/Run/zway.controller.AddNodeToNetwork(1) Another interesting way will be just extend the /ZWaveApi/Run/ with more methods. O...
by raZcherry
23 Jul 2014 16:47
Forum: RaZberry
Topic: HTTP Request
Replies: 13
Views: 18671

Re: HTTP Request

It seems to be that on a post request the headers with "Content-Type" : "application/json" will not correctly encoded. The same for "text/xml" . %2F in picture two is the URL-encoding value for /. Hi All, I just want to share my workaround for the encoding issue on Z-W...
by raZcherry
09 Jul 2014 15:15
Forum: RaZberry
Topic: HTTP Request
Replies: 13
Views: 18671

Re: HTTP Request

Thanks for your answers, pz1 and PoltoS. Would be kind to post here, if there are any news of the issue :) I want to ask if it is possible to see the source code of http.request() function in z-way? I found only on automation/htdocs/js/helpers/apis.js the function request() and it is using jQuery (a...
by raZcherry
07 Jul 2014 23:08
Forum: RaZberry
Topic: HTTP Request
Replies: 13
Views: 18671

Re: HTTP Request

Hi All, I want to create a HTTP request object in a module with the following code (using Razberry v.1.7.1) http.request({ url: "IP TO MY SERVER", method: "POST", headers: { "Content-Type" : "application/json"}, data: "", }); My server checks if the ...
by raZcherry
01 Jul 2014 14:06
Forum: RaZberry
Topic: Debugger for Z-Way JavaScript
Replies: 51
Views: 116827

Re: Debugger for Z-Way JavaScript

Hi kambis, Thank you! It was only a timing problem. So you must refresh the node-inspector gui as soon as possible when you restart z-way. I want to use node-inspector gui for editing and saving source code on .js files. On node-inspector you can run the tool https://github.com/node-inspector/node-i...
by raZcherry
29 Jun 2014 18:21
Forum: RaZberry
Topic: Debugger for Z-Way JavaScript
Replies: 51
Views: 116827

Re: Debugger for Z-Way JavaScript

Hi kambis, thanks for your answer! As you wrote I set the breakpoint at line 65 (loading the config.json). It seems to be that in the new version (I am using v.1.7.1) there is no more config.json under the folder z-way-server/automation. Just under automation/storage is an autogenerated config file....