3120 classic offers following BT services

Bluetooth on host PC: Windows Vista BT stack in use. Vista Feature Pack for Wireless installed. Nokia Ovi Suite installed but not used in experimenting addressed in this thread. When paired Nokia 3120 classic offers to Vista host following BT services: - Dial-UP - Nokia SyncML server - Remote Control - serial interface spp COM1 - serial interface spp NOkia PC Suite - SyncML client - unknown service - unknown service - unknown service - unknown service What are the four unknown services? Which BT official profile do the two SyncML items correspond to? Does this NOkia model really not offer FTP, OPP, PIB? When using with Thoshiba stack on another PC it was possible to use FTP.
On default while pairing 5 services are selected to enable on the host Vista.
How to change the list of services to be enabled on pairing?
nokia 3120 classic, fw V 10.00 06-03-09, RM365

Dear Nokia, Do you have any idea what a driver could satisfy your stuff (please the question asked in post above please)? Otherwise, it seems to had been the best decision to say goodby to Nokia products, vendors with no control over own products and their's properties are not worth the customer's trust.
nokia 3120 classic, fw V 10.00 06-03-09, RM365

Similar Messages

  • NOKIA 3120(classic) UPDATE ERROR

    ERROR RECEIVED WHILE UPDATING NOKIA 3120 CLASSIC.
    THE POWER BROKE DOWN!! :-(
    PLS CHECK OUT THE FOLLOWING ERROR--DO YOU THINK THE ONLY WAY OUT IS TO TAKE IT TO THE WARRANTY OFFICE/NOKIA CARE LINE---????
    Connection to Phone Lost:-
    YOUR PHONE COULD NOT BE DETECTED.PLS RECONNECT THE USB CABLE.
    CLICK RETRY TO CONTINUE WITH UPDATE.
    Update details:-
    while i was updated 3120 classic, after the firmware was downloaded, and during the installation process, the lights went off and my mobile got DEAD.
    after that i reconnected the mobile and the screen of the mobile is blank and the above error is being received!!!
    HEEEEEEEEEELP out seniors!!!! plsssssss
    What's Worth Doing, Is Worth Doing Well!
    All "N-series" are incredible!
    Solved!
    Go to Solution.

    Today I also ran into this problem. I wanted to upgrade from v7.16 to v10.00 because my mobile has some annoying freezes but till now I didn't have a USB cable.
    In the middle of the update process my mobile just died and didn't responded only the keyboard started to shine when I tried to switch it on. But I just kept trying to re-run the updater which detected the interrupted update process and offered to continue. It advised me to remove the battery, pull out the USB cable and the charger than reconnect them again and switch on the mobile. I did it as I advised to about 3 times but didn't succeeded, but kept trying and after a while even the mobile keyboard didn't shine at all. Although it seemed completely dead I left it alone with the updater program running and a few minutes later the screen started with a simlpe white background and later on a short text in red characters appeared: "Test mode". Another minutes later it asked for PIN code and worked fine.
    So keep trying patiently and maybe you can revive your phone just as I did.

  • How to get Request Offering from given Service Offering using Service Manager SDK?

    Recently, I am working on application where I have to fetch all Request Offering from given Service Offering. 
    I can retrieve all Request Offering using following method of SM SDK : 
    var requestOfferings = group.Extensions.Retrieve<RequestOffering>();// group is Management Group
    But I am unable to get request Offering from given Service Offering as I am new to this platform. I have searched in web but can not find solution to this problem.
    It would be great if someone guide for this problem or give me any suggestion related to this problem.
    Thanks in advance.

    RequestOfferings are handled a little differently in the SDK, but fortunately, they're still backed by standard EnterpriseManagementObjects..it just takes a little work to get them.
    There are a few ways you can go about getting a request offering's related service offerings. I'm going to show you the relationship route, but you could also use a type projection to achieve the same goal.
    In your original post, you're simply retrieving _all_ request offerings..that's fine. If you wanted to retrieve a single request offering (as I do in my example) you need to find the request offering's identifier. This identifier is a pipe delimited string
    of various values. The quickest way to find it, in my opinion, is to query the MT_System$RequestOffering table in the database, but you can also find it by looping through all the RequestOfferings returned by group.Extensions.Retrieve<RequestOffering>();
    Anyway, for the following example to work, you only need your request offering's Identifier and your management server name. (Again, you could simply loop through all of your request offerings and retrieve the service offerings for all of them)
    The comments inline with this example should guide you through the steps.
    //Connect to the management group and prepare the class and relationship types that we'll need.
    String strMySCSMServer = "your server";
    EnterpriseManagementGroup emg = new EnterpriseManagementGroup(strMySCSMServer);
    ManagementPackClass mpcRO = emg.EntityTypes.GetClass(new Guid("8FC1CD4A-B39E-2879-2BA8-B7036F9D8EE7")); //System.RequestOffering
    ManagementPackRelationship relSORelatesToRO = emg.EntityTypes.GetRelationshipClass(new Guid("BE417A55-6622-0FC3-FCEA-90CD23E0FC23")); //System.ServiceOfferingRelatesToRequestOffering
    //An example of an extension identifier looks like this:
    //1|My.RO.MP|1.0.0.0|Offeringc921c4feujhoi8cdsjloiz352d7gf3k0|3|RequestOffering
    String strRequestOfferingIdentifier = "your request offering identifier";
    //Retrieve the request offering using an Extension Identifier.
    ExtensionIdentifier ei = null;
    ExtensionIdentifier.TryParse(strRequestOfferingIdentifier, out ei);
    RequestOffering ro = emg.Extensions.Retrieve<RequestOffering>(ei);
    //Using the request offering's Identifier, retrieve the enterprise management object that it represents
    EnterpriseManagementObjectCriteria emocRO = new EnterpriseManagementObjectCriteria("ID = '" + ro.Identifier + "'", mpcRO);
    IObjectReader<EnterpriseManagementObject> orROs = emg.EntityObjects.GetObjectReader<EnterpriseManagementObject>(emocRO, ObjectQueryOptions.Default);
    //Since we queried for only a single Request Offering, the object reader should contain 0 or 1 elements.
    EnterpriseManagementObject emoRO = null;
    if (orROs.Count > 0)
    emoRO = orROs.ElementAt(0);
    else
    Console.WriteLine("No Request Offering found");
    //Now, using the relationship type "System.ServiceOfferingRelatesToRequestOffering", get all Service Offering's related to our request offering
    IList<EnterpriseManagementRelationshipObject<EnterpriseManagementObject>> lstEMROs = emg.EntityObjects.GetRelationshipObjectsWhereTarget<EnterpriseManagementObject>(emoRO.Id, relSORelatesToRO, DerivedClassTraversalDepth.None, TraversalDepth.OneLevel, ObjectQueryOptions.Default);
    //The GetRelationshipObjectsWhereTarget method returns a list of EnterpriseManagementObjectRelationships..These objects represent that relationship between two objects.
    //Thus, these relationship objects have two properties of interest; TargetObject and SourceObject. In this case, service offerings are the source of this relationship type and
    //so, you can access the service offering object itself by using the relationship object's SourceObject property (which is nothing more than an EnterpriseManagementObject)
    foreach (EnterpriseManagementRelationshipObject<EnterpriseManagementObject> emro in lstEMROs)
    //emro.SourceObject is your Service Offering object. You can use it for whatever you need from here on out. In this example, i'm just writing out the DisplayName
    EnterpriseManagementObject emoServiceOffering = emro.SourceObject;
    Console.WriteLine(emoServiceOffering[null, "DisplayName"].Value);
    Give it a try, let me know if you have any questions :)

  • Synch Gmail contacts on Nokia 3120 Classic

    Hi,
    How can I synch the Gmail contacts with my Nokia 3120 Classic Mobile phone?
    Thanks in advance.

    Hi jabhijeet,
    Welcome to the Nokia Support Discussions! 
    Your phone doesn't support such functionality, but you can log into your social network accounts on your phone for you to be able to view their contact info. 
    Another option is to add your contacts manually. To do this, tap People > swipe to contacts and then follow the steps below:
    Tap the Add (+) icon .
    If you're signed in to several accounts, select the account to which you want to save the contact.
    Add the contact details, and tap Save icon. Note that your contacts are backed up automatically to your Microsoft account.

  • Import phonebook from E50 to 3120 Classic

    Dear fellows, I've just exchanged from E50 to 3120 Classic phone. Before returning E50 I backed up my phonebook in my 1Gb memory card, and each contact appeared as a vcf file. Then, I put the memory card into my 3120, and the files are there, but 3120 does not recognize the vcf files as phonebook entries.
    How do I solve this? What is the file type that 3120 works with and how can I convert vcf files into this?
    I really appreciate your help, since I have 200+ contacts which I do not intend to type one by one into my new phone.
    Thanks a lot!
    Cheers,
    Rodrigo
    Message Edited by celandine on 11-May-2009 07:26 PM

    well the fundamental issue is that you have moved from a business oriented device to a very basic phone, e50 is a s60 phone 3120 is a s40 phone they work on different platforms therefore compatability is an issue here. did you try to copy your contacts to the sim card while using the e50 and then just swap the sim card to your new phone? a new sim card - under 2 years old or so should have capacity for up to 250 contacts. ifyou say that you have only about 200 you should be able to do so without any issues. 
    You know what I love about you the most, the fact that you are not me ! In love with technology and all that it can offer. Join me in discovery....

  • Hard reset Nokia 3120 Classic

    Hello,
    I have an old Nokia 3120 classic phone which I would like to use as my spare device however when I turn on this device it asks me for a security code, which I didnt set at all. Is there any other way to hard reset this device (other than going to the Service Centre, for which they would be charging exorbitant amounts anyway).

    it_freakDude wrote:
    Hello,
    I have an old Nokia 3120 classic phone which I would like to use as my spare device however when I turn on this device it asks me for a security code, which I didnt set at all. Is there any other way to hard reset this device (other than going to the Service Centre, for which they would be charging exorbitant amounts anyway).
    it_freakDude wrote:
    Hello,
    I have an old Nokia 3120 classic phone which I would like to use as my spare device however when I turn on this device it asks me for a security code, which I didnt set at all. Is there any other way to hard reset this device (other than going to the Service Centre, for which they would be charging exorbitant amounts anyway).
    it_freakDude wrote:
    Hello,
    I have an old Nokia 3120 classic phone which I would like to use as my spare device however when I turn on this device it asks me for a security code, which I didnt set at all. Is there any other way to hard reset this device (other than going to the Service Centre, for which they would be charging exorbitant amounts anyway).
    it_freakDude wrote:
    Hello,
    I have an old Nokia 3120 classic phone which I would like to use as my spare device however when I turn on this device it asks me for a security code, which I didnt set at all. Is there any other way to hard reset this device (other than going to the Service Centre, for which they would be charging exorbitant amounts anyway).
    it_freakDude wrote:
    Hello,
    I have an old Nokia 3120 classic phone which I would like to use as my spare device however when I turn on this device it asks me for a security code, which I didnt set at all. Is there any other way to hard reset this device (other than going to the Service Centre, for which they would be charging exorbitant amounts anyway).

  • Nokia 3120 Classic IMEI

    How can I get the IMEI of my nokia 3120 Classic serie40 5th edition Feature pack 1 with J2ME?
    I've just tried with:
    System.getProperty("phone.imei");
    System.getProperty("com.nokia.IMEI");
    System.getProperty("com.nokia.mid.imei");
    but the result is "null" for each getProperty.
    However, I'm tryng something that identify my cell-phone...
    I've a MIDlet but i want to do something like a licence or a serial number to activate it.
    Some ideas?
    Someone can help me pleaseeeeeeee?

    Dear tumtum,
    first you need to sign your midlet application.
    check out the following links:
    1. midlet siging:
    [http://developers.sun.com/mobility/wtk/demos/wtk-sign.html|http://developers.sun.com/mobility/wtk/demos/wtk-sign.html]
    2. for MIDP 2.0's Security Architecture:
    [http://developers.sun.com/mobility/midp/articles/permissions/|http://developers.sun.com/mobility/midp/articles/permissions/]
    -d.p.

  • Nokia 3120 Classic - Going Online

    I own a Nokia 3120 Classic and have now figured out how to use it as a modem to connect my computer to the internet, for the purpose of downloading emails. This is very useful when I am on the move and don't have easy internet connection. 
    But I want to know if I can reverse the process when I am at home. What I would like to do is to connect the phone to the internet by connecting to the computer and using the computer's internet connection.
    The computer (XP Service Pack 3), connects to a wi-fi router and I connect the phone to the computer with USB data cable.
    I am aware that it is not possible to connect to the wi-fi router directly with this phone model. 
    Looking forward to some advice. 

    Hi! i am not here to give you a solution. However, i want to know the way to use my 3120 classic as modem to Use Internet in my PC through my Phone. You might be aware that there is some problem saying that MODEM NOT FOUND. I have treid to find out the way but to no avail.
         If you could mail me at [email protected] , the way to use 3120 Classic as modem, i'll be grateful to you.
    Thanking,
    Manishakar
    India

  • Nokia 3120 classic display settings

    Hi!
    The "Nokia 3120 classic User Guide" (9207764, Issue 3) in chapter 6. Settings -> Display says:
    Sleep mode -- to save battery power, the display turns black when no function of the phone is used for a certain time
    If I understand correctly the purpose of that option, when it is set to on it should turn off the back light of the display when the phone is not used for some time (a few seconds). By default that option is enabled.
    I tried to disable that option (set it to off) but nothing changed -- the display light turns off very quickly, which is very annoying for example when reading/writing messages. To prevent the display light to turn off you need to press a key every few seconds.
    I also tried to disable the "power saver" option in the display settings but I didn't notice any difference either.
    IMHO, there is a bug in the phone firmware regarding those options. Moreover I thing that user should be able to change the time interval after which the display light is turned off in the sleep mode.
    Another issue with that phone behavior: Using an analog or digital clock as a screen saver (Settings -> Display -> Screen saver) is quite convenient because the default digital clock in top right corner of the display uses very small font. When the keyboard is locked, the screen saver activates after a few seconds of inactivity (that time interval should be adjustable too), but the display light turns off also, which is OK when the keyboard is locked. Now the question is how to turn on the display light (to see the clock in the screen saver) without turning off the screen saver at the same time? Currently you have to do the following:
    (1) press one of the navigation keys in order to turn on the display light
    (2) wait a few seconds in order to activate the screen saver
    The firmware version used is:
    V 07.16
    27-05-08
    RM-364
    Any comments?
    -- rpr.

    Can someone from Nokia please response to this thread? The lack of control over the display light duration is a huge disadvantage of the 3120. It sounds like a small issue, but it is really not. I would recommend anyone who is interested in the 3120 NOT to get it, for this exact reason.

  • Nokia 3120 Classic Firmware Update, Do we need it?

    Could anyone please tell me the pros and cons of updating the Nokia 3120 Classic? Do you have any problems with the phones after updating it? Are there any changes or any improvements to the phone after updating it? Thanks

    Hi scarlet_213, download Nokia Ovi Suite and install it to your computer. Then follow the steps and upgrade your phone. If there is no update available for your phone, this could be due to a number of factors which are outlined in the following articles written by one of our senior users Grischnon: http://techyoddsandends.blogspot.com/     and     http://linux.sgms-centre.com/nokiafaq/branded-phones/
    The latest firmware version for unbranded handsets for the 3120 Classic is 10.00. Let us know how it goes.   
    If you found this or someone's comments helpful or like what that person has to say, please give some Kudos to their post!

  • Nokia 3120 classic firmware update problem

     Hello!
    I tried updating my Nokia 3120 Classic with Nokia Software Updater, and I I've got some problems. When I connect my phone to the computer Software Updater detects it, and everything seems to be OK, but when i want to install the update (or as in this case re-instal it, beacause I've got the newest firmware version)  the program returns errors.
    The 'download' step is OK, Software Updater downloads the updates, and when it comes to installing after few seconds I get "update failed, to have the best connection connect your phone to the PC without USB hub..." (i've got polish version of software updater, so that's how I translate it into english).
    The thing is, that I've got the best connection! The device is connected to computer via CA-101D cable! I don't know what is wrong, I used to update my Nokia N95, Nokia N82 and second N95, and everythink worked great, but then the new version of Nokia Software Updater appeared, and I can't update this old 3120 : /
    I need to update it, help me!
    (sorry for my english, I'm from Poland )

    Hi scarlet_213, download Nokia Ovi Suite and install it to your computer. Then follow the steps and upgrade your phone. If there is no update available for your phone, this could be due to a number of factors which are outlined in the following articles written by one of our senior users Grischnon: http://techyoddsandends.blogspot.com/     and     http://linux.sgms-centre.com/nokiafaq/branded-phones/
    The latest firmware version for unbranded handsets for the 3120 Classic is 10.00. Let us know how it goes.   
    If you found this or someone's comments helpful or like what that person has to say, please give some Kudos to their post!

  • Configuring Email in Nokia 3120 Classic

    Hi all,
    I would like to know, how to configure pop3/smtp email (yahoo,msn,gmail or anything else) in Nokia 3120 Classic. I followed the steps in help manual, and on screen help..but not working..!
    Is there anything specific required..!! any detail help documents..!! please share with me.
    Thanks in advance.
    with regards
    Muthukumar.g

    When I checked about 1/2 hrs ago the operation had finished. It took about 7-8 hours. A .nbu file has been created in memory card. I connected my phone to my laptop and copied that to laptop. Now I'm going to check for a software that could convert .nbu to a human readable format. 
    Can you please recommend me any suitable software?  
    When I searched in google, I found this.
    http://sourceforge.net/projects/nbuexplorer/
    Is this a good software for my problem? 

  • Alarm on 3120 Classic

    I recently purchased a new Nokia 3120 Classic (product code: 0555309). The alarm clock was working beautifully out-of-the-box. But being the IT nerd that I am, I had to go ahead and firmware upgrade. The phone is now on the newest software (firmware) version 7.16 - but now the alarm is malfunctioning.
    The alarm is set to wake me up at 5.55 AM, monday thru friday. The following how happens at weekdays at 5.55 AM:
    1)
    The alarm goes of.
    2)
    "Snooze" or "Stop" can no longer be selected. The menu still says "Go to", "Menu" and "Names".
    3)
    Any key will shut off the alarm.
    4)
    The screen is flashing and keeps flashing after the alarm is shut off. The only way to stop the screen flashing is to turn the phone off and back on.
    This only happens when a actually need the alarm. If I set it now to go of in one minute everything works as designed. But when I set the alarm to go of at 5.55 AM and plug it into the charger - it doesn't work at 5.55 AM. ??? No, it is not because I am tired :-)
    Has anyone seen anything like this or know of a solution?
    Thanks
    Kaastrup

    Iam also experiencing this problem. I think it has something to do with charger, especially with message "save the nature - unplug charger - battery is full". Everytime I see that message, there is pretty big chance my phone starts behaving crazy. And its not only alarm problem mentioned above, I have also seen missed call that wasn't displayed at all Solution is simple, just reboot your phone after you unplug the charger. But its annoying. Very annoying. If I only find a way to disable that stupid message
    COME ON NOKIA, FIX BUGS IN YOUR SOFTWARE!

  • Call waiting not working in Nokia 3120 classic

    In my Nokia 3120 classic mobile, the call waiting option is not working. If a new call comes while you're on a call, it shows the new call. But if I try to answer it, it shows some error.
    Pls help.
    Solved!
    Go to Solution.

    Call waiting is actually a network service. Your phone only facilitates this service by transmitting a command to the network when you change certain settings. 
    You should start debugging this problem by contacting your network to make sure there isn't a problem with the service.  

  • While installing the latest iTunes version I get the following msg:"Service Apple Mobile Device failed to start.Verify that you have sufficient privileges to start system services. I already tried it from the installer Running it as Administrator

    While installing the latest iTunes version I get the following msg:"Service Apple Mobile Device failed to start.Verify that you have sufficient privileges to start system services. I already tried it from the installer Running it as Administrator and still get the same message.  I click "ignore" and finish the installation but when I try to open it I get this "Runtime Error! R6034 An application has made an attempt to load the C runtime library incorrectly."  I already uninstalled iTunes and all other applications involved and re-installed itunes from the itunes site and the problem persists. Please help!

    Solving MSVCR80 issue and Windows iTunes install issues.

Maybe you are looking for

  • Can I combine or merge songs into a single album?

    When I view my albums in iTunes, many are fragmented into several albums. This is especially true for albums that contain songs by several artists, like "Saturday Night Fever" but also for albums by the same artist like "Future Shock" by Herbie Hanco

  • All files in one group of folders (jpeg, gif, doc, ppt and pdf) do not open.

    I have a lot of files that I use as teaching material (gifs, jpegs, pdfs, web archives, Word files, PowerPoint presentations) that are in a number of different folders and which I store on an external drive, then copy every year to my hard drive when

  • I am unable to convert certain files to pdf with Adobe Acrobat 8 Professional

    I am unable to convert Word & PowerPoint files to pdf.  (I am able to convert image files & excel) I have enable macros in Word and still cannot convert the file.  I am getting the error popup: Unable to open the document Please check to see if you h

  • Unknown Error (-54)

    When I sync my iPod Touch (7.1.1) via iTunes (11.2) I keep getting this error. I understand it means that files are locked. I am running Windows Vista. How do I find out which files are locked, either through iTunes or the command prompt (cmd)?

  • Java heap space java.lang.OutOfMemoryError coming in weblogic server

    Hi All, I am getting following out of memory exception on BCC server start up. <Nov 13, 2013 3:17:09 AM IST> <Critical> <Health> <BEA-310003> <Free memory in the server is 1,134,688 bytes. There is danger of OutOfMemoryError> Exception in thread "Tim