Mobile Network Information (Cell ID-LAC, CI, etc)

Login to reply to this topic.
Fri, 2008-02-15 08:33
Joined: 2008-02-15
Forum posts: 23

Hi,

Phone: SE P990i

I've tried following the code from http://newlc.com/Retrieving-IMEI-IMSI-Network-Info.html, I was able to get the IMEI and IMSI however I was not able to get Network Info the application crashed throwing "Application close; Reason: Cone; Code: 14" error.

Is etel3rdparty's network library not compatible with P990i? Is there any way I can get the cell id information from P990i?

Tnx.


Fri, 2008-02-15 09:23
Forum Nokia Champion
Joined: 2006-10-12
Forum posts: 462
Re: Networkhttp://www.google.com.ph/search?hl=tl&client

Well SE 990i is based on UIQ3 UI and from documents cone 14 specifies that "Environment cannot find the specified resource in any resource file". I guess you have to take a closer look at the resources.

p.s. : The solution may not be very specific but my reason to post a reply to your thread was more to request you to check your subject line and make sure that its more informative than just a google search link or the likes.

Fri, 2008-02-15 09:39
Joined: 2008-02-15
Forum posts: 23
Re: Mobile Network Information (Cell ID-LAC, CI, etc)

Sorry about that... Unlink library or header file? i've already link etel3rdparty.h to the project and it's lib does network info need another library? I'm sure it's working since IMEI and IMSI were correctly produced... Do you have any suggestion on what to put or how to trace the error?

Oh I guess it's etelbgsm.lib... oh... where can i download it this time..

Tnx. Sorry newbie in symbian...

Fri, 2008-02-15 12:01
Joined: 2008-02-15
Forum posts: 23
Re: Mobile Network Information (Cell ID-LAC, CI, etc)

Does anyone have a gsmbas.lib, etel.lib, and if you don't mind all the network related lib header files? can you send it to my email... I hope you don't mind I've been searching google for days now.

Good day, thank you.

Fri, 2008-02-15 12:52
Joined: 2008-02-15
Forum posts: 23
Re: Mobile Network Information (Cell ID-LAC, CI, etc)

Finally I found a gsmbas.lib and after adding the lib to the mmp file i got this message->
arm-none-symbianelf-ld: ..\..\..\..\Symbian\UIQ3SDK\EPOC32\RELEASE\ARMV5\LIB\gsmbas.dso: No such file: No such file or directory
make[1]: *** [..\..\..\..\Symbian\UIQ3SDK\EPOC32\RELEASE\GCCE\UREL\NetworkManager.exe] Error 1
make: *** [TARGETNETWORKMANAGER] Error 2.

I wonder if anyone out there has done getting cell id using uiq 3 or even an idea.. please if you don't mind sharing..

tnx.

Fri, 2008-02-15 15:21
Forum Nokia Champion
Joined: 2006-10-12
Forum posts: 462
Re: Mobile Network Information (Cell ID-LAC, CI, etc)

Are you using windows vista by any chance ?

What is the target you are compiling for??

Fri, 2008-02-15 16:01
NewLC AdministratorSymbian AccreditedForum Nokia Champion
Joined: 2003-01-14
Forum posts: 1886
Re: Mobile Network Information (Cell ID-LAC, CI, etc)

Are you sure the gsmbas.lib is compatible with your SDK ?
Isn't it a Symbian 7.0s version ? AFAIK, it won't be compatible with Symbian 8 or Symbian 9.


Eric Bustarret
NewLC Founder & CEO / Professional Symbian OS Consultant

Mon, 2008-02-18 04:03
Joined: 2008-02-15
Forum posts: 23
Re: Mobile Network Information (Cell ID-LAC, CI, etc)

Thanks for the reply. I thought since I've added etelbgsm.h to the header i'll be needing gsmbas.lib but I did not.
I'm using WinXp Pro currently it's working fine using etel3rdparty.lib.

Thanks and good day.

Mon, 2008-03-03 03:04
Joined: 2008-01-22
Forum posts: 44
Re: Mobile Network Information (Cell ID-LAC, CI, etc)

Hi,

I am currently developing an application to read the IMSI no. of UIQ phone. I tried the code from the mention website,however, I got the error of " the file 'etelbgsm.h' cannot be opened" , I have been searching long on tis header file but still unable to get it. Any1 who already solve this problem can share out your method? I am using UIQ 3.xSDK ,carbide C++ v1.2 and symbian 9.

Thanks in advance.

Regards,

Adrian

Mon, 2008-03-03 04:11
Joined: 2008-02-15
Forum posts: 23
Re: Mobile Network Information (Cell ID-LAC, CI, etc)

Hi,

You can get information from here->
http://www.symbian.com/developer/techlib/v8.1bdocs/doc_source/guide/Telephony-subsystem-guide/N1012E/info_network.html#guide%2esimpletelephony%2einfo_network.
And try this one it should work because I got it working on my SE P990i device.
http://developer.sonyericsson.com/wiki/display/leftnav/Getting+IMSI%2CIMEI%2CNetwork+Operator+Name%2CArea+Code+in+UIQ3.0+Using+Etel3rdParty

As for the etelbgsm.h search google. I'm not sure if it's available on early symbian sdk releases.

Regards,
czetsuya

Mon, 2008-03-03 05:25
Joined: 2008-01-22
Forum posts: 44
Re: Mobile Network Information (Cell ID-LAC, CI, etc)

Hi,

Thanks for your quick reply, I tried out the code you provided, at the end, I got the error of :

Undefined symbol: 'int E32Main(void) (?E32Main@@YAHXZ)'[]

I searched out for long but still unable to fix it, can you help me?

regards,

Adrian.

Mon, 2008-03-03 06:10
Joined: 2008-02-15
Forum posts: 23
Re: Mobile Network Information (Cell ID-LAC, CI, etc)

Hi,

Have you tried adding euser.lib in your mmp libraries because CActive needs it.

BTW if your using Carbide 1.2 you can try creating a new UIQ3 GUI Application, add a new class file and just copy the contents of the .h and .cpp file (from ericsson) and link it to your AppNameView.h. Try instantiating and call some function... To test if everything works fine.

Good day.

Mon, 2008-03-03 08:56
Joined: 2008-01-22
Forum posts: 44
Re: Mobile Network Information (Cell ID-LAC, CI, etc)

Hi,

Once again need your help, I used carbide 1.2 to create a UIQ3 GUI application ,I added the .h from sonyericsson in View.h, but how do I include CActive in View.h as well?

The original View.h is :

class CNetworkManagerView : public CQikViewBase
{........
........
}

How do I include CActive also?

class CNetworkManagerView: public Cactive
{........
........
}

Thanks.

Regards,

Adrian

Mon, 2008-03-03 10:12
Joined: 2008-01-22
Forum posts: 44
Re: Mobile Network Information (Cell ID-LAC, CI, etc)

Hi,

Thanks, I did it already. However, how can I test the code in emulator? How to set the emulator able to have simcard?

Thanks.

Regards,

Adrian

Tue, 2008-03-04 02:09
Joined: 2008-02-15
Forum posts: 23
Re: Mobile Network Information (Cell ID-LAC, CI, etc)

Hi,

I'm not sure about the emulator (if there is a way to get am IMSI). It's best to test on a UIQ3 phone.

Tue, 2008-03-04 02:50
Joined: 2008-01-22
Forum posts: 44
Re: Mobile Network Information (Cell ID-LAC, CI, etc)

Hi,

Again thanks for your reply. I also agree that the best way is to test the IMSi code in UIQ phone, but the problem is symbiansigned website is currently only available for user with publisher ID to sign for their application. So, are there any alternative ways to sign the application?

Thanks in advance.

Regards,

Adrian

  • Login to reply to this topic.