I am working on an application for Windows Phone 8, and checking the push notification interface. I have found in the documentation the different steps to do it, but I have only found that on the .NET documentation how to create a notification channel and obtain the URL to push the notifications (here [1]), but I can't seem to find it how to access from a C++ application (I am checking here, on Windows Phone Runtime API [2])
Is there any way of creating a notification channel (to be able to send notifications to the app) from a C++ application. If not, the only solution is to create a .NET application? Or there is any way of circumvent this?
Thanks
[1] http://msdn.microsoft.com/en-us/library/windowsphone/develop/microsoft.phone.notification(v=vs.105).aspx
[2] http://msdn.microsoft.com/en-us/library/windowsphone/develop/jj207212(v=vs.105).aspx
According to Microsoft, the answer right now (May 2013) is NO. Only C# applications can use these features.
Related
I have CLI application from which I want to send a notification to the notification center on MacOS. The application is programmed in C++14
One of the requirements for the application is C++ only! My problem is that I cannot find a method for sending a notification via a Core or Foundation without using Obj-C and Obj-C++.
So can it be achieved in pure C++? and if yes, how?
Installing applications such as terminal-notify is not an options as it will run on clients computers, and I am not going to install applications behind their back
You can use system to show your notification using AppleScript.
e.g.
system("osascript -e 'display notification \"message\" with title\"title\" subtitle \"subtitle\"'");
Is there any way to get IBM WebSphere MQ version and patch level, both client and manager side? I am looking for the same data that is shown by dspmqver but through the C/C++ API.
You call MQINQ, passing the Queue Manager handle, with the selectors for MQIA_COMMAND_LEVEL and Version is an attribute of the MQCFST structure.
https://www.ibm.com/support/knowledgecenter/en/SSFKSJ_7.5.0/com.ibm.mq.ref.dev.doc/q101840_.htm
I just want to add to Stavr00 answer that compile-time define of WMQ library is MQCMDL_CURRENT_LEVEL
P.S. Yet other details reported by dspmqver (like CMVC level, build type etc.) remain hidden within WMQ API internals :(
I am developing one message app which should get the messages from native message application and want to store it in my app's database .
I tried to refer official docs but not getting how to do this ?
Can anyone tell me the solution ?
I believe you will need to access the data through the BB 10 NDK's system using the MessageService class. At least this is the closest i could think of if i understood your demands. See https://developer.blackberry.com/native/documentation/cascades/device_platform/pim/messages.html
I have a C/C++ Windows Mobile 6.5 application that continuously runs on the phone. It needs to analyze the SMSes. How can I be notified in my application about an incoming SMS? I read in MSDN about the SmsSetMessageNotification() but this is starting an application once the SMS comes in, and in my case the application is already running, it just needs to be informed that a new SMS was received and then should have access to it in order to analize it and to decide if it's of any interest for the application or not.
So how can my already running application be informed about an incoming SMS which then needs to be analyzed?
I believe you need to use the IMailRuleClient to sign up for notifications of a text message being received.
There is a sample application as part of the sdk that demonstrates this functionality. You can download it from MSDN Code Samples
You can achieve your goal using the Radio Interface Layer (RIL) API. Download RIL.H to get started. Then use LoadLibrary and GetProcAddress to dynamically call the RIL functions from the DLL at runtime. You can setup a RIL notification callback to notify you when message activity happens. I found a code example here.
I have a Qt-based windows application written in C++ that needs to report it's status via ICQ and react on some ICQ messages. Maybe anyone know a good library to interact with ICQ? I need to connect ICQ with registered login and password, send messages to specified contacts and receive messages from them.
I know of two streamline options:
libpurple - The core library behind Pidgin
Telepathy - The core behind Empathy
qoscar.googlecode.com - actual library, written on qt by me.