i'm developing an application which wraps knx devices to upnp-device using linknx and eibd. My problem now is, that i should have a possibility to read in the linknx-config xml-file with all the information in it (especially in the <objects>-section). For example: When I use "<read><objects /></read>" I get an answer with all objects in it, but not like the objects are defined in the config file (I also need the type- and group-address-attributes). Is it possible to ask linknx for it with a xml-statement?
Another possibility to solve my problem would be to store the config file in a folder which will be accessible through FTP. Then i could read in the file as stream with all informations in it. But that's not the way i would prefer.
Many thanks for any help in advance!
Regards,
Alex
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi,
i'm developing an application which wraps knx devices to upnp-device using linknx and eibd. My problem now is, that i should have a possibility to read in the linknx-config xml-file with all the information in it (especially in the <objects>-section). For example: When I use "<read><objects /></read>" I get an answer with all objects in it, but not like the objects are defined in the config file (I also need the type- and group-address-attributes). Is it possible to ask linknx for it with a xml-statement?
Another possibility to solve my problem would be to store the config file in a folder which will be accessible through FTP. Then i could read in the file as stream with all informations in it. But that's not the way i would prefer.
Many thanks for any help in advance!
Regards,
Alex
Hi,
If you want the configuration of the objects, you have to use the following xml request:
<read><config><objects/></config></read>
This request will return the full list of objects.
Regards,
Jean-François
Ok, that's it...
Many Thanks!
Ok, that's it...
Many Thanks!