Hello tgsuperspec,
Thank you very much for your feedback.
I am sending my data from the Arduino to the webserver using the code below:
===========================================================
void setup()
{
Serial.begin(9600);
Serial.println("GSM Shield testing.");
if (gsm.begin(2400)){
Serial.println("\nstatus=READY");
started=true;
}
else Serial.println("\nstatus=IDLE");
if(started){
if (inet.attachGPRS("internet.wind", "", ""))
Serial.println("status=ATTACHED");
else Serial.println("status=ERROR");
delay(1000);
numdata=inet.httpPOST("www.evildeejay.it", 80, "/test/test.php", "name=Marco&age=24",msg, 50);
}
};
void loop()
{
};
===============================================================
So yes I assume that I am using the http protocol because of the command below
numdata=inet.httpPOST("www.evildeejay.it", 80, "/test/test.php", "name=Marco&age=24",msg, 50);
So yes it arrives at the server as a socket packet on port 80.
My question was, can anybody explain to me the flow of data from my Arduino to the webserver (Via the GSM board)? I want to understand the protocol respected etc..
I will appreciate any documentation to understand.
Many thanks,
cserge