How to send http cammand to ARUA2?

Post Reply
Waiii
Posts: 3
Joined: Fri Oct 06, 2023 4:22 am

How to send http cammand to ARUA2?

Post by Waiii »

Hello Madrix,
I have a lighting control system that needs to communicate with the ARUA2 interface via TCP/IP. I have been trying to send an HTTP command to ARUA2, but it's didn't work. But, if i send command to Madrix 5, it is work. Could you please help me to find out the issus?

The command i sent to Madrix 5, it is work.
GET /RemoteCommands/SetStorageDeckA=S1P2 HTTP/1.1\r\nHOST:192.168.1.113\r\n\r\n

The command i sent to AUAR2, it didn't work.
GET /Remote.cgi?Cue01 HTTP/1.1\r\nHOST:192.168.1.142\r\n\r\n
Schulze
Support
Support
Posts: 310
Joined: Fri Mar 22, 2019 4:21 pm
Contact:

Re: How to send http cammand to ARUA2?

Post by Schulze »

Hi Waiii,

There is a typo in the command (the r needs to be lower case). The correct command would be:

Code: Select all

GET /remote.cgi?Cue01 HTTP/1.1\r\nHOST:192.168.1.142\r\n\r\n
Does it work now?
Post Reply