Making a Call using API not AppControls

Making a Call using API not AppControls

BY 16 Jun 2013 Native Application Development

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));
 
}

————————————————————–

 

Written by