It seems that the IPAddress is not comma delimited as stated at Ethernet - Arduino Reference
but rather delimited with '.'
I discovered this using the code 'client.connect(c_URL, 80)' , and not working with 'char c_URL[] = "146,64,28,16";' but works with 'char c_URL[] = "146.64.28.16";'