The client server model using tcp ip is working fine in local network. Need help to transfer data over internet.
Server address:
Local $sIPAddress = "116.202.126.252"
Local $iPort = 65432
Local $m = MyTCP_Server($sIPAddress, $iPort)
Client address:
Local $sIPAddress = "116.202.126.252" ;
Local $iPort = 65432 ;
MyTCP_Client($sIPAddress, $iPort)
How can I configure ?
Thanks
Ramesh G