nokia 6600 firmware problem!!

Login to reply to this topic.
Thu, 2005-09-08 14:48
Joined: 2005-07-07
Forum posts: 34
Hi All

I have a following strange problem with Nokia 6600
I have this code for sending of data to server via HTTP EPOST method. I use RHttpTransaction for submit of data.

_LIT8(KContentType, "text/html");


RStringPool string_pool = iHttpSession.StringPool();
RStringF method = string_pool.StringF(HTTP::EPOST, RHTTPSession::GetTable());
   
TUriParser8 uri;
uri.Parse(*request);   

iTransaction = iHttpSession.OpenTransactionL(uri, *this, method);
   
RHTTPHeaders hdr = iTransaction.Request().GetHeaderCollection();
   
RStringF cont_type_str = string_pool.OpenFStringL(KContentType);
THTTPHdrVal cont_type(cont_type_str);
hdr.SetFieldL(string_pool.StringF(HTTP::EContentType,RHTTPSession::GetTable()), cont_type);
cont_type_str.Close();   

iTransaction.Request().SetBody(*this);
iTransaction.SubmitL();

This code work perfect on mobile with firmware ver 5.27!
But on mobile with lower firmware for example 4.09 it don't work Sad - In my MHFRunL function i recieve aEvent.iStatus = -5 ("The operation requested is not supported")

Any solution on this problem??

thanks !

Fri, 2005-09-09 15:02
Joined: 2005-07-07
Forum posts: 34
Re: nokia 6600 firmware problem!!
Hi all,

I want to get more info about this problem. I upgraded version on mobile with ver 5.27 but code still don't work.
This mobile is on Vodaphone. Any suggestions for eventual coding from this provider?? Or some cut functionality ??

Thanks again!
Sun, 2005-09-11 08:14
Joined: 2005-03-04
Forum posts: 176
Re: nokia 6600 firmware problem!!
Is this mobile maybe a branded device (Vodaphone)? Maybe a cut down-version that could only connect to Vodaphone-portals. Please give more informations, i'm very interested in provider prohibitions *SMILE*...

regards;
CG

P.S.: Do you have tried to change the SIM-cards?
Mon, 2005-09-12 14:47
Joined: 2005-07-07
Forum posts: 34
Re: nokia 6600 firmware problem!!
Hi,

The problem is not in SIM card. I have such result wth one other mobile 6600 from Orange (Izrael). On it I try with Izrael SIM card and with Bulgarian SIM but result again is -5 (Not Supported).
Huh

Thanks for your interes!
  • Login to reply to this topic.