<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[How to tell the client ReadPropertyMultiple is not supported]]></title><description><![CDATA[<p dir="auto">What is the right way for BACnet4J server to tell the client, that it does not support Read Property Multiple to force clients sending ReadProperty one by one?  I know that BACnet4J supports Read Property Multiple but in my case, I need the device does not support this feature</p>
]]></description><link>https://forum.mango-os.com/topic/4103/how-to-tell-the-client-readpropertymultiple-is-not-supported</link><generator>RSS for Node</generator><lastBuildDate>Thu, 14 May 2026 16:13:40 GMT</lastBuildDate><atom:link href="https://forum.mango-os.com/topic/4103.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 15 Mar 2019 14:40:01 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to How to tell the client ReadPropertyMultiple is not supported on Fri, 15 Mar 2019 22:27:05 GMT]]></title><description><![CDATA[<p dir="auto">Thank you, the right hint! The framework can do it without source code modification:</p>
<pre><code class="language-java">DeviceObject deviceObject = localDevice.getDeviceObject();
ServicesSupported servicesSupported = deviceObject.readProperty(PropertyIdentifier.protocolServicesSupported);
servicesSupported.setReadPropertyMultiple(false);
</code></pre>
<p dir="auto">Robert</p>
]]></description><link>https://forum.mango-os.com/post/21546</link><guid isPermaLink="true">https://forum.mango-os.com/post/21546</guid><dc:creator><![CDATA[carnecro]]></dc:creator><pubDate>Fri, 15 Mar 2019 22:27:05 GMT</pubDate></item><item><title><![CDATA[Reply to How to tell the client ReadPropertyMultiple is not supported on Fri, 15 Mar 2019 18:09:59 GMT]]></title><description><![CDATA[<p dir="auto">Hi carnecro,</p>
<p dir="auto">Hmm. I'm not sure, but maybe disabling it as a supported service on the device object, by doing something like modifying line 88 of com.serotonin.bacnet4j.obj.DeviceObject will do the trick, as then when other BACnet devices inquire about what services are supported reading multiple properties will not be among them. I'm not sure if there's a more explicit way to tell a certain device not to send multiple property requests.,,</p>
]]></description><link>https://forum.mango-os.com/post/21540</link><guid isPermaLink="true">https://forum.mango-os.com/post/21540</guid><dc:creator><![CDATA[phildunlap]]></dc:creator><pubDate>Fri, 15 Mar 2019 18:09:59 GMT</pubDate></item></channel></rss>