detect/change MMS Settings????

Login to reply to this topic.
Thu, 2005-06-23 13:10
Anonymous
Forum posts: 2043
How can i check/update MMS setting in Code? How are they saved on device?

Thu, 2005-06-30 10:48
Joined: 2005-05-12
Forum posts: 26
Re: detect/change MMS Settings????
Why are you asking this in the 2D/3D Graphics section???

Here is an example code for disabling the receiving of MMS, more to find in your API doc for CMmsClientMtm:
Code:
iSession = CMsvSession::OpenSyncL(*this); // this class must implement MMsvSessionObserver
iMtmReg = CClientMtmRegistry::NewL(*iSession);
iMmsClient = (CMmsClientMtm *) iMtmReg->NewMtmL(KUidMsgTypeMultimedia);

// load the default settings
iMmsClient->SwitchCurrentEntryL(iMmsClient->DefaultSettingsL());
iMmsClient->LoadMessageL();

// change the necessary settings
iMmsClient->SetMmsReceivingMode(EMmsReceivingDisabled);

// save the settings
iMmsClient->SaveMessageL();
Thu, 2005-06-30 13:54
chishti_hameed (not verified)
Forum posts: 2043
Re: detect/change MMS Settings????
Quote from: Uncle Sam
Why are you asking this in the 2D/3D Graphics section???

Here is an example code for disabling the receiving of MMS, more to find in your API doc for CMmsClientMtm:
Code:
iSession = CMsvSession::OpenSyncL(*this); // this class must implement MMsvSessionObserver
iMtmReg = CClientMtmRegistry::NewL(*iSession);
iMmsClient = (CMmsClientMtm *) iMtmReg->NewMtmL(KUidMsgTypeMultimedia);

// load the default settings
iMmsClient->SwitchCurrentEntryL(iMmsClient->DefaultSettingsL());
iMmsClient->LoadMessageL();

// change the necessary settings
iMmsClient->SetMmsReceivingMode(EMmsReceivingDisabled);

// save the settings
iMmsClient->SaveMessageL();


Sorry for posting at wrong place Tongue 
I guess u've seen "Setting Wizard" from  forum.nokia.com 
which does sets MMS/GPRS/WAP settings on device....

I want to create an application like that for operators in 1 country.

What steps do i need to do?


 
  • Login to reply to this topic.