Thank you very much
Please Note This forum exists for community support for the Mango product family and the Radix IoT Platform. Although Radix IoT employees participate in this forum from time to time, there is no guarantee of a response to anything posted here, nor can Radix IoT, LLC guarantee the accuracy of any information expressed or conveyed. Specific project questions from customers with active support contracts are asked to send requests to support@radixiot.com.
Latest posts made by mmmoczj
-
RE: How do I get all objects from RemoteDevice
-
How do I get all objects from RemoteDevice
How do I get all objects from RemoteDevice
-
RE: How do two devices that are not on the same LAN communicate
Thank you for your reply. But can BBMD be software?
-
RE: How do two devices that are not on the same LAN communicate
Thank you very much for your help. I still have a question. Is BBMD hardware or software?
-
RE: How do two devices that are not on the same LAN communicate
@mattfox I would like to ask how to set up a static route, is there an example to look at?
-
How do two devices that are not on the same LAN communicate
Hello, everyone, now I have a problem. When two bacnet devices are not in the same LAN, how can two devices communicate through IP and port
-
How to solve the unrecognized service problem
Everyone, please help me. When I use readPropertyMultiple service, there is a problem of unrecognized service
-
The test tool could not find the device instantiated by Java
Hello, I have encountered a problem here that has not been solved for a long time. I instantiated a device through the following code, but I could not find this device through the test tool. I hope you can help me, thank you
public class Device { LocalDevice localDevice; public void init() throws Exception { IpNetwork network = new IpNetworkBuilder() .withBroadcast("192.168.33.255", 24) .withLocalBindAddress("192.168.33.101") .withPort(47999) .build(); Transport transport = new DefaultTransport(network); localDevice = new LocalDevice(1996, transport); localDevice.initialize(); } public static void main(String[] args) throws Exception { new Device().init(); } }
-
RE: Who can give me a simple server-side code example
@terrypacker Thank you for your help, but I want to get RemoteDevice through IP. There is no such function in those files.I wanted to get the device that way, but this is the old version,
RemoteDevice d = localDevice.findRemoteDevice( new Address(0, IpNetworkUtils.toOctetString("192.168.33.53:8099")), 10086);
-
RE: Who can give me a simple server-side code example
@craigweb How can I get the remoteDevice