Send messages to PIN by Web Application

Nice day

Is it possible to send the PIN Messages through a Web application for users not registered on our BES?

We have to BlackBerry Enterprise Server Express 5.0.1.

Thanks in advance.

Peet

Hi Peet.

The short answer is no.  The sendMessageToUser in the Administration of Blackberry API requires a user name which means that the device must exist on your BES server.

You will need to consider ways to send PINs via a Blackberry phone physically connected to a PC.  Vocera (Wireless Wallace) did this, but I don't know all the details.

Good luck

Kevin

Tags: BlackBerry Developers

Similar Questions

  • Mail merge Web Application

    Hello

    Jdev Version: 12.1.3

    What is the best way to send an email from a Web Application from merger?


    Do I need to import the 3rd part of the API for this feature?


    Pointers to this is much appreciated.

    See you soon

    AJ

    You must use a third party such as apache commons mail (http://commons.apache.org/email/) library

    Timo

  • Mail application not send messages on MacBook Pro (stuck in the Outbox)

    Have a MacBook Pro (late 2011), running Version OS X El Capitan 10.11.6 (but I had this problem for months, maybe further on OS X Yosemite (i.e. I don't remember this problem starting after an update of the OS)

    2.4 GHz Intel Core i7, 8 GB of DDR3 1333 MHz memory processor

    I have two accounts in Mail Version 9.3 (3124) - my iCloud email and my Yahoo email. 90% of all works, I can receive messages, delete messages, move messages, etc. However sending my Yahoo account does not work to Send Mail app in my iCloud account doesn't work (even if it's not instant - just sent a test and he was sitting in my Outbox for about 6 minutes;) I got my iPhone running stopwatch, but it resets twice as it is wont to do since download iOS 10, but that's a topic for ANOTHER post), however anything sent from my account Yahoo is located in the Outbox for DAYS (usually until I realize that I forgot the problem, silently curse me and copy - paste the message via the site Web of Yahoo in Chrome).

    I tried Yahoo to disconnect and reconnect it. I tried to remove the 'sandbox' suggestion of Linc Davis here: Mail is stuck in my Outbox?

    I really want to plan a Genius Bar appointment for this but I'm frustrated because I use the Mail App every day and often forget I can not send him, and then e-mails sit for days before I noticed the small Outbox (1) in the sidebar! Please help me Apple community, you're my only hope.

    Mail > window > connection doctor

  • When you try to send a file from a Web site, I get a message that doesn't say "none created a profile. Use mail icon in Control Panel.

    When you try to send a file from a Web site, I get a message that doesn't say "none created a profile. Use mail icon in Control Panel.  I searched and can't find this icon.  Can you give me way better?

    You must set up your default email program to send on a Web site.  Go to control panel | Default programs and set your default e-mail program there.  If your e-mail program is web-based, then you probably can't use this feature (sends the Web site file), then you may need to copy the site, and then paste it into a new message and then send it.

    Steve

  • How to send SMS from a web application to for free?

    In my view, what API JavaMail will help send emails and SMS Messages via the SMTP server. I want to know how it actually works and how to configure the SMTP server? How to send SMS from java program? Is there any material available on the web? Please give some input.
    Thanks in advance.

    user12873853 wrote:
    In my view, what API JavaMail will help send emails and SMS Messages via the SMTP server.

    Looks like more false hope that belief for me. The only way that works is if you have a SMS gateway which allows communication via SMTP. No doubt some exist (search for 'JavaMail sms' through google seems to indicate), but if you have to ask you don't have.

    And who exactly where you are stuck: to send SMS messages, you need an SMS gateway. It will be the first thing that you have store because, so far, there is no reason to think in code, protocols or implementations. It can be as simple as plugging a mobile phone, but then you can send messages in mass of course. Most likely, you will need to shop for a partner who has a SMS service you can use blasting.

  • I can't send messages on craigslist

    I can't send messages through craigslist. When I try this pop up - the connection to the server has failed. Topic "just watch me for you! -41 (Vancouver, Wa)', account: ' 6363', server: ' 6363', Protocol: SMTP, Port: 25, secure (SSL): no, Socket error: 10013, error number: 0x800CCC0E

    Hello

    ·         Remember to do recent changes on the computer before this problem?

    ·         What operating system is installed on your computer?

    ·         Who is your provider of mail service?

    ·         You use an email based on the Web or email client?

    Response with above information to better help you.

    If you use Windows live mail. I suggest you to send your application in the community of Windows live mail. Please visit the link below to find a community that will support what ask you:

    http://answers.Microsoft.com/en-us/windowslive/Forum/LIVEmail-email

  • Push the web application through UrbanAirship

    I want to use the urban airship to send notifications of type push to a web application. I found an example on https://github.com/blackberry/Cascades-Community-Samples/tree/master/UrbanAirshipClient but it is an application c / c++. Is it possible to grow a web application via urban airship?

    Hi, it is possible.

    Urban airship servers simply push Push BlackBerry servers that relay this push to the end-user device. This means that the only extra step that is really needed is, when registering with the push service, to register as urban airship witih as well as the link between urban airship, Push BlackBerry server and end-user device exists.

    Registration for the Push Service is essentially the same. You must create a PushService object:

       blackberry.push.PushService.create(
            {
                invokeTargetId: INVOKE_TARGET_ID,
                appId: BLACKBERRY_PUSH_APPLICATION_ID,
                ppgUrl: BLACKBERRY_PUSH_URL
            },
            createPushServiceSuccess,
            createPushServiceError,
            simChangeCallback,
            pushTransportReadyCallback
        );
    

    On createPushServiceSuccess, you create the channel by the usual method.

    /* We created the PushService instance. */
    function createPushServiceSuccess(service) {
        /* Store our PushService object. */
        pushService = service;
    
        /* ...other actions here potentially... */
    
        /* Create channel to receive pushes. */
        pushService.createChannel(createChannelCallback);
    }
    

    And finally, on the creation of the channel, we will register with urban airship.

    /* When a channel is attempting to be created, this will trigger. */
    function createChannelCallback(result, token) {
        var xhr;
        if (result === blackberry.push.PushService.SUCCESS) {
            /* On success, we'll register with Urban Airship. */
            xhr = new XMLHttpRequest();
            xhr.open('PUT', HTTPS_GO_URBANAIRSHIP_COM_API_DEVICE_PINS + token, true);
            xhr.onload = function () {
                console.log('Urban Airship: ' + this.response);
            };
            xhr.setRequestHeader('Authorization', 'Basic ' + URBAN_AIRSHIP_APPENCODED);
            xhr.send();
        } else {
            console.log('createChannelCallback: ' + result);
        }
    }
    

    Above, we will ensure that the channel was created successfully. The xhr request is purely related to urban airship and is the extra piece that we need. We use a few defined constants (previously).

    • HTTPS_GO_URBANAIRSHIP_COM_API_DEVICE_PINS is a string matches the URL of urban airship registration default PIN.
    'https://go.urbanairship.com/api/device_pins/'
    

     

    • URBAN_AIRSHIP_APPENCODED is a combination of two other channels; coded using window.btoa ().
    window.btoa(URBAN_AIRSHIP_APPKEY + ':' + URBAN_AIRSHIP_APPSECRET);
    
    • URBAN_AIRSHIP_APPKEY and URBAN_AIRSHIP_APPSECRET are obtained from urban airship console when you configure your application as follows.

    Finally, the last piece, you need to do is provide your credentials to Push BlackBerry in the console of airship urban itself. It is important to use the full URL including your CPID when you fill out this information. This is information which is sent to you by BlackBerry when you sign up for credentials EVAL or PROD.

    Beyond that, the implementation of the push, summoning, etc. would be all follow the regular WebWorks Push Application structure.

  • Send message push PC

    Hi all

    I have to develop an application that uses service push, and a feature is the ability to send a push message to (installed on a PC) software for the application installed on the Blackberry.

    I am newbie in the development of Blackberry, so my question is simple:

    Does anyone know how to send message push from a PC to a Blackberry please?

    Thank you for your answers

    The Debug Portal is just a web application built on the actual API SDK. The SDK itself is just a set of JAR files and configuration files, that you include in your classpath. You can build any type of application on top of those Java (eg. web app, stand-alone command line app, Swing App, etc...). The SDK is not all Web specific. Take a look at the JavaDoc for the SDK specifically the * Service classes.

  • Cannot send attachments photo from the mail application, error: contact service provider

    Original title: Windows 8 will not send message with attached photo using the mail application.

    Whenever I try to send a message with attached photos, it does not.  I get an error message telling me to contact my ISP.  What could be wrong?

    Hi Alex,

    This problem may occur because of in-correct settings in the Mail application.

    Please help me with the following information related to this issue:

    1. E-mail account which you added to the mail application? What is Outlook.com/Hotmail, Yahoo or Gmail?
    2. This problem is specific to a particular attachment? If so, what is the file size of the attachment?
    3. Are you able to successfully send an e-mail without attachments?

    Try to access your e-mail account via web browser and try to send mail with attached photos and check the status.

    If you are able to send mail via webmail, no doubt the issue could be with the mail application.

    I suggest you to run the troubleshooter of app. The apps store is an automated tool that we have developed to deal with a number of known issues that may prevent applications from running correctly. This troubleshooting automatically solves some issues including the suboptimal screen resolution, incorrect security or account etc. settings. You can click this link to download and run the utility of troubleshooting Apps.

    http://download.Microsoft.com/download/F/2/4/F24D0C03-4181-4E5B-A23B-5C3A6B5974E3/apps.diagcab

    Please answer us on the State of the question as well as the information required to help you further.

  • photos of iCloud web application not updated

    Hello everyone.

    New in the universe Apple here so I'm still finding my way around. Almost no problems apart from a problem syncing my iCloud account and especially the Photos. Synchronization between my devices (IPhone 5 s, Macbook Pro 13 retina and also the iCloud for PC at work) works perfectly, which means that everything happens in my cloud, as they should. However the iCloud.com Photos app seems to be stuck in two weeks ago and guard showing the same message "update of 65 photos" without showing new photos or those updated the. Don't know if there is a way to reset the web application, as the rest of my sync seems to work very well.

    Clues?

    Thanks in advance,

    Mihalis

    The photos appear correctly on computers/devices?

    Try the settings/iCloud and remove the synchronization. Wait a few minutes and then resynchronize.

    Try to go into System Preferences/iCloud and stop synchronization. Wait a few minutes, then recheck the timing.

    Have you tried the signature to iCloud and then reconnect?

  • I can't send messages, whatsapp for group discussions and I think that is the update of ios software that is not compatible with my iphone 5 s

    I can't send messages, whatsapp for group discussions and I feel really lost. my friends can't receive my message and I am only able to send individual text messages. I think that its because of the version update of ios which is not compatible with my iphone 5 s. is a solution to this problem?

    I have the same problem, started this morning.

    I'm in iOS 9.1, using the iPhone 6. Don't know what happened, but I have also opened a disturbance with Whatsapp support as well.

    A focus group work, group chat messages cannot be delivered. Individual messages are working properly. I tried to remove and reinstall the application, remove the discussion group and recreate, all has not helped.

    A lack of ideas.

  • Deployment of Web Application reference problem

    Hello

    I am updating a web application, referencing several libraries of NOR and have experienced a problem with the version numbers of the references.  Using WebDeploy in Visual Studio, I can quickly the publication of this web application especially on our server.  I had no problem until I recently updated drivers OR on my development system.  When I try to load the Web page, I have the following error:

    The parser error

    Description: An error occurred during the parsing of a resource required to service this request. Check the specific error details of analysis following and modify your source file for appropriately.

    Parser error message: Could not load file or assembly 'NationalInstruments.Common, Version = 13.0.40.188, Culture = neutral, PublicKeyToken = dc6ad606294fc298' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0 x 80131040)

    Source file: /Pages/Summary.aspx Line: 39

    The Assembly Load Trace: The following information may be helpful to determine why the assembly ' NationalInstruments.Common, Version = 13.0.40.188, Culture = neutral, PublicKeyToken = dc6ad606294fc298 "could not be loaded.

    This error occurs when the LED element is trying to load.

    I think the problem is that the version number for the reference 'NationalInstruments.Common' does not have one installed on my development machine and the one referenced in the Web.config file.

    Here are the references in my Web.config file:

    
            
            
            
          
    

    I tried to simply change the version number in the Web.config file to match the 13.0.40.188 looking for the web application, but it does not work.  Would it be a bug in MStudio, or to the NationalInstruments.Common Library?  Is there a workaround solution that is known for this problem?

    I thank you very much for any assistance, you can provide!

    -Eric

    There should be a. You have two versions of visual studio is installed for two different versions of measurement studio. It looks like Measurement Studio for Visual Studio 20xx 20xx, and the place to check is Panel > add and remove software > right click of national instruments software.

    You can also just try to move one of them (version.188) GAC to another folder and run again. Let me know how it goes.

  • Deployment of Web Services has failed. Web applications server OR still load.

    I installed LabVIEW 2013 and I am trying to publish the web service. Every time I try, I see this message: "unable to Web Services deployment. The Server Web applications OR load again. »

    I don't know how to stop or complete this loading. I have reinstalled LabVIEW 2013, removed LV 2012 and other software. In addition, when I restart the 32-bit server, I have old web services installed. Even if I do not publish them, they appear after the transition to 64-bit-> 32-bit server.

    I will be grateful for your help.

    Peter

    Hi all

    It was a problem introduced with the new deployment of LabVIEW web services in 2013, specifically on laptops (classified as CAR 422680). It is fixed in the patch of f1 2013 LabVIEW. This patch is available for download here and you can get more information about the patches in the patch here. The patch will travel via Service Update OR later this month.

    Kind regards

    Jeff Peacock

    Product Support Engineer | LabVIEW R & D | National Instruments

  • Methods to transfer data of Service Web Application LV?

    What methods do people have found it more useful to transfer data Services Web of LabVIEW and their instance of the main application? I have a project using LV RT and I would like to be able to send data to the target RT via HTTP requests.

    I found surprisingly little information on the different available methods / best practices for this and there aren't something I tried to do before - I use mostly of Web Services for hosting of static content that uses my library WebSockets.

    These are the methods that I know:

    -Static Variables: the only information of OR , I could find on the way to proceed was to create two shared variables, one for the RT, one for the Web Service and alias them. It seems ridiculous and is useful for data "tag.

    - File: write data to a file within the web service and read out in the application. Therefore, the file/folder for querying data.

    - TCP/UDP: write a Manager TCP/UDP in the application that listens to incoming connections, then create the connection and send the data inside the web service VI.

    - Server of VI: I saw a presentation here that speaks using Server VI (slide 8), but when I tried to get a queue named within the VI (using the instance of the application open / open reference vi at the request on port 4000), I get error 1100 (no queue found with the same name) of the published web service It does not seem to complain about not being able to connect to the instance of the application. Executes the VI locally or from the debug server works. See the attached project (LV2013) for what I tried.

    So, the question is - why my VI Server method does not work when it should (according to this presentation, I couldn't find the examples mentioned) and what methods people have used and had success with? I was hoping that the last method would be to succeed because it means I can push data directly into an existing queue manager, would be a fairly light and medium solution, I wouldn't need to write a custom file manager / network.

    OK - after playing more - I had no wired 'localhost' to the instance of the application open VI I thought I passed by default to "localhost" rather than "this instance of the application. Then I got the "VI Server Access is denied" and added * to the exported VIs list and it worked.

    Always curious to hear other methods / thoughts / success though.

  • The computer will not send messages I type, but it receives messages correctly

    Original title: programs network networking Internet site Internet Site Web Web Site URL of the network

    the computer will not send messages I'm typing... but he recedives messages aok...

    Hey Keithkohrs,

    Usually, this means that outbound connections to the server are not properly Setup. Try contacting your email provider to ensure that your server settings are all correct. We can try to help you get the server settings appropriate if you let us know who provides your email address and what program you use as an email client.

    Hope that helps.

Maybe you are looking for