How to send http cammand to ARUA2?
How to send http cammand to ARUA2?
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
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?
Hi Waiii,
There is a typo in the command (the r needs to be lower case). The correct command would be:
Does it work now?
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