nschoe

Results 26 comments of nschoe

As @sidorares said, we are currently working on making it possible to return "real" Javascript object, but this is not yet possible. I sugges you take a look at [this...

I'm working on it, I have implemented setting single types for now (so every type that is not a container) [here](https://github.com/sidorares/node-dbus/blob/129-SettingProperties/lib/stdifaces.js#L142-L160). Sorry for the console.log which slipped, it will be...

I've pushed e6958f535db63669b346b4f8e8119c845655861d which should close this issue. Test it then keep me up. I have included two example files `server-properties.js` and `client-properties.js` to demonstrate how this is used.

@sidorares did you have a chance to test it?

@sidorares thanks for answering this fast. The problem I currently have is not for `Notify` because it returns only one value. My problem is for `GetServerInformation` which should return **4**...

So here is the full `msg` object I receive: ``` { serial: 6, signature: '', path: '/org/freedesktop/Notifications', member: 'GetServerInformation', interface: 'org.freedesktop.Notifications', destination: ':1.269', sender: ':1.270', type: 1, flags: 0 }...

Okay there is something weird... While checking my code, there seems to be a difference on this line: https://github.com/sidorares/node-dbus/blob/master/lib/bus.js#L180 Here, on my local machine, I have `reply.body = [result];` instead...

@sidorares OMg I understand why I made the confusion: when I checked your code, it was line 180. I then checked my code on line 180 and it was the...

Yes, I have been browsing all issued (opened and closed) and I saw that this was something of a recurrent problem. So I tried, but if `GetServerInformation`, if I `return...

@sidorares Okay, I will try to `setMethodCallHandler`. But if I do that, the interface won't be properly implemented, will it? (I will try this of course). Does it work if...