Contact goes offline after sending message

When i send a massage to a contact they go offline then comes back on every time and does not show everyone online takes like 5 mins to see everyone online now my contacts are not even coming online just one is

as a guess, try using one Bluetooth at the time (power off other devices), see if it makes any difference

Similar Messages

  • I have 2 hotmail accounts. They worked fine the first month or so, now about 20 seconds after I sign on, it goes to an send message screen but I cannot send. When I go back to inbox, it resets to the send screen again. HELP.

    I have 2 hotmail accounts. They worked fine the first month or so, now about 20 seconds after I sign on, it goes to an send message screen but I cannot send. When I go back to inbox, it resets to the send screen again. HELP.

    Here you can see how you can setup your Hotmail accounts in the Mail App on the iPad; http://convert-dvd-ipad.com/dvdipad/setup-hotmail-microsoft-exchange-ipad-2/

  • My spotify goes offline after 2 songs!!!! :-(

    I have a Galaxy S5 on Verizon and my spotify goes offline after literally 2 songs play. I close out the app through task manager and reopen. It plays 2 songs, then goes offline. My network is 4G and full signal with no loss fluctuations.

    Try restoring your iPod

  • Printer goes offline after printing

    Hello, I have an HP Laserjet Pro MFP M476DW used wireless, which worked fine until the upgrade to Yosemite 10.10.2. Now go offline after you have printed a copy and must be turned off and on for printing. And then press the last thing in the print queue and then goes back online. I uninstalled / reinstalled updated drivers etc but the problem persists. Can anyone advise please?
    Thank you, Emanuele.

    If you haven't done so already, try resetting the printing system.
    OS X Mavericks: Reset the printing system  also Yosemite

  • Creating a QueueReceiver after sending message to the QueueSender

              Hi,
              I'm implementing a blocking system, sending messages to a JMS Queue.
              In a servlet, in the init method, I'm creating the QueueSender object.
              When calling the servlet, in the service method, if I need to create a new
              message to let users know
              that one primary key is blocked, I create a message with a:
                   msg.setStringProperty("MyTablePrimaryKey", "PKValue");
              Then, I send it.
              If other clients want to update that record, he creates in the servlet's service
              a QueueBrowser like this:
              QueueBrowser receptor=qsession.createBrowser (myQueue, strFilter);
              where strFilter is "MyPrimaryKey IS NOT NULL".
              If the enumeration my QueueBrowser returns hasMoreElements(), the record is
              blocked.
              To unblock a record, I fetch the message from QueueBrowser with the with Enumeration.nextElement,
              and I set:
              message.setJMSExpiration(1);
              so the message is automatically deleted from the queue.
              I tried to use QueueReceiver to implement it, but as I don't know the filter's
              name in the init method of my servlet,
              it's not possible to read messages if the QueueReceiver is created after having
              sent those messages.
              Is my implementation correct? Is the behaviour of QueueReceiver logical?
              Of course, I'm thinking of doing all these things in EJBs to use transactions
              with JTA and JMS. Can be any problem
              with it?
              Sorry for the long question, but I've started discovering JMS a few hours
              ago, and it looks so interesting... :-)
              Best Regards,
              Ignacio
              

              Ignacio Sanchez wrote:
              > Tom Barnes <[email protected]> wrote:
              >
              >>
              >>Ignacio Sanchez wrote:
              >>
              >>>Hi,
              >>>
              >>> I'm implementing a blocking system, sending messages to a JMS Queue.
              >>>
              >>> In a servlet, in the init method, I'm creating the QueueSender
              >>
              >>object.
              >>
              >>> When calling the servlet, in the service method, if I need to create
              >>
              >>a new
              >>
              >>>message to let users know
              >>>that one primary key is blocked, I create a message with a:
              >>>     msg.setStringProperty("MyTablePrimaryKey", "PKValue");
              >>> Then, I send it.
              >>>
              >>> If other clients want to update that record, he creates in the
              >>
              >>servlet's service
              >>
              >>>a QueueBrowser like this:
              >>> QueueBrowser receptor=qsession.createBrowser (myQueue, strFilter);
              >>> where strFilter is "MyPrimaryKey IS NOT NULL".
              >>> If the enumeration my QueueBrowser returns hasMoreElements(), the
              >>
              >>record is
              >>
              >>>blocked.
              >>
              >>
              >>How? The QueueBrowser supplies a snap-shot of the queue, it doesn't
              >>prevent other receivers and queue-browsers from seeing the message.
              >>
              >
              >
              > That's exactly what I want. I want concurrent queue-browsers to see the same message.
              >
              >
              >>>
              >>> To unblock a record, I fetch the message from QueueBrowser with
              >>
              >>the with Enumeration.nextElement,
              >>
              >>>and I set:
              >>
              >>> message.setJMSExpiration(1);
              >>> so the message is automatically deleted from the queue.
              >>
              >>
              >>This will have no effect. Expiration can only be set when the message
              >>is sent, and only via the producer API not the message API. The message
              >>API setter is not intended for application use (see the
              >>javax.jms.Message javadoc). To delete the message you can
              >>create a QueueReceiver with a selector based on the message's
              >>message-id, then receive and acknowledge the message.
              >>
              >
              >
              > But it works!! I've tested once and again and it works fine for me. Shouldn't
              > it???
              >
              Gah!! This behavior is not supported. Do not depend on it to
              be there in future releases or SPs. Any changes to an already
              sent message by a client should propagate to the copy that
              is on the server.
              In fact, I think this may have already been fixed. Can you
              tell me which release and SP you are using?
              >>>
              >>> I tried to use QueueReceiver to implement it, but as I don't know
              >>
              >>the filter's
              >>
              >>>name in the init method of my servlet,
              >>> it's not possible to read messages if the QueueReceiver is created
              >>
              >>after having
              >>
              >>>sent those messages.
              >>
              >>I don't understand. If you can create the QueueBrowser when you
              >>need it, why can't you just create a QueueReceiver with a new selector?
              >
              > If I create a new QueueReceiver after having sent the message using a QueueSender,
              > the
              > receiver cannot read the messages already posted, even in selector is OK. But
              > it works with
              > a QueueBrowser ¿¿??¿¿
              If a QueueBrowser can see the message so should a QueueReceiver. They
              both use the same filter/selector mechanism. It is surprising
              that one worked and the other didn't. Or are you referring to
              the normal behavior that only one QueueReceiver can "see" the message
              at a time? And that once a QueueReceiver has a message the
              QueueBrowser will not "see" it?
              > That's why I'm using QueueBrowser and not QueueReceiver.
              >
              >
              >>>
              >>> Is my implementation correct? Is the behaviour of QueueReceiver
              >>
              >>logical?
              >>
              >>>
              >>> Of course, I'm thinking of doing all these things in EJBs to use
              >>
              >>transactions
              >>
              >>>with JTA and JMS. Can be any problem
              >>> with it?
              >>>
              >>> Sorry for the long question, but I've started discovering JMS a
              >>
              >>few hours
              >>
              >>>ago, and it looks so interesting... :-)
              >>>
              >>> Best Regards,
              >>> Ignacio
              >>
              >
              

  • MaxDB going offline after log recover

    Hello,
    I've got a problem with my standby instance. I would like to import data into standby instance from autolog files generated by master instance. I am trying to use dbmcli tool + its utility session.
    My problem is, that after data recovery my database instance going offline. Is it normal behavior of MaxDB 7.5?

    Hello Konrad ,
    Please update with additional information:
    -> What are the versions of the source & target database instances?
    -> Please update with outputs of the following commands:
    dbmcli -s db_enum
    Dbmcli -s inst_enum
    -> Are you SAP customer?
    -> "My problem is, that after data recovery my database instance going offline. Is it normal behavior of MaxDB 7.5?"
    I think that there are some problems with the procedure steps you was running…
    Please update with your script or dbmcli commands you was executed.
    Please check the errors in knldiag file in the target database Rundirectory.
    ->Did you try?
    Create the databackup medium DataCompl_recover pointed to the databackup of the source database.
    Transfer the database instance to the ADMIN operational state:
    Dbmcli -d <TargetDB> -u <DBM>,<dbm>
    dbmcli on <TargetDB> >db_admin
    OK
    dbmcli on <TargetDB> >db_connect
    OK
    <Import the complete data backup from source to <TargetDB>  (initializing <TargetDB>  using the
    backup medium DataCompl_recover created for <TargetDB> >
    dbmcli on <TargetDB> >db_activate RECOVER DataCompl_recover
    dbmcli on <TargetDB> >db_state
    Please review the documetation with examples at
    < "Replication and High Availability" -> Standby Database ::
    http://maxdb.sap.com/currentdoc/72/7ed43fb9490c65e10000000a114b1d/content.htm
    db_activate ::
    http://maxdb.sap.com/currentdoc/91/1a74d35cad11d4aa1500a0c9430730/content.htm
    db_activate RECOVER ::
    http://maxdb.sap.com/currentdoc/2f/40d93fac0fec06e10000000a1550b0/content.htm >
    If you are using DBMGUI tool, please update the DBMGUI as pro SAP note 386714.
    If you are using dbmcli tool, please review information at link:
    http://maxdb.sap.com/currentdoc/87/dba841c0dae234e10000000a1550b0/content.htm
    >
    Thank you and best regards, Natalia Khlopina

  • Mail will not quit after sending message with attachment

    B&W G3-450
    OSX 10.2.8
    640 MB RAM
    I recently switched to using an email account through AOL Instant Messenger (AIM.com). The only way to connect to their service is via IMAP. I have all the correct settings, I can send and receive email no problem.
    However, when I attempt to send a message that contains an attachment (.zip, jpeg, anything) the email will send just find. The problem is when I try to quit mail it wont' respond. I can continue to send or receive after sending the message but it will not quit. Trying to log out does not work either as it reports a problem with Mail that prevents closing the session. The only thing I can do is force quit mail.
    The next time I use mail it works fine and there are no problems. The only issue seems to be this hanging problem. I've never experienced this problem using POP3 accounts.
    Any suggestions?
    B&W G3-450   Mac OS X (10.2.x)  

    Does anyone have a suggestion here?

  • N6030 Searching for contact by name to send messag...

    I used to be able to search for the contact by name to send a message. Now a 123 icon appears top left and the keypad only accepts numbers for the search. Any ideas about how to turn it back to letters? Thanks in anticipation for your help.

    Too bad. On S60 based phones it switches between numeric (123) and text (Abc) entry formats in the To: field of the message editor.
    Message Edited by petrib on 16-Nov-2006
    10:04 PM

  • HP Photosmart Plus B209a-m wireless goes offline after system is shutdown

    I am using the HP Photosmart Plus B209a-m on a Dell XPS 16 with Windows 7 64bit. I have setup the printer to connect to the Belkin wireless router so it is on the network. I have setup the printer numerous times and had it working over wireless many times. After the PC is shutdown the printer goes offline. I have to rerun setup over and over again to bring wireless back online. I added the MAC address to the Belkin router, and I have the device trusted in my Norton Firewall. I keep seeing "HP Network Support Automatic (Delayed Start)" in services, but changing it does not seem to make any difference I still need to rerun setup again after the system is shutdown. I am also seeing two printer icons in Devices and Printers. One is just the Photosmart Printer with a generic printer icon; and the second is Photosmart Printer, Scanner, Copier with a picture of the Photosmart which I believe it should be. I have run the setup at least 10 times, and I keep getting a good working wireless system then after the machine is shutdown for the day the printer goes offline and will not print again. How can I prevent the printer from going offline in wireless mode?  
    This question was solved.
    View Solution.

    Setting a static IP address may help this issue:
    - Print a Network Config Page from the front of the printer. Note the printer's IP address.
    - Type that IP address into a browser to reveal the printer's internal settings.
    - Choose the Networking tab, then Wireless along the left side, then the IPv4 tab.
    - On this screen you want to set a Manual IP. You need to set an IP address outside the range that the router automatically sets (called the DHCP range). If you know what that is, set an IP outside that range but no higher than 254 (the last number in the address). If you do not know this, enter the current IP address.
    - Use 255.255.255.0 for the subnet (unless you know it is different, if so, use that)
    - Leave the gateway and DNS blank. Click 'Apply
    Now, shut down the router and printer, start the router, wait, then start the printer.
    After this you may need to redo 'Add a Printer' using the new IP address.
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP

  • Printer goes offline after reboot (windows vista)

    I'm running the latest version of bonjour for windows and vista is running the latest patches. Here's the problem: I can use bonjour to add my HP Laserjet with no problems and its prints perfectly. All is good until I need to restart the computer. After reboot, the printer is listed as offline and nothing I've tried can change the status. I can delete the printer and rerun bonjour and it works again until the next reboot. I don't know what changed but I use to be able to print all the time without this problem. Anyone have this problem or any solutions.
    Thanks

    Same problem with here, except I've got three computers: one Mac and two WinXP (SP3) pc's. The mac has no problems but both PC's see my Canon PIXMA ip1800 as offline after they reboot. A re-run of the Bonjour setup fixes the problem until the next reboot. I've got the printer connected to an Airport Extreme Gigabit N base station. All software and firmware (on everything) is up to date. Any help would be appreciated.

  • HP Printer goes offline after software update!@

    I'm having trouble with printer going offline on two of my computers:
    (imac 9,1 & 2014 macbook air)
    Printer: HP officejet 8500a Plus
    I repaired the permissions on both hard drives to see if it was a cups/communication issue and deleted and reinstalled the software/printer.
    This is really frustrating! any help or insight would be appreciated... I don't feel like code hunting tonight...
    thanks
    lk

    HP claims that model is Yosemite compatible
    http://support.hp.com/us-en/document/c04473034
    Try creating a new user with admin rights, log into that new account and reinstall the software and try printing from that account.

  • Adobe Muse Contact Form is not sending messages

    Hi, I have a website live, created with Muse CC and hosted on Adobe Business Catalyst. The domain used is from GoDaddy. I have made a contact form and have linked 3 different emails to the form to receive inputed messages.  I have tried many times to send info using the contact form, testing to see if it would send to any of my emails. I have not been able to receive any messages so far and have even looked in the spam and junk folders on all 3 email accounts(yahoo, gmail, and outlook) and nothing has been received. Any help would be greatly appreciated.  I would like to use this site but cannot until this is fixed.

    Have you already contacted BC support for this issues, if yes then please provide me the ticket number , I will have a look.
    If not then please join live chat with BC support team.
    Thanks,
    Sanjit

  • Address Book contact info changes after sending an email to contact

    So this issue has plagued me for some time and I have finally just been annoyed enough by it to ask.
    I have a contact for my mom which used to be her first name and last name which I later changed to just "Mom" in the first name box after getting an iPhone. At the same time I started syncing with MobileMe and have been having this problem for about 2 years.
    Every time I send her an email it changes her name from just Mom to Mom and then adds her last name back into the last name field.
    Has anyone else experienced this and figured out a fix?

    It's very simple why this happens: you're using Address Book incorrectly by not using somebody's first and last name. Mail and Address Book communicate, so every time you send an email to someone, whatever their name is setup as in their email account is what gets overwritten into Address Book when you don't have the same thing.

  • Mail goes offline when sending

    I am helping a friend get his Mail working smoothly.
    He accesses the internet with a dongle.  Safari works okay. However, when clicking Send in Mail, Mail goes into offline mode and shows a "~" icon. 
    Anyone know how to get outgoing mail working.  Incoming seems to be working most of the time.
    Andy

    Try this. Upon waking the computer from sleep. Wait about 20 seconds before doing any network activity like Mail or Safari. Then try it.
    When a computer goes to sleep, to the rest of the world, it is the same as being turned off. It's Internet connection is disconnected. It takes a few seconds to re-establish the connection.

  • Beep noise after sending message

    does anyone know how to turn it off?
    the (du nun) annoying tone after you send each message?
    thank you

    Open Preferences from within the Mail program and note the exact settings for your email accounts.
    Quit Mail
    Trash the following file:
    your home directory / Library / Preferences / com.apple.mail.plist
    and empty the Trash
    Restart Mail
    Re-install your mail settings
    These actions will not interfere with your mailboxes, it will simply create a new plist preference file when you re-start Mail.

Maybe you are looking for

  • General Error on render

    I am trying to render some photos the are already in preview but refuse to render. i cannot export this project due to this and need it.

  • CONNECT By Prior...or something else...

    I have a very simple audit table with the following format: Input_File Varchar2(256) Output_File Varchar2(256) Date The table basically keeps tracks of files going through my systems. At a later point in processing, what was an Output_File for record

  • Bat file Problem

    Hi everyone, I want to run a batch file, located somewhere in my Hard disk and I can't do it. I asked a friend and he told me to try Runtime.getRuntime().exec("C:\\myBatch.bat"); but it doesn't work. It works if I put "notepad" instead of C:\\myBatch

  • MM Outline Agreement Screen Flow

    Our client has a requirement on contracts and scheduling agreements where they would like to see, displayed, the extended value of the line item and the total value of the outline agreement. I have located the fields needed and they seem to serve the

  • Low level codes

    How are low level codes define in bom,we know that systems plans 000 first then 001 & so on. for example fert will have 000 , halb 001 , & roh 002 it is like this or vice versa. but what i think system plans first for  roh , than halb then fert , wha