Make a phone call from a server--what services are out there? [closed] - phone-call

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I am looking to make a phone call from software and have the software read a message to the recipient. I have been using Asterisk, but have found it somewhat are to maintain and it was a pain to configure. I'm wondering if there are any services where you can send it a piece of text and a phone number and it will read it to the recipient of the phone call.
I am in Canada and making calls within Canada. The service does not need to accept calls. I am working with an AMP server.

Twilio is your best bet, I think. Look into the documentation on Dial and Play. Also, if this is a one-off and you don't want to do lots of programming, check out the Twimlets in Twilio Labs, specifically Call Me.

Take a look at Katalina 'VoiceGuide' a windows-based CTI system. It can handle Text-To-Speech applications. see: www.voiceguide.com
Also, MS have a server-based telephony system.
There are others, but I would consider the 2 above as prime candidates.

Related

How to send a Protonmail with c++? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 months ago.
Improve this question
my question is how to send a protonmail with c++ code? I know that c++ is a bad language for that, but I need it done with c++. I don't know which port or even which library to use, there is way to low support and documentation for that.
C++ is not a bad language, if you want to send emails via C++ I suggest you find an SMTP library, here's one:
https://github.com/embeddedmz/mailclient-cpp
There are many email protocols that services use for receiving and sending mails, SMTP is the most common one for outgoing emails, for any programming language it's not hard finding a library for such protocols.

Is it possible to add VBA programming environment to my C++ application? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I have an application that is written in C++ and would like to offer the user the possibility to have a VBA-programming interface (not dissimilar from the one in Excel). Is there the possibility to do that? Does a set of libraries exists for this? Is it very difficult to do?
Yes it is possible, but do regard it as being extremely difficult. As a starter for ten, your application will need a comprehensive Component Object Model interface. At that point, you would be able to use VBScript, so it might be wise to stop there.
For fully-fledged embedded VBA, you'll need to negotiate a licence with Microsoft.
Some applications (e.g. Reuters Kobra) licence the VBA interface in a similar way.

Does anyone know how to integrate Redis with Visual Studio for using with c++ [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I am new to Redis and want to use it in my application.
Have tried doing various steps from links across the web but not able to get it done,I need to send / receive strings to/ from redis db using c++..
If anyone knows any certain way or link where I can get the clear steps it will be very helpful!
HiRedis is your best bet: https://github.com/redis/hiredis
It's a C client, so you might want to write some wrappers for convenience, but it's very solid. The downside is that it's not easiest to use asynchronously if you have to make more than a few calls.
I've also used cpp_redis: https://github.com/cylix/cpp_redis
It's easier to use, but last time I worked with it, it still had some bugs. It is in active development, however, so it likely to be better by now. It also comes with MSVC project, so it might make it a lot easier for you to integrate. If stability isn't crucial for your project, and integration time is, I'd give it a try.

Open Source alternative to lablife [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am looking for an Open Source alternative to SAAS provided by lablife.org website. Main purpose of the service is to automate daily tasks for life science laboratory.
This service was free and nice to use, but when the original company developing this service
was bought by BioData they kind of decided to kill and replace it with a new service called labguru. Apparently, a new service has a lot of functionality missing or just bad.
That's why I am on a search for an alternative solution. So if you are familiar with what this software does - and if there are any known alternatives, I would be very grateful for any of your tips.
Check out Quartzy.com. I'm one of the founders. Feel free to reach out with any questions.

Find available network interfaces in C/C++? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
Does anyone know a C/C++ code for finding the network interfaces available?
I've been looking for some code, but most times they are quite complex. Is there a simple way to do this?
See the getifaddrs man page. There is an example program towards the end.
If you're looking for this in context of a desktop application, and you want to be notified of changes (e.g. interfaces connecting/disconnecting), consider using DBus to monitor NetworkManager.
http://projects.gnome.org/NetworkManager/developers/api/09/spec.html
You can enumerate interfaces, as well as interface-specific things (like available and connected WiFi access points, configured-but-not-dialed PPP links, and so forth), and if anything changes, you'll receive a notification over the DBus.
(If this is for something more like a server program, where you expect the network configuration to remain more stable, then things like getifaddrs are possibly more appropriate.)