Hey,
The problem was with:
Code:
TSIPProfileTypeInfo ProfileTypeInfo;
ProfileTypeInfo.iSIPProfileClass= TSIPProfileTypeInfo::EInternet;
ProfileTypeInfo.iSIPProfileName.Copy(_L8("IETF"));
This is what you use to create IETF type of profile, I, on the other hand wanted to create profile with type of "Nokia 3GPP".
The problem is solved right now, I just have to use:
Code:
TSIPProfileTypeInfo ProfileTypeInfo;
ProfileTypeInfo.iSIPProfileClass= TSIPProfileTypeInfo::EIms;
ProfileTypeInfo.iSIPProfileName.Copy(_L8("ims"));
And you are right, object to create, save, modify and remove profiles is CSIPManagedProfileRegistry.
Regards.