9500 Simulator auto hang up call

Hi, I have developed an application that generates a call using code:

PA PhoneArguments = new PhoneArguments (PhoneArguments.ARG_CALL, newNumber);

Invoke.invokeApplication (Invoke.APP_TYPE_PHONE, pa);

It works in the simulators of the previous version and even in 9530, but to 9500 when the new number is called, he hangs up immediately. In fact, it goes to the method callDisconnected (int callId).  Any thoughts?

thanx

Your callInitiated method fires its events?  If so it might be suspended the call before the Simulator incoming call prompt appears.

Tags: BlackBerry Developers

Similar Questions

  • Same project does not work in the 9500 Simulator

    Hello

    I have developed a project KSOAP2 in blackberry JDE4.2.0 it works fine there. But when I run the same project in JDE4.7.0 9500 Simulator for me transport http and other functions do not work. Please help me wat could be the reason

    I think you need turn the pot of kSOAP2 a library cod. This link should be helpful:

    How - to compile a jar file in a library of BlackBerry

    It may first have to preverify the jar. This blog has some useful info:

    http://www.craigagreen.com/index.php?/blog/BlackBerry-and-NET-WebService-tutorial-part-1.html

  • Every second time right peripheral (9800) / Simulator get hanged.

    Every second time right peripheral (9800) / Simulator get hanged.

    Here are the steps.

    1. install the application via OTA.

    2. open app. It's work very well.

    3. close the application and try to open again.

    Device /Simulator hanged and no operation will be performed, only restart. and second time count not abel to start tha app.

    Please suggest me. How to solve this problem,

    It looks like your communication code runs in the same thread as the UI.

    Try to put the communication on a separate thread and see if it helps.

    E.

  • Call monitor and auto hang up

    Hi everyone, this is my first post here. I just got a BlackBerry Pearl 8110 in Mexico with a package data unlimited and unlimited calls to 10 numbers from the same company, just as long as they are less than 5 minutes. So, I was looking for an application that could let me know what is the duration of a call, say 04:20 and end the call automatically at 04:50 (configurable of course).

    I could not find such an application (I don't mind paying for it) so I decided to code myself. After a bit of the read API I looked at the PhoneListener interface that would provide the necessary events (callInitiated, callConnected, callDisconnected) and its implementation, the phone class that would allow me to inject a DTMF tone in the current call or at least he says in his description, but I could not find a method to do this injection of DTMF.

    My main question is, how can I develop an application that should start automatically when a call is received? I like to work when a call is initiated by the use, the application looks in its database of numbers to find out if the dialed number is included in the list of 10 numbers. If this is the case, start keeping account of the duration of the call. If the call reaches the soft limit, inject the DTMF tone and when it comes to the hard limit, end the call automatically. Is it possible to have an application daemon-like on the blackberry that listens to the calls began? and if so, where do I find tutorials or documentation?

    Thank you very much!

    Hello!

    Just to answer a few questions:

    1. the request of deamon, I suggest to have the application running all the time and setting to run at startup of the device. To do this, you will need to make some adjustments in the JDE. Do a search on this forum and you will find...

    2. the list of the 10 numbers. You could do an application user interface which maintains these numbers in a list. Then, for each call, you can compare the number called against the list. If so, do an action...

    3. to end a call, you can use injection of the event. Take a look on this forum and good luck!

    BR,

    Isabelle

  • Blackberry blackBerry Passport Passport hangs the call

    If I flip my passport for Blackberry upside down during the telephone conversation, he cut off the phone, then it will be impossible to hang up the phone. Conversation will be on the set and you can't do anything until you restart the phone, which takes about a minute.

    I think I found the problem. There is a program called Flip hush. I deleted it and now all seems fine. Great!

  • Q10 blackBerry please do change thos hang up call

    I always hit with my ear the "hang up". Button do it please as iphone we have to scroll to line like when we answer the phone instead of having just to hit the hang up, it would be appreciated cause I alwayas must have the phone on speaker... or anyone know how to fix this? Thank you

    When you place the Q10 in your ear, first place the top of the phone and low flush then the face of the phone to your ear.

    Q10 has a proximity sensor, along the top edge to know when you have the device to your ear on a phone call and so to desensitize your display.

    Welcome to the forums, you posted in this query in the section of the Playbook. I'll ask a moderator to move it to the device of Q10 section.

  • Snap capture auto on incoming call event

    Hi all, write almost after 2 years.

    now I m developing an application regarding: "Application automatically captures a nod & send immediately by e-mail when it receives an incoming call..."

    I have done until now is: -.

    my code from the main class:

    public class ClickNSend extends UiApplication {
    
        /**
         * Entry point for application
         * @param args[0] = CALL_RECEIVED(Command line arguments)
         */
        public static void main(String[] args)
        {
            ApplicationPermissions permission = new ApplicationPermissions();
            permission.addPermission(ApplicationPermissions.PERMISSION_EMAIL);
            permission.addPermission(ApplicationPermissions.PERMISSION_MEDIA);
    
            if ( args.length > 0 && args[0].equals("CALL_RECEIVED")) {
                RegisterPhoneListener phone_handler = new RegisterPhoneListener();
                Phone.addPhoneListener(phone_handler);
                System.out.println("===================> started in auto-start up mode..");
            }
            else if ( args.length > 0 && args[0].equals("NORMAL_MODE")){
                System.out.println("===================> started in regular mode..");
                SnapShot app = new SnapShot();
                app.enterEventDispatcher();
            }
    
        }
    
        public ClickNSend(){}
    }
    

    (2) method phoneListener which is called code entering is given below

    private void checkCall(String ehandler, int callid){
            System.out.println("Status:::" + ehandler );
            callInfo = Phone.getCall(callid);
            UiApplication.getUiApplication().invokeLater(new Runnable()
            {
            public void run(){
                try {
                    AutoStartSnapShot app = new AutoStartSnapShot();
                } catch (Exception e) {
            System.out.println("Exception : "+e.getMessage());
            }
            }
            });
    }
    

    (3) class code AutoSartSnapShop

    public AutoStartSnapShot() {
            try{
                home = new MainScreen();
                p = Manager.createPlayer("capture://video");
                p.realize();
                System.out.println("----------->>> Player realized");
                p.prefetch();
                System.out.println("----------->>> Player prefetched");
                p.start();
                System.out.println("----------->>> Player started");
                vc = (VideoControl) p.getControl("VideoControl");
                viewFinder = (Field)vc.initDisplayMode(VideoControl.USE_GUI_PRIMITIVE, "net.rim.device.api.ui.Field");
                home.add(viewFinder);
                //Thread.sleep(1500);
                pushScreen(home);
                new Thread() {
                    public void run() {
                        try {
                            capture();
                        } catch (Exception e) {
                            e.printStackTrace();
                        }
                    }
                }.start();
    
            } catch (Exception me){
                System.out.println(me.getMessage());
            } finally {
                popScreen(home);
            }
    
        }
    

    now my problem is that - when I received a call, an exception is thrown: application already running in this process... to "BOLD" statement / highlighted in above code...

    I stuck very bad... Please suggest a good solution

    It was solved by writing

    UiApplication.getUiApplication().pushGlobalScreen(new  AutoStartSnapShot(), 1, iEngine.GLOBAL_MODAL);
    

    insteade of Scripture

    UiApplication.getUiApplication().invokeLater(new Runnable() {
          public void run(){
              try {
                  AutoStartSnapShot app = new AutoStartSnapShot();
              } catch (Exception e) {
                  System.out.println("Exception : "+e.getMessage());
              }
          }
    });
    
  • HelloWorld deploys in Eclipse under Simulator 8130 but not 9500 Simulator

    I followed the steps of http://www.thinkingblackberry.com/archives/21

    If I take the JDE 4.5.0 with 8130 Simulator, I can navigate to the HelloWorld icon, click on it, the application is running, I can hit breakpoints, etc.

    I turn then to the JDE 4.7.0, erase the files of Simulator (Blackberry |) Delete file Simulator | Erase all) and change the simulator of default to 9500 in Debug Configurations

    When I run the Simulator, get the series of messages in the window of the Console of Eclipse as the Simulator rises. If I then click on the BB button to get more icons, then click on the "Applications" button, I do not see any which HelloWorld icon and I don't see no up/down arrows that show that there are more icons. Am I missing something obvious? Here's what I see:

    http://picasaweb.Google.com/LH/photo/O2EgfLK-19N8nssbdatyhg?AuthKey=Gv1sRgCIjcnNLmhbWgeQ&feat=direct...

    Thanks in advance for any help.
    -Chris

    4.7, your application will load in the file downloads to the home screen.

    Concerning

    Bika

  • 6.16 Skype for win Desktop 8.1 hangs when calling

    My Skype crashes whenever I try to call someone. Otherwise, it works great. Receiving calls do not work or the other.

    I tried a lot of things, but I can't pinpoint the problem. At first I thought it had to do with some drivers but nothing, I did the work. Here are the details of the event viewer:

    Name of the failing application: Skype.exe, version: 6.16.0.105, time stamp: 0x536b4342
    The failed module name: unknown, version: 0.0.0.0, time stamp: 0x00000000
    Exception code: 0xc0000005
    Error offset: 0x00000000
    ID of the process failed: 0xc4c
    Start time of application vulnerabilities: 0x01cf9c39863e8f2c
    The failing application path: C:\Program Files (x86)\Skype\Phone\Skype.exe
    Path of the failing module: unknown
    Report ID: d004a32e-082c-11e4-825e-c4d98726c96e
    Faulting full name of the package:
    ID of the failed package-parent application:

    Kind regards
    Nils

    First of all, make sure that you have the latest 15.33.64.3262 intel video Driver for Windows 8.1 installed:

    http://h20566.www2.HP.com

    If this will not help then uninstall the version 6.16 and install the 6.14.0.104 previous version of Skype:

    http://download.Skype.com/MSI/SkypeSetup_6.14.0.104.msi

    In several previous decisions, it was reported that the latest version of Skype does not work on HP laptops with webcam Webcam HP HD [Fixed] and Intel video graphics card.

  • recent update hangs during calls

    I've just updated to version 7.10.0.101 and it crashes whenever I make a call, it was not when I used the patch before this, how can it be fixed.

    I fixed it by uninstalling the old version and reinstall the newest one.

  • Auto Smartphones blackBerry call log delete

    I left my brother borrow my 8130 for a day and since then my call logs, messages and emails are all deleted automatically once per day.  I don't know how to disable this feature.  Any suggestions?

    I had this problem before and it was tied to memory.  I bought a memory card and transferred all my photos, ringtones, etc. on it.   You can close all your open conversations, maybe clean up some of the elements in your personal dictionary as well. I run also the cleaner memory everyday and that seems to help.

    hope that helps!

  • can't fake phone calls on the "BOLD" Simulator

    JDE v4.6 I and I can't get the "BOLD" Simulator to simulate incoming calls and I can't shout with the phone application.  When I call from the phone app, it says "cannot conect xxxxxxx".

    Anyone have this problem?  4.5 and 4.2 sims work fine.

    User error.  apparently the network has not been activated.

    I wish it was enabled by default.

  • Problem in calling JSP of the widget

    Hi all

    I m new to the development of widgets BB. I have a scenario in which my page main HTML widget which is index.html on tinkle a button I m calling a JSP page which remote server on my LAN. This JSP contains code that connects to the database and extract data from the database and return this data to the format HTML on my page index.html and index.html page displayed on screen of BB.

    To connect to the JSP file that is located on the other server in my LAN, I created a PHP proxy on my local system. This works very well for my Nokia widget and I tested it successfully on your NOKIA device.

    I used the same index.html file to create. ZIP file for the widget of BB and assigned the same file in my config.xml file as . After that, I compile my widget. ZIP file of the command prompt and it gets compiled successfully and generates the .cod file. I m using the BB SDK 1.0 widget (BlackBerry Widget Packager).

    Now when I open the BB 9500 Simulator and try to load my .cod file it displays the index.html page, but when I click the button nothing happens I mean it does not connect to the remote JSP file on the remote server.

    I started my MDS before doing these tests. Still nothing, result is the same after clicking on my index.html, nothing happens.

    To avoid compatibility issue I m versions using the same MDS and emulator that comes by default in my BB SDK widget.

    Hope my question is simple,

    Thanks in advance.

    Have you added the domain of your JSP page to the white list of the widget.  You can do this by using the elements.  The origin of your external resource must be declared to allow for external communications.

  • Old Instrument NOR Simulator

    Hi all. I have an OLD NI instrument Simulator. It is so old, that I'm not still able to use the NI instrument Simulator Wizard. I called for the support and the technician was more useful however, whenever I run the wizard, it opens and alarm that reads "there was an error in location of the simulator of the Instrument OR." Make sure that the equipment is connected to this computer and in Setup mode. I have the 38-page manual that goes to this device. Simulator model number is #183913C-01. I am able to use NI MAX and use VISA Open Test Panel and run commands from there. The challenge is, I have to enter each command, whenever I want to use. I was hoping someone here knows these older model simulators. I posted a question here when I first bought the unit but was not familiar with the operation of it. Any help would be greatly appreciated.


  • Windows has someone calls about problems with your computer sendingout of information on the internet?

    someone called said they where windows form and they said my computer sends information on the internet and they tried to direct me to fix it is this really windows or a scam?

    someone called said they where windows form and they said my computer sends information on the internet and they tried to direct me to fix it is this really windows or a scam?

    Old age scam tactics. The crooks simply change the labels, even poison.

    Ignore and hang up calls.

Maybe you are looking for

  • What are the new products by apple

    What are the new features that are available on the market designed by apple. Other than the products of hardware its iPhone, the smartphone and the Tablet I want to know about the software of the computer and online services.

  • How will I know if my pci DSS goes

    How will I know if my pci DSS goes wrong and there is a cheque that I can do?

  • WinHTTP.dll error then that he was trying to access Youtube and adobe Flash

    Original title: been trying to get in youtube and adobe flash, error screens keep coming by saying winhttp.dll must be reinstalled, but I don't know where to go or how to reinstall. How can I reinstall winhttp.dll have tried to get into youtube and a

  • Wireless Assistant

    Hello I just do a restore of the system on a newly bought laptop. When I got the laptop last month, I just had to click on the wireless on the lower right corner and fill security password for a wireless connection. But now after the system recovery,

  • HOW can I stop a person to recover my deleted files?

    I'll give you my cell phone to my friend, I deleted everything, but when I run the file recovery, are almost all deleted files. What can I do?