Hello all,
I'm trying to run the GSM Web Client sketch connecting to other domains different to arduino.cc. What I've seen is that when I connect to some apache server it connects without problems but when I connect to windows IIS 7 server domains it doesn't connect. There's no log information in GSM Client, so I can't understand what's the problem.
We haver several domains like licuit.com, hopper-ink.com, encodigo.com none of them work. Do anyone have the same problem? Do you know what arduino gsm library does when trying to connect? Maybe it's something about headers? Some firewall port?
char server[] = "licuit.com";
char path[] = "/";
int port = 80;
...
if (client.connect(server, port)){
Serial.println("connected");
}else{
Serial.println("connection failed");
}
Sample sketch: http://arduino.cc/en/Tutorial/GSMExamplesWebClient
Thanks all for your help!