hi all
TBuf<20> name;
name.Copy(this->iSettings->Edit1());
TInt num;
num = this->iSettings->IntegerEditor1();
TTime exp;
exp = this->iSettings->DateEditor1();
TInt cvv;
cvv = this->iSettings->IntegerEditor2();
now i want to send these name num exp cvv to the server.. i have established connection between server to client..
how should i do that..
here i found methods like OpenSessionL,IssueHTTPGetL,SetHeaderL,DumpRespHeadersL,MHFRunL,MHFRunError,GetCredentialsL..
but not anything like post.. please help me..do i have to declare my own method like post and have to give definition to that..?
or
is there any predefined method like post on which i have to override the defintion...
please guide me please..



