Unable to send message push on server

Greetings,

I managed get record (PIN) for my device id, but I stuck on the development server side, I hope someone could help me

I've followed these 3 references:

1. http://supportforums.blackberry.com/t5/BlackBerry-Push-Development/Problem-with-SEND-Push-Notificati...

2. http://supportforums.blackberry.com/t5/Android-Runtime-Development/Not-receiving-push-notification-o...

3. http://stackoverflow.com/questions/8472331/server-side-problemt-php-push-message-to-blackberry

But I do not get the result as expected, instead, I always have ERROR CODE 2000 like this:

Our PUSH-ID: 1401179949.8267

An error has occured
Error CODE: 2000
Error DESC: 2000

string(217) " "

The string (217) "" contains:


    

The code I am using:

        $appid = '4746-6135ee38Dm11ro8094c98i7900xxxxxxxxx';
        $password = 'xxxxxxxx';
        $boundary = "mPsbVQo0a68eIL3OAxnm";

        $deliverbefore = gmdate('Y-m-d\TH:i:s\Z', strtotime('+2 minutes'));
        //An array of address must be in PIN format or "push_all"
        $addresses = '';
        foreach ($registatoin_ids as $value) {
            $addresses .= '
'; } // Open connection $ch = curl_init(); $err = false; $messageid = microtime(true); $data = '--' . $boundary . "\r\n" . 'Content-Type: application/xml; charset=UTF-8' . "\r\n\r\n" . ' http://www.openmobilealliance.org/tech/DTD/pap_2.1.dtd"> ' . $addresses . ' ' . "\r\n" . '--' . $boundary . "\r\n" . // 'Content-Encoding: binary' . "\r\n" . 'Content-Type: text/plain' . "\r\n" . 'Push-Message-ID: ' . $messageid . "\r\n\r\n" . '{ "key":"value", "key2":"value2" }'. "\r\n" . '--' . $boundary . '--' . "\n\r"; $url = 'https://cp4746.pushapi.eval.blackberry.com/mss/PD_pushRequest'; // Set the url, number of POST vars, POST data curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_HEADER, false); curl_setopt($ch, CURLOPT_USERAGENT, "SAA push application"); curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1); curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC); curl_setopt($ch, CURLOPT_USERPWD, $appid . ':' . $password); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $data); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: multipart/related; boundary=" . $boundary . "; type=application/xml", "Accept: text/html", "Connection: keep-alive")); // grab URL and pass it to the browser $xmldata = curl_exec($ch); // close cURL resource, and free up system resources curl_close($ch); //Start parsing response into XML data that we can read and output $p = xml_parser_create(); xml_parse_into_struct($p, $xmldata, $vals); $errorcode = xml_get_error_code($p); if ($errorcode > 0) { $err = true; } xml_parser_free($p); echo 'Our PUSH-ID: '.$messageid . "
\n"; if (!$err && $vals[1]['tag'] == 'PUSH-RESPONSE') { echo 'PUSH-ID: ' . $vals[1]['attributes']['PUSH-ID'] . "
\n"; echo 'REPLY-TIME: ' . $vals[1]['attributes']['REPLY-TIME'] . "
\n"; echo 'Response CODE: ' . $vals[2]['attributes']['CODE'] . "
\n"; echo 'Response DESC: ' . $vals[2]['attributes']['DESC'] . "
\n"; } elseif ($err) { echo '

An XML parser error has occured

' . "\n"; echo '
' . xml_error_string($errorcode) ."
\n » ; echo '

Response

' . "\n"; echo '
' . $xmldata . '
' . "\n"; } else {echo '}

An error has occurred

' . "\n"; echo ' fault CODE: '. $vals [1] ['attributes'] ['CODE']. "
\n » ; echo ' error DESC: '. $vals [1] ['attributes'] ['DESC']. "
\n » ; echo '
' . $xmldata . '
' . "\n"; var_dump ($XMLDATA); } var_dump ($vals); Return $xmldata;

where record id, I get is already a correct form without the prefix, which only hurts?

I finally found the right answer for me, from here:

http://supportforums.BlackBerry.com/T5/BlackBerry-push-development/BB-bis-push-PHP-Server-works-on-p...

Marcboo thanks for the reply.

And then I change the code below

stripslashes($message)

TO:

json_encode($message)

Complete code below, with the necessary adaptations:

';
            }

            // create a new cURL resource
            $err = false;
            $ch = curl_init();
            $messageid = microtime(true);

            $data = '--asdwewe'. "\r\n" .
            'Content-Type: application/xml; charset=UTF-8' . "\r\n\r\n" .
            '
            http://www.openmobilealliance.org/tech/DTD/pap_2.1.dtd">
            
            '
            . $addresses .
            '
            
            ' . "\r\n" .
            '--asdwewe' . "\r\n" .
            'Content-Type: application/json' . "\r\n" .
                    //'Content-Encoding: binary'. "\r\n" .
            'Push-Message-ID: ' . $messageid . "\r\n\r\n" .
            json_encode($message) . "\r\n" .
            '--asdwewe--' . "\r\n";

            // set URL and other appropriate options
            curl_setopt($ch, CURLOPT_URL, "https://pushapi.eval.blackberry.com/mss/PD_pushRequest");
                curl_setopt($ch, CURLOPT_PORT , 443);
                curl_setopt($ch, CURLOPT_SSLVERSION, 3);
                curl_setopt($ch, CURLOPT_CAINFO, getcwd()."\cacert.pem");
                curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

            curl_setopt($ch, CURLOPT_HEADER, false);
            curl_setopt($ch, CURLOPT_USERAGENT, "My BB Push Server\1.0");
            curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
            curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
            curl_setopt($ch, CURLOPT_USERPWD, $appid . ':' . $password);
            curl_setopt($ch, CURLOPT_POST, 1);
            curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
            curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

            $__extra_Headers = array(
                "Content-Type: multipart/related; boundary=asdwewe; type=application/xml",
                "Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2",
                "Connection: keep-alive",
                "X-Rim-Push-Dest-Port: ".$appport,
                "X-RIM-PUSH-ID: ".$messageid,
                "X-RIM-Push-Reliability-Mode: APPLICATION"
            );
            curl_setopt($ch, CURLOPT_HTTPHEADER, $__extra_Headers);

            // grab URL and pass it to the browser
            $xmldata = curl_exec($ch);
            if($xmldata === false){
                echo 'Error pada CURL : ' . curl_error($ch)."\n";
            }else{
                echo 'Operasi push berhasil'."\n";
            }

            // close cURL resource, and free up system resources
            curl_close($ch);

            //Start parsing response into XML data that we can read and output
            $p = xml_parser_create();
            xml_parse_into_struct($p, $xmldata, $vals);
            $errorcode = xml_get_error_code($p);
            if ($errorcode > 0) {
                echo xml_error_string($errorcode)."\n";
                $err = true;
            }
            xml_parser_free($p);

            echo 'Our PUSH-ID: ' . $messageid . "
\n"; if (!$err && $vals[1]['tag'] == 'PUSH-RESPONSE') { echo 'PUSH-ID: ' . $vals[1]['attributes']['PUSH-ID'] . "
\n"; echo 'REPLY-TIME: ' . $vals[1]['attributes']['REPLY-TIME'] . "
\n"; echo 'Response CODE: ' . $vals[2]['attributes']['CODE'] . "
\n"; echo 'Response DESC: ' . $vals[2]['attributes']['DESC'] . "
\n"; } else { echo '

An error has occured

' . "\n"; echo 'Error CODE: ' . $vals[1]['attributes']['CODE'] . "
\n"; echo 'Error DESC: ' . $vals[1]['attributes']['DESC'] . "
\n"; } } catch (Exception $e) { var_dump($e->getMessage()); } exit(); } } ?>

See you soon

Tags: BlackBerry Developers

Similar Questions

  • Send message push from Server

    I'm looking to integrate the push RIM with our server service.

    I found the code that sends an HTTP POST message to a MDS connection service.  It's simple I can add via our java servlets.

    My question is that I have a MDS connection service installed on my server or RIM provides a server url, we can use for our push messages.

    We are Member of isv blackberry.

    Thank you.

    as a member of the alliance, you can inquire about the push to bis. Ask your representative to the alliance on this issue.

    for bes-push, you need an own bes + mds.

  • Your message has not been sent because there is a daily limit of message. Unable to send messages from this account until tomorrow, or what this account is checked.

    Your message has not been sent because there is a daily limit of message. Unable to send messages from this account until tomorrow, or what this account is checked.

    Object 'of family trust of Smart Fortunes - Lucespace"
    Server error: 3210
    Windows Live Mail error ID: 0x8DE00006

    How to check my account to allow me to send emails, because these are payroll cards and I need to send them the same day?

    Concerning

    Susan Dooley

    Contact Lucespace.

  • 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.

  • Unable to send message AT & T - does not connect to the server. Anyone else having this problem?

    All of a sudden I can't send messages on my AT & T account. I get a message that Thunderbird cannot connect to the server (SMTP). Called at & T and they checked all the settings. I can access my email account on Apple Mail and Yahoo (AT & T email provider), and yet I can not send messages on Thunderbird. I can receive but not send.

    I tried deleting the account and the recovery, but that has not helped. Does anyone else have this problem?

    Christ1,

    Thanks for the tips.

    Even set up a new account did not work. Despite AT & you s claim that it was not a problem with their servers and taking me through a number of measures to ensure what was the origin of the problem, he as magically disappeared as soon he came a few hours after all the machinations. So, still do not know what caused it, but it disappeared.

  • Unable to send messages after the accident, the solutions proposed did not.

    Tuesday (April 7), there was an update to 31.6. Thursday, there was an accident. Since that time cannot send messages. The proposed solutions did not work.

    I get the message that the SMTP server does not support the selected authentication.
    I tried the solution mentioned. But nothing helped. I configured the server out on the different types and remove the password as shown. After that, I did the configuration with different types of Setup again. No solution.
    There is not a possibility of webmail. So I'm stuck now.

    There is no problem with incoming messages, they come. This password should be deleted also?

    Any help would be greatly appreciated.

    Greetings,
    AZ58.

    Good. You can then mark the thread as "Solved" Please?
    Thank you.

  • Help! Unable to send message in Windows Live Mail.

    Hello, when I try to send a message, I get - "the message could not be sent. There was a problem. Please try again. "I tried again, several times, nothing is.  I recently deleted a bunch of search folders search items, I wonder if that's the problem.  If this is the case, how can I put right. Thank you.

    Hello

    That you are unable to send e-mails, consult this link suggestions.


    Solve problems with Windows Mail

    http://Windows.Microsoft.com/en-in/Windows-Vista/troubleshoot-problems-with-Windows-Mail

    If the problem persists, I suggest that you reconfigure your account in Windows Live Mail.

    Please follow the steps on this article below.
    How to set up a Windows Live Hotmail account in Windows Live Mail
    Note: to reconfigure the account, you must first delete the email, then add.

    I hope this helps.

  • Windows Live Messenger - Contact list all offline, unable to send messages.

    Loading after a system crash which ended up changing my date somehow to 2084 (don't ask me how), after have everything fixed with that, all of a sudden MSN list of this computer is showing that all in offline and get error messages trying to send messages. I completely uninstalled WLE 2011 package and installed an older version of MSN and it seemed to work fine. I use the webmail and it also works very well. But re-update for the full package of WLE 2011, Messenger is to show everyone offline.

    Hello

    they will help you with your questions/problems Messenger when repost you the link below in the Messenger forums

    http://windowslivehelp.com/product.aspx?ProductID=2

  • Unable to send mail via exchange server with Version 38.0.1 - password problems

    Last week, when my computer desktop auto-upgraded to 38.0.1, he lost the ability to send mail with SMTP. (It always returns an error message saying that the password is not recognized). I went around and with the administration of the server, and they are sure that the problem is on my end. All server settings are correct, according to the administration of the server and, in any case, I do not change them what has worked with earlier versions of this morning, I finally had to restart Thunderbird on my home computer. I tested the Version 31 immediately before restart - it worked. Then I tried the Version 38.0.1 immediately after the restart, - it did not work.

    I have disabled the firewall on the computer, but it made no difference. Both computers running all Windows 64-bit both 8.1; they have two different firewalls.

    I pasted in the troubleshooting information in Thunderbird below.

    Thank you
    The f

     Application Basics
    
       Name: Thunderbird
       Version: 38.0.1
       User Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.0.1
       Profile Folder: Show Folder
    
                 (Local drive)
       Application Build ID: 20150608103712
       Enabled Plugins: about:plugins
       Build Configuration: about:buildconfig
       Memory Use: about:memory
    
     Mail and News Accounts
       account1:
         INCOMING: account1, , (imap) mail.okstate.edu:143, alwaysSTARTTLS, NTLM
         OUTGOING: smtp.okstate.edu:587, alwaysSTARTTLS, NTLM, true
    
       account2:
         INCOMING: account2, , (none) Local Folders, plain, passwordCleartext
    
     Crash Reports
    
     Extensions
    
     Important Modified Preferences
    
       Name: Value
    
         accessibility.typeaheadfind.flashBar: 0
         browser.cache.disk.capacity: 358400
         browser.cache.disk.smart_size_cached_value: 358400
         browser.cache.disk.smart_size.first_run: false
         browser.cache.disk.smart_size.use_old_max: false
         extensions.lastAppVersion: 38.0.1
         font.internaluseonly.changed: true
         font.name.monospace.el: Consolas
         font.name.monospace.tr: Consolas
         font.name.monospace.x-baltic: Consolas
         font.name.monospace.x-central-euro: Consolas
         font.name.monospace.x-cyrillic: Consolas
         font.name.monospace.x-unicode: Consolas
         font.name.monospace.x-western: Consolas
         font.name.sans-serif.el: Calibri
         font.name.sans-serif.tr: Calibri
         font.name.sans-serif.x-baltic: Calibri
         font.name.sans-serif.x-central-euro: Calibri
         font.name.sans-serif.x-cyrillic: Calibri
         font.name.sans-serif.x-unicode: Calibri
         font.name.sans-serif.x-western: Calibri
         font.name.serif.el: Cambria
         font.name.serif.tr: Cambria
         font.name.serif.x-baltic: Cambria
         font.name.serif.x-central-euro: Cambria
         font.name.serif.x-cyrillic: Cambria
         font.name.serif.x-unicode: Cambria
         font.name.serif.x-western: Cambria
         font.size.fixed.el: 14
         font.size.fixed.tr: 14
         font.size.fixed.x-baltic: 14
         font.size.fixed.x-central-euro: 14
         font.size.fixed.x-cyrillic: 14
         font.size.fixed.x-unicode: 14
         font.size.fixed.x-western: 14
         font.size.variable.el: 17
         font.size.variable.tr: 17
         font.size.variable.x-baltic: 17
         font.size.variable.x-central-euro: 17
         font.size.variable.x-cyrillic: 17
         font.size.variable.x-unicode: 17
         font.size.variable.x-western: 17
         gfx.direct3d.last_used_feature_level_idx: 0
         mail.openMessageBehavior.version: 1
         mail.winsearch.firstRunDone: true
         mailnews.database.global.datastore.id: 07443412-ffcd-4d2f-998d-7cb7d9fb13f
         network.cookie.prefsMigrated: true
         network.predictor.cleaned-up: true
         places.database.lastMaintenance: 1434665793
         places.history.expiration.transient_current_max_pages: 104858
         plugin.importedState: true
         print.printer_Samsung_C460_Series.print_bgcolor: false
         print.printer_Samsung_C460_Series.print_bgimages: false
         print.printer_Samsung_C460_Series.print_colorspace:
         print.printer_Samsung_C460_Series.print_command:
         print.printer_Samsung_C460_Series.print_downloadfonts: false
         print.printer_Samsung_C460_Series.print_duplex: 219172716
         print.printer_Samsung_C460_Series.print_edge_bottom: 0
         print.printer_Samsung_C460_Series.print_edge_left: 0
         print.printer_Samsung_C460_Series.print_edge_right: 0
         print.printer_Samsung_C460_Series.print_edge_top: 0
         print.printer_Samsung_C460_Series.print_evenpages: true
         print.printer_Samsung_C460_Series.print_footercenter:
         print.printer_Samsung_C460_Series.print_footerleft: &PT
         print.printer_Samsung_C460_Series.print_footerright: &D
         print.printer_Samsung_C460_Series.print_headercenter:
         print.printer_Samsung_C460_Series.print_headerleft: &T
         print.printer_Samsung_C460_Series.print_headerright: &U
         print.printer_Samsung_C460_Series.print_in_color: true
         print.printer_Samsung_C460_Series.print_margin_bottom: 0.5
         print.printer_Samsung_C460_Series.print_margin_left: 0.5
         print.printer_Samsung_C460_Series.print_margin_right: 0.5
         print.printer_Samsung_C460_Series.print_margin_top: 0.5
         print.printer_Samsung_C460_Series.print_oddpages: true
         print.printer_Samsung_C460_Series.print_orientation: 0
         print.printer_Samsung_C460_Series.print_page_delay: 50
         print.printer_Samsung_C460_Series.print_paper_data: 1
         print.printer_Samsung_C460_Series.print_paper_height: 11.00
         print.printer_Samsung_C460_Series.print_paper_name:
         print.printer_Samsung_C460_Series.print_paper_size_type: 0
         print.printer_Samsung_C460_Series.print_paper_size_unit: 0
         print.printer_Samsung_C460_Series.print_paper_width: 8.50
         print.printer_Samsung_C460_Series.print_plex_name:
         print.printer_Samsung_C460_Series.print_resolution: 219172664
         print.printer_Samsung_C460_Series.print_resolution_name:
         print.printer_Samsung_C460_Series.print_reversed: false
         print.printer_Samsung_C460_Series.print_scaling: 1.00
         print.printer_Samsung_C460_Series.print_shrink_to_fit: true
         print.printer_Samsung_C460_Series.print_to_file: false
         print.printer_Samsung_C460_Series.print_unwriteable_margin_bottom: 0
         print.printer_Samsung_C460_Series.print_unwriteable_margin_left: 0
         print.printer_Samsung_C460_Series.print_unwriteable_margin_right: 0
         print.printer_Samsung_C460_Series.print_unwriteable_margin_top: 0
    
     Graphics
    
         Adapter Description: Intel(R) HD Graphics 4000
         Vendor ID: 0x8086
         Device ID: 0x0166
         Adapter RAM: Unknown
         Adapter Drivers: igdumdim64 igd10iumd64 igd10iumd64 igdumdim32 igd10iumd32 igd10iumd32
         Driver Version: 10.18.10.3621
         Driver Date: 5-16-2014
         Direct2D Enabled: true
         DirectWrite Enabled: true (6.3.9600.17795)
         ClearType Parameters: ClearType parameters not found
         WebGL Renderer: false
         GPU Accelerated Windows: 2/2 Direct3D 11
    
         AzureCanvasBackend: direct2d 1.1
         AzureSkiaAccelerated: 0
         AzureFallbackCanvasBackend: cairo
         AzureContentBackend: direct2d 1.1
    
     JavaScript
    
     Incremental GC: 1
    
     Accessibility
    
       Activated: 1
       Prevent Accessibility: 0
    
     Library Versions
    
         Expected minimum version
         Version in use
    
         NSPR
         4.10.8
         4.10.8
    
         NSS
         3.18.1 Basic ECC
         3.18.1 Basic ECC
    
         NSS Util
         3.18.1
         3.18.1
    
         NSS SSL
         3.18.1 Basic ECC
         3.18.1 Basic ECC
    
         NSS S/MIME
         3.18.1 Basic ECC
         3.18.1 Basic ECC
    

    or set true network.auth.force - generic-ntlm-v1 (under preferences |) Advanced | General | Configuration editor)

  • Unable to send mail via SMTP Server authenticated using UTL_MAIL

    Hello world...

    I tried to send an e-mail message using UTL_MAIL on Oracle 10 g (10.2.0.1.0), but get the error:

    ORA-29279: permanent SMTP error: 550 must be authenticated

    I have run utlmail.sql and prvtmail.plb connected in SYSDBA and set SMTP_OUT_SERVER.

    We have recently changed our email provider and a new requires authentication for the outgoing SMTP server, where the message that I get, but so far I have not found something on how to send the user name password to the procedure of 'send', in documentation or in previous discussions or other resources.

    Could someone help me solve this problem?

    Thanks in advance.

    Not possible using UTL_MAIL, but if you roll your own using UTL_SMTP (which is what UTL_MAIL is written on the top) you can use the code fragment in Metalink Note 201639.1 to connect to a SMTP server using AUTH LOGIN.

  • Unable to send Message of MBA

    Sporadically, I can't send a Message from my MacBook Air.  The progress bar will go about 90% of the way and then just stop.  Soon, I get an error message that says that the message was not delivered.  Sometimes the message is delivered after 10-20 minutes.  Also, why some messages in different colors (blue v green)?  Can someone help me please?

    Hello

    If it isn't the iPhone go to settings > Messages and check the settings.

    By activating the App, it will attempt to send the iMessages to the numbers of the iPhone and Apple ID (blue sends).

    If you send it as SMS as well active it will send SMS to phone not Apple (and numbers for the iPhone not registered for iMessages). These will be green sends.

    If you configure Messages on the Mac, you enter an Apple ID in the iMessages implemented.

    If this ID is added to the version of the iPhone both are related and iMessages sent to each (number or ID) appears on the other.

    With an iPhone using at least iOS 8 and a Mac using at least Yosemite (your listing seems obsolete), then you can also choose to 'text Forwarding. "

    It takes the iPhone to connect to the local network the Mac is on and use the same identifier as shown Apple previously.

    Then enable this will cause the Mac version to show a code number which should be entered on the iPhone.

    Then the iPhone will send SMS for Mac messages and leave SMS messages to be sent from the Mac via the LAN for the iPhone which then sends them through your carrier.

    Basically, the iPhone uses two services - the carrier phone and SMS service and the service of local network via WiFi.

    iMessages on the iPhone will attempt a first LAN (because there is WiFi and faster) then it will try the service from the carrier.

    It comes to 4G to high, 3G down to things like GPRS and Edge. Some are too slow to iMessages and will be used with SMS instead.

    I work in a relatively large warehouse that has poor coverage of carrier and also has gaps in the WiFi service (or at least my iPhone thinks that Yes) if sometimes I can be sent messages green and sometimes blue as it passes from one to the other.

    Looks like you're talking about your iPhone and many things can affect the carrier service.

    21:26 Sunday. 13 December 2015

     iMac 2.5 Ghz i5 2011 (Mavericks) 10.9
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro (Snow Leopard 10.6.8) 2 GB
     Mac OS X (10.6.8).
     a few iPhones and an iPad

  • my window vista sp2 stop sending messages for the server http for e-mail hotmail from July 2010. What other opion should I now? I use window 8. my mother was the first owner of this laptop.

    My lap top is a window vista premium 6.0 sp2. so, as I believe that in July 2010 my connection email expired with the sp2 from window to the server with http hotmail .com I was trying out an important e-mail to a certain Department of the army and he was ejected back because of my direct window a stopover for hotmail http sites. So, what's my next step? This laptop that I use now for academic use belonging to my mother. I was'nt sure of what to click on in the troubleshooting list. Thks.

    Are what the hell you referring in Windows 8?

    Submit all Hotmail queries on the forum right here:

    Windows Live Solution Center
    http://windowslivehelp.com/

  • Cannot send emails. Message says "sending message failed because the connection to the server outgoing (SMTP) has expired. Is the fault with Thunderbird or BT?

    Cannot send emails. Message says "unable to send message because the connection to the outgoing (SMTP) server has expired." By default the SMTP seems correct. Any ideas how to solve this problem?

    Oh, we still think. Using anti-virus software? It scans your outgoing messages? Try to turn off the power; It can slow down transmission in order to trigger a timeout on the server.

  • send messages to anroids

    I've recently updated to 10.0.02 and unable to send messages to users who have Android?  I have an iphone 5 c

    Hi Dina61,

    Thank you for using communities of Apple Support.

    I see that you have just upgraded to iOS 10.0.2, and you are unable to send messages to users who have Android phones. I guess certainly let that stop you to communicate with people, so I want to assure you that I help you get this problem is resolved.

    Please go to settings > Messages > Send as SMS. Make sure that it is switched on (green). If it is already on, turn off and turn on/off and then on again.

    Once you have done this, please test by sending a message to a user of Android and see if you get the same result.

    For more information, see: iMessage and SMS/MMS

    Have an amazing day!

  • KB981852 is a problem in windows mail, mail fails specifically send messages with URLs.

    Mail is unable to send messages that contain an embedded URL.  It returns an error message: the system Cox.net

    Ox800CCC0F

    I suspect KB981852 nor any other update released this week has nothing to do with the error 0x800CCC0F.

    Why you don't need your anti-virus to scan your email
    http://thundercloud.NET/infoave/tutorials/email-scanning/index.htm

    Disable e-mail scanning in your antivirus application.  It offers no additional protection, it may be the cause of the problem, and even Symantec said that it is not necessary:


    Disable e-mail analysis won't let you without protection against viruses that are distributed as attachments to email. Norton AntiVirus Auto-Protect scans incoming files as they are saved on your hard drive, email and attachments to emails. Scan to email is just another layer on top of that. To make sure that Auto-Protect provides maximum protection, keep active Auto-Protect and run LiveUpdate regularly to ensure that you have the most recent virus definitions.

    http://Service1.Symantec.com/support/NAV.nsf/docid/2002111812533106

    ~~~~~~~~~~~~~~~~~~~~~~~~

    You will find ongoing support for Windows Mail in this forum: http://social.answers.microsoft.com/Forums/en-US/vistanetworking/threads

    Please take note of it.

    ~ Robear Dyer (PA Bear) ~ MS MVP (that is to say, mail, security, Windows & Update Services) since 2002 ~ WARNING: MS MVPs represent or work for Microsoft

Maybe you are looking for