Client to make VoIP calls

Client to make VoIP calls

I recently started having problems, make VoIP calls from my computer. I use VoIP Busters (and using it for a few years without any problems). Evertime I try to call the destination phone rings a couple of times and then stop. The next thing that happens is an error message that says: "Client for VoIP calls has stopped working. Windows is checking for a solution to the problem. It is followed by another screen that says: "a problem caused blocking the program working properly." Windows will close the program and inform you is a solution available. " Nothing happens. How to overcome this problem.

Hello

I suggest that you contact the manufacturer of the program for assistance through their program.

Often to uninstall, and then reinstall the latest version will solve problems.

https://www.VoipBuster.com/

See you soon.

Tags: Windows

Similar Questions

  • Error when you try to use VoIPBuster to place VoIP calls: Client for VoIP calls has stopped working. Windows is checking for a solution to the problem.

    Client to make VoIP calls

    I recently started having problems, make VoIP calls from my computer.  I use VoIP Busters (and using it for a few years without any problems).  Evertime I try to call the destination phone rings a couple of times and then stop.  The next thing that happens is an error message that says: "Client for VoIP calls has stopped working.  Windows is checking for a solution to the problem.  It is followed by another screen that says: "a problem caused blocking the program working properly."  Windows will close the program and inform you is a solution available. "  Nothing happens.  How to overcome this problem.

    I finally had to resort to the re-installation of Windows.  This solves the problem.  But don't forget to back up your computer and email address / addresses before you do.

  • How to make SOAP client ssl (https) request call with c# in Visual Studio 2010?

    Hello

    I have https wsdl as https://128.107.155.166:8443/nbapi/event /? WSDL path and I would use as tool for vs2010 with proxy class add 'a service reference. At the present time, the proxy class already created by "a service reference" of vs2010 as the "Reference.cs" call So the question is "with the ssl Protocol, how can I write the client ssl request soap call of this class (Reference.cs) proxy that is generated by a service of vs2010. reference.
    Please let me know, and if you have examples of code that will be great. I need ASAP for my project.
    Thank you.
    Anderson Lin

    You will need to create a new post on MSDN for assistance: http://social.msdn.microsoft.com/forums/en-US/categories/

  • make a call using pjsip

    Hello

    -Example of VOIP application using pjsip, in my application correctly registered with the server iptel, I created
    -I want to make a call, but I'm not able to call. I get no error but nothing is happning.

    Reference to this: http://208.74.204.192/t5/Native-Development/Porting-PJSIP-PJMEDIA-and-PJLIB-to-BlackBerry-10/ta-p/20...

    Thank you all,

    My Code is

    status = pjsua_create();
    
        if (status != PJ_SUCCESS) {
            handleError("Error creating pjsua", status);
            return status;
        }
    
        {
            pjsua_config cfg;
            pjsua_logging_config log_cfg;
    
            pjsua_config_default(&cfg);
    
            // Set up the two static callbacks for session up session down
            // This is where all callbacks are initialized. See PJSIP documentation
            // session up
            cfg.cb.on_reg_started = &on_reg_started;
            // traps session down
            cfg.cb.on_transport_state = &on_tp_state_changed;
    
            // accept incomming call
            cfg.cb.on_incoming_call = &on_incoming_call;
            // Callback called by the library when call's media state has changed
            cfg.cb.on_call_media_state = &on_call_media_state;
            // Callback called by the library when call's state has changed
            cfg.cb.on_call_state = &on_call_state;
    
            pjsua_logging_config_default(&log_cfg);
            log_cfg.console_level = 4;
    
            pjsua_media_config media_cfg;
    
            pjsua_media_config_default(&media_cfg);
    
            status = pjsua_init(&cfg, &log_cfg, &media_cfg);
    
            qDebug() << "2. PJ_SUCCESS :" << PJ_SUCCESS << " status : " << status;
    
            if (status != PJ_SUCCESS) {
                handleError("Error initializing pjsua", status);
                return status;
            }
    
        }
    
        /* Add UDP transport. */
        {
            pjsua_transport_config cfg;
    
            pjsua_transport_config_default(&cfg);
            cfg.port = 5060;
            status = pjsua_transport_create(PJSIP_TRANSPORT_UDP, &cfg, NULL);
            if (status != PJ_SUCCESS) {
                handleError("Error creating transport", status);
                return status;
            }
        }
    
        /* Initialization is done, now start pjsua */
        status = pjsua_start();
    
        qDebug() << "3. PJ_SUCCESS :" << PJ_SUCCESS << " status : " << status;
        if (status != PJ_SUCCESS) {
            handleError("Error starting pjsua", status);
            return status;
        }
    
        /* Register to SIP server by creating SIP account. */
        {
            pjsua_acc_config cfg;
    
            pjsua_acc_config_default(&cfg);
    
            std::string id(sipPrefix + sipUser + atSymbol + sipDomain);
            cfg.id = pj_str((char *) id.c_str());
            std::string uri(sipPrefix + sipDomain);
            cfg.reg_uri = pj_str((char*) uri.c_str());
            cfg.cred_count = 1;
            cfg.cred_info[0].realm = pj_str((char *) sipDomain.c_str());
            cfg.cred_info[0].scheme = pj_str((char*) digest.c_str());
            cfg.cred_info[0].username = pj_str((char*) sipUser.c_str());
            cfg.cred_info[0].data_type = PJSIP_CRED_DATA_PLAIN_PASSWD;
            cfg.cred_info[0].data = pj_str((char *) sipPassword.c_str());
            qDebug() << "Register to SIP server by creating SIP account ";
    
            status = pjsua_acc_add(&cfg, PJ_TRUE, &acc_id);
    
            qDebug() << "3. PJ_SUCCESS :" << PJ_SUCCESS << " status : " << status;
    
            if (status != PJ_SUCCESS) {
                handleError("Error adding account", status);
                return status;
            }
    
               pj_str_t uri = pj_str("iptel.org");
               status = pjsua_call_make_call(101, &uri, 0, NULL, NULL, NULL);
               if (status != PJ_SUCCESS) {
                   handleError("Error making Call", status);
               }
    
        }
    

    Hello

    In your uri you lack the prefix Sip: ' sip: ' here's a good example

    pj_str_t uri = pj_str ("sip:[email protected]");
    status = pjsua_call_make_call (acc_id, & uri, 0, NULL, NULL, NULL);
    If (status! = PJ_SUCCESS) {}
    handleError ("Error using", status);
    }

    Gaelle Sandhu

  • BlackBerry Smartphones video calls between BlackBerry or Voip calls must read more than a year a RIM does nothing about it...! Must be in bb10 correct your mistakes

    Well, I'm not a programmer, but those who are not the their: Please answer this... ?

    Why isn't their an app that can allow us to make calls voip blackberry for blackberry ok forget voip called something like Skype or facetime where to users of phones like blackberry 9900 or the 9860 can call the other times video I had the blackberry from book reading its pretty useless I never use it no cause of offence I can t Skype video calls my friends family need to have a playbook to call me ridculous if you look @ the samsung or the iphone, they all Skype for if other users don't have the same mobile phone they can even video call each other pc to phone or ipad to pc... etc.

    I posted this on your facebook wall and hope that nothing is done about it

    Blackberry question, why don't have an application like Viber or Skype where users who have blackberry as 9900 or the 9860 in which the two phones have front camera could Skype call or an application like viber in the blackberry users can call on voip... it is a reall fall in expected an app for blackberry for almost a year rang also edge to do something about IT... most users go for iphone so because of these two applications that maintains the connected in time video reall... enjoy some answer on this...

    looking forward to the bb 10 having these sucks simple features of daily use not having them so fustrating I think to spend 529 book just cause the 9900 t can support Skype and the playbook is not just the feel

    It is perhaps a question better directed to Skype and not HERE in the forums.  Skype has an application for BlackBerry, but it is only available to U.S. subscribers using Verizon.  (This information can be updated to date, it's updated information I have.)  Given that these forums are composed (not the right choice of words) of volunteers who love BlackBerry phones and not by RIM developers, your chances of getting the answer you are looking for may be thin.

    I hope that helps you.

  • EX90 two autonomous with the public IP address can make video calls among them self on the Internet or not?

    Dear expert;

    I am very new to VCS and TP Cisco.

    We implement now presence Cisco TV with VCS - C, VCS-E TMS, TCS, MCUS and endpoints with Jabber in a single edit.

    and in another configuration CUCM 10.5, UCCX 10.5 IM & P, Jabber with some 10 officers.

    Now the question is in our building on the 2nd floor we have an EX90 and on the 5th floor an EX90 and on local network, we can make video calls using the IP address.

    In the same way is it possible to make a video call between 2 devices EX90 (both have public IP) present in a location different in the same city on the Internet without the participation of VCS - C and VCS-E.

    It's the client request :)

    Concerning

    Paiva

    Yes, but leaving these systems outside in nature with public IP addresses, leaving you are vulnerable to a number of questions. See for example http://www.videonationsltd.co.uk/2014/11/h-323-cisco-spam-calls/

    https://supportforums.Cisco.com/discussion/12336591/sourceh323idcisco-incomingcalls

    https://supportforums.Cisco.com/discussion/12340591/nuisance-h323-calls-SX20

    The offers above with H.323 calls, in addition to this, you will encounter similar problems using SIP where the systems will be analyzed by tools such as SIPVicious

    /Jens

    Please note the answers and mark questions as "answered" as appropriate

  • Sierra of MacOS - Siri cannot make voice calls.

    Hi guys,.

    Siri is supposed to be able to make phone calls via the iPhone, the Mac, in the Sierra de MacOS?

    Cause I can make phone calls (not the Facetime calls) fine if I use the Facetime on Mac app and click on the phone number, I want to call, or if I take a certain number of Contacts. But if I try to open Siri and make a voice command to "call X", he always tries to do through Facetime. Which means he's trying to make a Facetime call instead of a voice call normal.

    Is this a bug or missing feature? Is there a fix or a workaround for it? I wish I could use Siri on my Mac, just as I do on the iPhone.

    I observed the same behavior, so I think it's a missing feature.

    And page (below) which deals with Siri on Mac shows a command "FaceTime", but not a "Call" command  (As I say, I used the "Call" command and observed the same behavior you did.)

    Use Siri on your Mac - Apple Support

  • Impossible to make FaceTime calls on iPhone 7 using Siri

    I tried to use Siri to do a FaceTime call tonight and gave an unusual error: "I wish I could, but FaceTime is configured with me yet."

    I'm able to get Siri to open the FaceTime app, simply cannot access directly from my contacts and apart from this Siri works fine on the iPhone 7, including SMS and regular audio calls.

    I tried a FaceTime using Siri call on 3 old iPhone models (5s, 6 + and 6s), all running iOS 10, and it worked properly on each of them, she was with both iOS 9 and 10 on the same model of 6s for the past year, so this leads me to believe it's a problem iPhone 7 (or an individual defective unit) rather than a problem of iOS 10.

    I checked a number of settings on the iPhone 7 before coming here:

    • Siri is enabled.
    • FaceTime is activated.
    • Restrictions (general-> Restrictions) are completely shut down.
    • iCloud-> contact is activated.

    Hi there jsf23!

    Welcome to Apple Support communities, it's my pleasure to help you with your iPhone 7 issue of Siri is not able to make FaceTime calls.  I use Siri all the time and have his power making FaceTime calls is another great feature.  Looks like you have checked a lot of things I want to check too, if I fell on the same subject.

    At any time, that there is a problem with Siri or FaceTime, the first thing I recommend is to restart the iPhone and retest Siri and FaceTime.

    Restart your iPhone, iPad or iPod touch

    If Siri is still underway on issues from a FaceTime call, try to perform a reboot of the force.  Remember, this will be a little different on an iPhone 7.

    • On an iPhone 7 or iPhone 7 more: press and hold the sleep/wake and Volume buttons down for at least ten seconds, until you see the Apple logo.

    Test again and then try to check for updates.

    Update the software on your iPhone, iPad or iPod touch iOS

    Have a great day!

  • When I try my ipad FaceTime I get this massage iphone is not available your phone must be on the same WiFi that this ipad to make a call

    When I try my ipad FaceTime I get this massage iphone is not available your phone must be on the same WiFi that this ipad to make a call

    In your FaceTime settings, what you defined as "Caller ID"?  If you have set up the continuity (continuity use to connect your iPhone, iPod touch and Mac - Apple Support) and you have the iPad set to use your iPhone phone number to initiate calls, then you will need to have your iPhone and your iPad connected on the same wifi ntetwork.

    If you set the iPad caller ID to call from, for example, your iCloud email address, then this message should disappear.

  • Don't want to VOIP calls, it is possible to do?

    Don't want a phone operator. Rather buy directly and use it for VOIP calls. Possible? If so, where to buy?

    Hello
    No question is always silent. Currently there is a video chat in the Nightly of Firefox for desktop PC and mobile version, I think. However if you are looking to buy a Firefox OS with no carrier you will need an internet connection.

    Its expected to see this feature in later versions 2.0 or 2.1 OS of Firefox, but it is available in the Web API in the gecko.

    Follow-up on project Hello: https://wiki.mozilla.org/Loop

  • How to make a call on my iPhone 6 from Europe to North America?

    How can I make a call on my iphone 6 from Europe to North America?

    Is it a phone with a North American carrier?

    In general:

    Dial the international code for the country you are in, then enter the North American number with good country and area code.

    That is to say. 00 1 860 555 5555 will pay a call from the United Kingdom to a phone at the Bristol, Connecticut, USA.

    00 52 55 xxxx xxxx will place a call from the UK to a phone in Mexico

    00 1 647 xxx xxxx will place a call from the UK to a phone in Toronto, Canada

    (a)  (b)  (c)     (d)

    a U.K. international exit code

    b code

    c-indicative regional city

    number d.

  • How can I block my number before you make a call

    How can I block my number before you make a call? Thank you!

    Settings > phone > display my number: OFF

  • FaceTime on MacBook: cannot make cellular calls but can receive

    Hi all

    I'm unable to make cell calls with my iPhone via the app FaceTime on my MacBook Pro.  However, I receive and answer calls on my MacBook Pro that are initially routed to my iPhone number.  I have confirmed I am on the same wifi network, I also tried on different wifi networks.  I also have the checkbox checked "Calls from the iPhone" on my MacBook Pro.  I logged in and out of my account of FaceTime on all my devices and reset the settings of my network on my iPhone and MacBook Pro.  A 'genius' has also tried to help me without success.

    Any suggestions?

    If the built-in firewall application is enabled, please disable it. In case you are worried about the implications of this step, the firewall generally useless when you're on a private behind a router network.

    If you have installed any third-party 'firewall', 'security', or 'anti-virus' software, remove it according to the instructions of the developer. All these software are worse than useless.

  • Can I make telephone calls via Satellite A100-233 modem?

    Hello
    Can I use my Modem A100-233 to call a phone, and what is the porgram should I use to make & receive calls?

    Thank you

    Hello

    Did you mean voice over IP?
    Well, I m not an expert but I think that it s a good idea to have an internet connection broadband to use voice over IP. I think that the modem data transfer is low use of these technologies. But I recommend you to check some particular voice over IP forums and websites. You will find detailed information about this technology.

    I googled around and found a few sites.

    Do you know Skype? It is a program that allows you to call trough the net.

  • can not make phone calls

    I use Skype for phone calls to phone numbers in the United States. After downloading a new version of Skype I can't make phone calls more. The call button is not active. The account is closed to date. Help, please.

    Is your login on Skype online status? The status icon next to your name should be green with a white check mark inside. Try to change the status by using the drop-down arrow next to this icon.

Maybe you are looking for