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.
Could I use ip+port as url? Is the syntax valid? Since the client provide me with this kind of IP address/port/username/passcode.