Just now I got the same Error Msg: ETEL CLIENT FAUL -28..My application is crashing.I guess its related to some incoming voicecall / fax...I f u have any update regarding this error Pls help me....
//Use this info to open a connection to the phone, the phone // is identified by its name RAdvGsmPhone phone; CleanupClosePushL(phone); User::LeaveIfError(phone.Open(server, info.iName));
Forum posts: 226
ETEl CLIENT FAUL-28 specifies a BadName.
Regards,
Sunil
Forum posts: 33
Just now I got the same Error Msg: ETEL CLIENT FAUL -28..My application is crashing.I guess its related to some incoming voicecall / fax...I f u have any update regarding this error Pls help me....
Thanks,
JA
Forum posts: 239
Ya I have resolved my problem.
Can u put a piece of code here,where u r getting this panic
So that i can raise helping hands.
Regards
---------------
Bhatt Kavita
Forum posts: 33
Sorry for the Late reply..My problem got solved.
Thanks,
Jagadish.
Forum posts: 8
i have error etel client faul -28 error::
my code is::
////////////
CleanupClosePushL(server);
User::LeaveIfError(server.Connect());
User::LeaveIfError(server.LoadPhoneModule(_L("phonetsy.tsy")));
RTelServer::TPhoneInfo info;
User::LeaveIfError(server.GetPhoneInfo(0, info));
//Use this info to open a connection to the phone, the phone
// is identified by its name
RAdvGsmPhone phone;
CleanupClosePushL(phone);
User::LeaveIfError(phone.Open(server, info.iName));
RPhone::TLineInfo lineInfo;
User::LeaveIfError(phone.GetLineInfo(0, lineInfo));
//Use this to open a line
RLine line;
CleanupClosePushL(line);
User::LeaveIfError(line.Open(phone, lineInfo.iName));
line.NotifyIncomingCall(iStatus, iName);
CleanupStack::PopAndDestroy(3);
User::LeaveIfError(server.UnloadPhoneModule(_L("phonetsy.tsy")));
line.NotifyStatusChangeCancel();
line.Close();
phone.Close();
server.Close();
CleanupStack::PopAndDestroy(&server);
//////////////////
Thanks in advance
Forum posts: 52
Put a "if" check before opening and try again.
NewLC #2150