Languages

Menu
Sites
Language
Making a Call using API not AppControls

Hello,

 

Im trying to make a dial using API "RequestCallForward"

when i test the API either on emulator or tizen-device. the api does response.

 

i also set "http://tizen.org/privilege/callforward" i think the error doesn't comes from privilge

because another method "StopCallingForward" also require the same privilege seems working fine.

 

i could make a call using "App Control" functionality of Tizen. 

but i also want to "Hang up" the call and "App Control" seems doesn't support the hang up the call.

 

please, somebody gives me a tips.

it could be ok. just a word "that api doesn' working". this make me crazy. b.b

there is no where to asking about Tizen without here.

 

--------------- source code ------------------------

CallManager* pCallManager = new (std::nothrow) CallManager();
 
r = pCallManager->Construct(*this);
if (IsFailed(r))
{
delete pCallManager;
AppLog("pCallManager->Construct Failed");
return;
}
 
callStatus = pCallManager->GetCurrentCallStatus();
if (callStatus == CALL_STATUS_IDLE)
{
AppLog("CALL STATUS IDLE");
 
 
r = pCallManager->RequestCallForward(L"119");
 
Tizen::Base::Runtime::Thread::Sleep(3000);
AppLog(GetErrorMessage(r));
 
}

--------------------------------------------------------------

 

Edited by: Brock Boland on 17 Mar, 2014 Reason: Paragraph tags added automatically from tizen_format_fix module.

Responses

2 Replies
Pushpa G
Is it possible for you to send the error logs here(you will get it in Log pane of the IDE)
Pushpa G
Oh since http://tizen.org/privilege/callforward is a platform level privilege its not allowing you to use it