MADRIX Forum • How to send http cammand to ARUA2?
Page 1 of 1

How to send http cammand to ARUA2?

Posted: Sat Nov 25, 2023 4:54 am
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

Re: How to send http cammand to ARUA2?

Posted: Mon Nov 27, 2023 4:21 pm
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?