diff -r fcb676ca077d -r fdbe8253b596 messagingapp/msgui/msgapp/src/msglistview.cpp --- a/messagingapp/msgui/msgapp/src/msglistview.cpp Wed Sep 01 14:19:13 2010 +0530 +++ b/messagingapp/msgui/msgapp/src/msglistview.cpp Tue Sep 07 13:28:39 2010 +0530 @@ -381,12 +381,13 @@ args << data; //service stuff. - QString serviceName("com.nokia.services.phonebookservices"); + QString service("phonebookservices"); + QString interface("com.nokia.symbian.IContactsEdit"); QString operation("editCreateNew(QString,QString)"); XQAiwRequest* request; XQApplicationManager appManager; - request = appManager.create(serviceName, "Fetch", operation, true); // embedded + request = appManager.create(service, interface, operation, true); // embedded if ( request == NULL ) { return; @@ -412,12 +413,13 @@ args << contactId; //service stuff. - QString serviceName("com.nokia.services.phonebookservices"); - QString operation("open(int)"); + QString service("phonebookservices"); + QString interface("com.nokia.symbian.IContactsView"); + QString operation("openContactCard(int)"); XQAiwRequest* request; XQApplicationManager appManager; - request = appManager.create(serviceName, "Fetch", operation, true); // embedded + request = appManager.create(service, interface, operation, true); // embedded if ( request == NULL ) { return;