Http Request with IP address and port
hi, I tried to use the script below to access Mysql data but failed.Names Default To Here( 1 );
request =
New HTTP Request(
url( "117.186.159.54:2010" ),
Method( "Get" ),
Username( "ross" ),
Password( "Abc123" ),
);
data = request << Send;
The url/username/password are all dummy just for demonstration.But it always says that connection refused. I can make sure that the ip+port is available. Co...