ETEL CLIENT FAUL-28

Login to reply to this topic.
Sat, 2005-03-12 10:05
Joined: 2004-12-23
Forum posts: 239
Hi All,

Can anybody help me??What is ETEl CLIENT FAUL-28.
I am working for series60 sdk v1.2
Thanks in advance
kavita

---------------
Bhatt Kavita


Tue, 2005-03-15 10:10
Joined: 2005-01-04
Forum posts: 226
ETEL CLIENT FAUL-28
Hi,

ETEl CLIENT FAUL-28 specifies a BadName.

Regards,
Sunil
Fri, 2005-04-29 11:18
Joined: 2004-12-30
Forum posts: 33
ETEL CLIENT FAUL-28
Hi Kavitha,

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
Tue, 2005-05-03 12:09
Joined: 2004-12-23
Forum posts: 239
ETEL CLIENT FAUL-28
Hi jagdish

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

Thu, 2005-05-26 10:17
Joined: 2004-12-30
Forum posts: 33
Re: ETEL CLIENT FAUL-28
Hi Kavitha,

Sorry for the Late reply..My problem got solved.


Thanks,
Jagadish.
Fri, 2006-03-10 07:12
Joined: 2006-01-30
Forum posts: 8
Re: ETEL CLIENT FAUL-28
plz help


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
Mon, 2006-03-13 03:15
Joined: 2004-11-02
Forum posts: 52
Re: ETEL CLIENT FAUL-28
Either info.iName or lineInfo.iName has a length of 0.
Put a "if" check before opening and try again.

NewLC #2150

  • Login to reply to this topic.