Blackberry App not working on BIS - blackberry

My BlackBerry App sends a message to the server over a webservice.
The server communicates by replying or sending a message to a web service.
The web service routes the message received from the server back to the BlackBerry App as a Push message.
I have registered for push Message but I don't know how to use this push Service in Eclipse.
Can anybody help on this ?

Related

Notifications with Firebase from web

I have been working on an Android application and my customer that will use it want to send notifications is there any way to send notifications from a Web UI other than firebase console?
There is currently no public API to send Firebase Notifications. The Firebase Console is the only place for that. We're considering adding an API, which you could then use to build your own web site for your customer.
See How to send firebase notifications to audience via HTTP

SMS/ Email notification in iOS objective C

How do I send notifications via SMS or Email to users? The server side is done in PHP using Drupal framework. I know how the push notification works. But I do not have an idea on the SMS and Email notification.
I do not know from where to start. I browsed but I did not understand what to follow as I am not very much experienced in app development.
Try with the following scenario:
Implement Web Service which contains code for sms gateway or email service. Make a call to Web Service when you wants to send sms or email.

Mailcore2: how to receive mail instantly when a new mail arrived?

I'm building an iOS mail client for receiving mails via mailcore2, with IMAP protocol, I've fetched the mail messages successfully. But, how to implement the remote notification push when the target mail account received a new mail in client? I checked the mailcore2 project and some google search results, no luck there.
Please help, thanks!
UPDATE:
Let me clarify the problem details, for the mail client like Airmail in Mac and Microsoft Outlook in iOS, they support to add a IMAP protocol mail account for sending and receiving e-mails, e.g. I added my qq.com mail to Outlook for iOS client, once a new mail arrived to my INBOX in qq mail, I could get an instant remote notification from Outlook client right now.
Let me guess, the mail client didn't upload/save my IMAP-protocol mail config to microsoft/outlook server, all the receiving mail logics just work in local, including communication protocol.
How about IMAP? I've check this article on difference between POP and IMAP. IMAP just keep the client and server have the same account mail data all the time.
Airmail in Mac used mailcore2 in its implementation, so how does it make sure the remote notification work? I don't think they deployed a server side to check the new email arrival for all the user accounts, really.
On mailcore2, I think this is the key point, the remote push should be implemented by it, not some unknown servers. I checked the project structure basically, it's so huge for me and there are many c++ code logics, I must read many mail related blogs before reading it. If someone knows the related guide/wiki/header files, please share to me, or point the mistake on my above guess out, great thanks!

Sending Email in iOS and Android without using the default/built-in app in Xamarin

I'm trying to send any message error in my IOs/Android app to my email but I'd like to send the message directly, without showing the default app. Is there some way to do this?
You can connect directly to a SMTP server and send the mail using System.Net.Mail.SmtpClient. Or you could setup a webservice to act as a mail relay, and connect to the service from the mobile client.

Sending apn notifications to 2 different apps from same api

We have a rails api that we would like to use to send notifications to client and admin ios apps. Does anyone know if this is possible? We have it setup now sending to the client app but not sure how to proceed sending to admin. We are hosting the api on heroku now using redis and a worker dyno to send the notifications.
Read the docs here.
You cannot push to 2 separate apps in 1 call to the service but you should definitely be able to make a call for each app.

Resources