1 message in = 2 messages out

Hi,
          I have problems with my JMS queue. If I send 1 message to the queue it
          will give me 2 messages to pick out from the queue. Could it be that
          I'm not acknowledging my messages correctly? I'm really lost.
          Some code to help you understand the problem:
          This is how I put the message in the Q.
          // Look up administred objects
          InitialContext initContext = new InitialContext();
          QueueConnectionFactory factory = (QueueConnectionFactory)
          initContext.lookup(CONNECTION_FACTORY);
          Queue queue = (Queue) initContext.lookup(QUEUE);
          initContext.close();
          // Create JMS objects
          QueueConnection connection = factory.createQueueConnection();
          QueueSession session = connection.createQueueSession(false,
          Session.AUTO_ACKNOWLEDGE);
          QueueSender sender = session.createSender(queue);
          connection.start();
          Message message = session.createMessage();
          ...some code left out...
          // Put the message in the queue
          sender.send(message);
          message.acknowledge();
          session.close();
          connection.close();
          This is how I receive the message from the Q. And this is where I
          fail.
          public void init(){
          try{
          // Look up administred objects
          InitialContext initContext = new InitialContext();
          QueueConnectionFactory factory = (QueueConnectionFactory)
          initContext.lookup(CONNECTION_FACTORY);
          m_queue = (Queue) initContext.lookup(QUEUE);
          initContext.close();
          // Create JMS objects
          m_connection = factory.createQueueConnection();
          m_session = m_connection.createQueueSession(false,
          Session.AUTO_ACKNOWLEDGE);
          m_receiver = m_session.createReceiver(m_queue);
          m_receiver.setMessageListener(this);
          m_connection.start();
          //this.setDaemon(true);
          this.start();
          catch(Exception e){
          public void onMessage(Message message){
          try{
          // Get the properties from the message
          Properties properties = getProperties(message);
          // Create a new MoSms
          MoSms mosm = new MoSms(properties);
          // Send message
          m_session.close();
          m_connection.close();
          SmsMoWB.handleMessage(mosm);
          catch(Exception e){
          public void run(){
          try{
          while(true){
          Message message = m_receiver.receive();
          this.onMessage(message);
          catch (JMSException e) {
          catch (Throwable e) {
          So what am I doing wrong, acknowledging the message sto late, picking
          them out of the Q wrong or what?
          regards,
          Jörgen
          

Looking at the "init" method:
          m_connection = factory.createQueueConnection();
          m_session = m_connection.createQueueSession(false,
          Session.AUTO_ACKNOWLEDGE);
          m_receiver = m_session.createReceiver(m_queue);
          m_receiver.setMessageListener(this);
          m_connection.start();
          When you call "setMessageListener", this tells JMS to automatically call
          "this.onMessage" every time a message appears on "m_queue".
          But then you do this:
          this.start();
          which makes me think that your class extends java.lang.Thread, and inside
          "run" you do this:
          while(true){
          Message message = m_receiver.receive();
          this.onMessage(message);
          Which does the same thing.
          Assuming that "m_receiver" is the same object in both places, then your code
          is "breaking the rules". That is, you're not supposed to use a Session
          object in more than one thread at a time, which is what you're doing, and
          the JMS spec says that what happens in this case is "undefined".
          I bet that if you either call "setMessageListener" or start your thread,
          you'll only get one copy of each message. But doing both is definitely
          wrong, and that may explain why you're seeing what you're seeing.
          greg
          "Jörgen" <[email protected]> wrote in message
          news:[email protected]...
          > Hi,
          > I have problems with my JMS queue. If I send 1 message to the queue it
          > will give me 2 messages to pick out from the queue. Could it be that
          > I'm not acknowledging my messages correctly? I'm really lost.
          >
          > Some code to help you understand the problem:
          >
          > This is how I put the message in the Q.
          >
          > // Look up administred objects
          > InitialContext initContext = new InitialContext();
          > QueueConnectionFactory factory = (QueueConnectionFactory)
          > initContext.lookup(CONNECTION_FACTORY);
          > Queue queue = (Queue) initContext.lookup(QUEUE);
          > initContext.close();
          >
          > // Create JMS objects
          > QueueConnection connection = factory.createQueueConnection();
          > QueueSession session = connection.createQueueSession(false,
          > Session.AUTO_ACKNOWLEDGE);
          > QueueSender sender = session.createSender(queue);
          > connection.start();
          >
          > Message message = session.createMessage();
          >
          > ...some code left out...
          >
          > // Put the message in the queue
          > sender.send(message);
          > message.acknowledge();
          > session.close();
          > connection.close();
          >
          >
          >
          > This is how I receive the message from the Q. And this is where I
          > fail.
          >
          > public void init(){
          > try{
          > // Look up administred objects
          > InitialContext initContext = new InitialContext();
          > QueueConnectionFactory factory = (QueueConnectionFactory)
          > initContext.lookup(CONNECTION_FACTORY);
          > m_queue = (Queue) initContext.lookup(QUEUE);
          > initContext.close();
          >
          > // Create JMS objects
          > m_connection = factory.createQueueConnection();
          > m_session = m_connection.createQueueSession(false,
          > Session.AUTO_ACKNOWLEDGE);
          > m_receiver = m_session.createReceiver(m_queue);
          > m_receiver.setMessageListener(this);
          > m_connection.start();
          >
          > //this.setDaemon(true);
          > this.start();
          > }
          > catch(Exception e){
          > }
          > }
          >
          > public void onMessage(Message message){
          > try{
          > // Get the properties from the message
          > Properties properties = getProperties(message);
          >
          > // Create a new MoSms
          > MoSms mosm = new MoSms(properties);
          >
          > // Send message
          > m_session.close();
          > m_connection.close();
          > SmsMoWB.handleMessage(mosm);
          > }
          > catch(Exception e){
          > }
          > }
          >
          > public void run(){
          > try{
          > while(true){
          > Message message = m_receiver.receive();
          > this.onMessage(message);
          > }
          > }
          > catch (JMSException e) {
          > }
          > catch (Throwable e) {
          > }
          > }
          >
          >
          > So what am I doing wrong, acknowledging the message sto late, picking
          > them out of the Q wrong or what?
          >
          > regards,
          > Jörgen
          

Similar Messages

  • Cannot delete messages from inbox, cannot move messages out of inbox, message do not copy to "sent" or "draft"

    The following problems occur:
    - cannot delete messages,
    - cannot move messages out of inbox,
    - messages do not copy "sent"
    - messages cannot be saved to "draft"
    This applies to imap and to gmail accounts.
    The following has not helped:
    - compact trash and other folder
    - deinstall and reinstall TB 31.4.
    - archive profile with mozbackup and replace profile from archive after reinstall of TB.
    - deinstall and reinstall TB 31.3 downgraded
    - delete all folders and files with "trash*" in the file name (all IMAP)
    - delete all files of 1 mail account completely in the TB profile and resync from server (IMAP)
    This might coincide with these system changes:
    - upgrade to TB 31.4.
    - some of these email accounts were installed on ios8 iphone.
    Not sure if the problems had already started before these 2 occurrences.
    Any help is appreciated to solve this.
    Thanks!
    fashi

    What type of mail account is this (POP, IMAP, .Mac)? If POP, what are your Preferences > Accounts > Advanced > Remove copy from server settings?
    You may be able to get rid of those messages in Mail doing Edit > Cut (⌘X) (for best results do it with one message or just a few at a time), but you should remove them from the server first if they’re still there.
    Does this account allow web access? If not, you may find the Account Info window useful to solve this problem — choose Get Info (⌘I) from the Action menu (gear icon) located below the mailboxes list in the main Mail window.

  • Unable to Execute a Report to send PAN XML messages out of SNC

    Hi All,
    We are unable to Execute a Report /SCA/DM_TIMESERIES_OUT to send Product Activity Notifications in the form of XML messages out of SNC. We have manitained some Planned Reciepts data in SNC and would like to transfer it out to ECC.
    Could anyone help in understanding if we have to maintain mandatory settings before executing this report.
    Thanks & Regards,
    Sadiq

    Hi Pravin,
    As per the documentation(http://help.sap.com/saphelp_snc70/helpdata/EN/48/6bdb4767a431cbe10000000a42189d/frameset.htm), we have tried both the manual and automatic features to configure the output from SNC in the form of XML messages.
    The manual method gave a message "Time series data for selection is empty" and the Automated method could trigger the XML messages on every incoming message from ECC but we are unable to see the Planned Receipts in that XML messages.
    Was just wondering if we can see the Planned Receipt info by changing the settings of this report or by using any other simillar report as the PR info is very important for our development.
    Thanks & Regards,
    Sadiq

  • How can i message out the unexisted material group name.

    Selection screen: material group
    s_maktl is a range, "AA_1" to "ZZ_9".
    I check the existence of material group in table T023. select *
    into table i_t023
    where maktl in s_maktl.
    Example, 'UU_3" is not in table.
    But how can i tell "UU_3" is not existed???
    i want to message out the unexisted material group name.
    Can anyone help?

    Hi Amanda
    In this case you have to know all the combinations of all the materials groups. Taking your example, considering that only letters and numbers vary, we will have tons of possibilities, which is practically not feasible.
    Other option would be to check whether the user entered values in LOW and HIGH of select option field, In you example say if AA_1 is not present in T023, i can validate that record.
    But at the same time the values which are not entered and are implicitly calculated based on the string patterns, are practically not possible to validate.
    Regards
    Ranganath

  • Monitoring of messages (Out of Box)

    Hi Experts,
    I have been developing critical interfaces with Legacy systems(MES) with PI7.11. I have question from my team like can we monitor centrally the messages out of box (PI), centrally the messages status in both outbound/inbound scenarios (Asynchronous) with MES using any API functionality. I have refer the BAM functionality, I am not sure how extend it will be fulfill our requirement.
    I have searched in SDN and Google, but I am not getting the exact. Please help with your ideas.
    Thanks in Advance.
    Cheers
    Neelagiri's

    Hi Florian,
       Do you mean Messages sent by HTTP sender?
    YOu can monitor messages in SXMB_MONI transaction in the abap stack of the XI system.
    Not sure, if you meant anythig else.
    Regards,
    Ravi

  • I had itunes working properly for a long time till one day, it was configuring to open the program then i get a message out of nowhere that says could not acess network location %APPDATA%\  i cant even uninstall without this, whats the big deal?!

    I had itunes working properly for a long time till one day, it was configuring to open the program then i get a message out of nowhere that says could not acess network location %APPDATA%\  i cant even uninstall without this, whats the big deal?!

    With that particular variety of 1606 (it's a 1606 error message even though the 1606 error message number isn't returned by the iTunes installer), the following Microsoft document is worth a try:
    You receive an "Error 1606" error message when you try to install or remove a Microsoft program

  • Text Messaging Out Of Order?

    Anyone else getting their text messages out of order? I will text, get a reply and text back but the order comes out something like my two texts and then a reply...its annoying.

    I get that problem too..
    Your right its really annoying.
    ALSO, Apple made me mad not adding a Text messaging forward feature in that last update!
    DO THEY NOT UNDERSTAND HOW MANY CHAIN TEXTS THERE ARE?!?

  • Voyager opens and reads text messages out loud

    My daughter's Voyager has started opening her text messages automatically when they are received, and then it proceeds to read the message out loud.  She can't figure out how to stop this from happening!  Any help in stopping this incredibly annoying situation would be greatly appreciated.

    Never mind - I think I fixed it for her. 

  • Phone wasn't plugged in and receives a message that my phone hasn't been backed up in 30 weeks.   I usually get a message that my iCloud is full when I plug it in.  But it was 4 in the morning and it just sent me a message out of the blue.

    Phone wasn't plugged in and receives a message that my phone hasn't been backed up in 30 weeks.   I usually get a message that my iCloud is full when I plug it in.  But it was 4 in the morning and it just sent me a message out of the blue.  Is this normal?

    Try a reset:
    Hold the Sleep and Home button down until you see the Apple logo.

  • HP LaserJet 2100tn, Error message: "out of memory"

    When I'm printing, an error message appears after printing the first page: "out of memory". My printer has 40MB of memory. I tried to change the printer settings for several time (8MB RAM, ..., over 30MB), but no result. The pages I want to print are from FileMakerPro.
    I tried also to make a pdf file and to print, same result: first page o.k. then error message.
    Thanks a lot for your answers.
    Tobi

    Meg: You are an earth angel You have come to my recue before.
    Yikes...I found one sneaky  b&w drawing .tiff that was 12621 x 966.
    Will convert that puppy.
    Thanks

  • Log4j not logging messages out to weblogic console for custom automatplugin

    Hi,
    We have a custom automation plugin for the OSM application build 381 in our environment(HP-UX Itanium platform). The plugins are bundled in a single ear application "A.ear" which is a mixed bag of pre-defined automation plugins of type XsltSender, XsltAutomator(both InternalReciever as well ExternalReceiver) as well other custom automators(java). For logging of messages in order to aid debugging of custom automators, we are using a logger "com.xyz.osm.plugin" which is also declared in log4j.xml file that is within omslogging.jar. You must already be aware that the build scripts of assembling, deploying ansd registering plugins also includes omslogging.jar are part of the application ear.
    <category name="com.mtsa.osm.plugin">
    <priority value="debug"/>
    </category>
    Below java code snippet is taken from our custom automation plugin classes indicating how the above logger is being used for printing messages.
    //Declaration
    private static Log log = LogFactory.getLog("com.mtsa.osm.plugin");
    mthod1(){
    log.info("xyz");
    In addition to the above logger, the pre-defined automators XsltSender, XsltReceiver also enable logging from xsl files by making the "log" parameter available. Thus we have lines such as the one below in our xsl files that should print messages to the weblogic console.
    <xsl:variable name="addLog1" select="java:info($log, 'transformSiebelActivationRequest: ***** Starting *****')"/>
    The logger that allows printing of these lines is "com.mslv.oms.automation".
    <category name="com.mslv.oms.automation">
    <priority value="info"/>
    </category>
    These configurations should have ideally allowed one to see messages such as one below getting printed out to weblogic console:
    <16-Mar-2012 8:59:36,931 CDT PM> <INFO> <plugin.XSLTReceiver> <ExecuteThread: '19' for queue: 'oms.automation'> <transformSiebelActivationRequest: ***** Starting *****>
    Unfotunately after having done all the above configuration, we are still unable to see any such log messages in the console apart from those emitting from SOP and from <xsl:message> inserted in java & xsl files respectively.
    I also checked if the log4j sub-system is able to correctly initialize after parsing the log4j.xml. It does and one can confirm it by setting system property log4j.debug=true in setDomainEnv.sh file.
    $$$$$$$$ log4j initialization by application classloader for oms.ear application $$$$$$$$$$$$$$$$$$
    log4j: Trying to find [log4j.xml] using context classloader weblogic.utils.classloaders.GenericClassLoader@1592141 finder: weblogic.utils.classloaders.CodeGenClassFinder@1112e85 annotation: oms@.
    log4j: Using URL [zip:/home/osmwl/bea/user_projects/domains/dev04/servers/osmdev04/tmp/_WL_user/oms/amuube/omslogging.jar!/log4j.xml] for automatic log4j configuration.
    log4j: Preferred configurator class: org.apache.log4j.xml.DOMConfigurator
    log4j: System property is :null
    log4j: Standard DocumentBuilderFactory search succeded.
    log4j: DocumentBuilderFactory is: org.apache.xerces.jaxp.DocumentBuilderFactoryImpl
    $$$$$$$$ log4j initialization by application classloader for custom automation plugin xyz.ear application $$$$$$$$$$$$$$$$$$
    log4j: Trying to find [log4j.xml] using context classloader weblogic.utils.classloaders.GenericClassLoader@1b7a8c5 finder: weblogic.utils.classloaders.CodeGenClassFinder@10bc849 annotation: xyz.ear@.
    log4j: Using URL [zip:/home/osmwl/bea/user_projects/domains/dev04/servers/osmdev04/tmp/_WL_user/xyz.ear/ah0eeq/omslogging.jar!/log4j.xml] for automatic log4j configuration.
    log4j: Preferred configurator class: org.apache.log4j.xml.DOMConfigurator
    log4j: System property is :null
    log4j: Standard DocumentBuilderFactory search succeded.
    log4j: DocumentBuilderFactory is: weblogic.xml.jaxp.RegistryDocumentBuilderFactory
    log4j: debug attribute= "false".
    Ironically, logging levels for loggers defined in log4j.xml of oms.ear could be dynamically changed from log4jAdmin.jsp page and the results are immediately visible. However for some reason, loggers defined in log4j.xml of custom plugin application were completely getting ignored. I don't see any warnings or erro messages in the logs indicating that log4j configuration failed for custom application failed. We want to refrain using SOP and <xsl:message> but I am afraid we have no option other than filling up our sources files with them.
    Bottomline, how do we get application B(which in our case is the custom plugin) to log messaged the console just like that done by application A(oms.ear).
    I am sure OSM developers would like to leverage log4j bundled with OSM SDK to log messages that would aid in trouble-shooting during development cycles. Both application ear files have commons-logging-1.1.jar,log4j-1.2.13.jar, omslogging.jar available in their classpaths. In other words, META-INF/MANIFEST.MF file of oms.war(web module within oms.ear) and xyz.jar(ejb module within xyz.ear) has references to these jars.
    Appreciate if one can reply and let me know if they could get log messages to print from custom plugin.
    Thanks
    Edited by: user3693508 on Mar 18, 2012 11:38 AM

    Hi,
    We have a custom automation plugin for the OSM application build 381 in our environment(HP-UX Itanium platform). The plugins are bundled in a single ear application "A.ear" which is a mixed bag of pre-defined automation plugins of type XsltSender, XsltAutomator(both InternalReciever as well ExternalReceiver) as well other custom automators(java). For logging of messages in order to aid debugging of custom automators, we are using a logger "com.xyz.osm.plugin" which is also declared in log4j.xml file that is within omslogging.jar. You must already be aware that the build scripts of assembling, deploying ansd registering plugins also includes omslogging.jar are part of the application ear.
    <category name="com.mtsa.osm.plugin">
    <priority value="debug"/>
    </category>
    Below java code snippet is taken from our custom automation plugin classes indicating how the above logger is being used for printing messages.
    //Declaration
    private static Log log = LogFactory.getLog("com.mtsa.osm.plugin");
    mthod1(){
    log.info("xyz");
    In addition to the above logger, the pre-defined automators XsltSender, XsltReceiver also enable logging from xsl files by making the "log" parameter available. Thus we have lines such as the one below in our xsl files that should print messages to the weblogic console.
    <xsl:variable name="addLog1" select="java:info($log, 'transformSiebelActivationRequest: ***** Starting *****')"/>
    The logger that allows printing of these lines is "com.mslv.oms.automation".
    <category name="com.mslv.oms.automation">
    <priority value="info"/>
    </category>
    These configurations should have ideally allowed one to see messages such as one below getting printed out to weblogic console:
    <16-Mar-2012 8:59:36,931 CDT PM> <INFO> <plugin.XSLTReceiver> <ExecuteThread: '19' for queue: 'oms.automation'> <transformSiebelActivationRequest: ***** Starting *****>
    Unfotunately after having done all the above configuration, we are still unable to see any such log messages in the console apart from those emitting from SOP and from <xsl:message> inserted in java & xsl files respectively.
    I also checked if the log4j sub-system is able to correctly initialize after parsing the log4j.xml. It does and one can confirm it by setting system property log4j.debug=true in setDomainEnv.sh file.
    $$$$$$$$ log4j initialization by application classloader for oms.ear application $$$$$$$$$$$$$$$$$$
    log4j: Trying to find [log4j.xml] using context classloader weblogic.utils.classloaders.GenericClassLoader@1592141 finder: weblogic.utils.classloaders.CodeGenClassFinder@1112e85 annotation: oms@.
    log4j: Using URL [zip:/home/osmwl/bea/user_projects/domains/dev04/servers/osmdev04/tmp/_WL_user/oms/amuube/omslogging.jar!/log4j.xml] for automatic log4j configuration.
    log4j: Preferred configurator class: org.apache.log4j.xml.DOMConfigurator
    log4j: System property is :null
    log4j: Standard DocumentBuilderFactory search succeded.
    log4j: DocumentBuilderFactory is: org.apache.xerces.jaxp.DocumentBuilderFactoryImpl
    $$$$$$$$ log4j initialization by application classloader for custom automation plugin xyz.ear application $$$$$$$$$$$$$$$$$$
    log4j: Trying to find [log4j.xml] using context classloader weblogic.utils.classloaders.GenericClassLoader@1b7a8c5 finder: weblogic.utils.classloaders.CodeGenClassFinder@10bc849 annotation: xyz.ear@.
    log4j: Using URL [zip:/home/osmwl/bea/user_projects/domains/dev04/servers/osmdev04/tmp/_WL_user/xyz.ear/ah0eeq/omslogging.jar!/log4j.xml] for automatic log4j configuration.
    log4j: Preferred configurator class: org.apache.log4j.xml.DOMConfigurator
    log4j: System property is :null
    log4j: Standard DocumentBuilderFactory search succeded.
    log4j: DocumentBuilderFactory is: weblogic.xml.jaxp.RegistryDocumentBuilderFactory
    log4j: debug attribute= "false".
    Ironically, logging levels for loggers defined in log4j.xml of oms.ear could be dynamically changed from log4jAdmin.jsp page and the results are immediately visible. However for some reason, loggers defined in log4j.xml of custom plugin application were completely getting ignored. I don't see any warnings or erro messages in the logs indicating that log4j configuration failed for custom application failed. We want to refrain using SOP and <xsl:message> but I am afraid we have no option other than filling up our sources files with them.
    Bottomline, how do we get application B(which in our case is the custom plugin) to log messaged the console just like that done by application A(oms.ear).
    I am sure OSM developers would like to leverage log4j bundled with OSM SDK to log messages that would aid in trouble-shooting during development cycles. Both application ear files have commons-logging-1.1.jar,log4j-1.2.13.jar, omslogging.jar available in their classpaths. In other words, META-INF/MANIFEST.MF file of oms.war(web module within oms.ear) and xyz.jar(ejb module within xyz.ear) has references to these jars.
    Appreciate if one can reply and let me know if they could get log messages to print from custom plugin.
    Thanks
    Edited by: user3693508 on Mar 18, 2012 11:38 AM

  • SMS messages out of order

    Ever since I upgraded to 1.1.3, my text messages with certain people are out of order. I'll send a message, then when they reply their message will be above mine, like their reply was the original message then I replied. I hope that makes sense. Is anyone else having this problem? Do you know how to fix it? My time is already selected to be set by the network.

    That problem was acknowledged by Apple. Their possible solution is go to Settings>General>Date&Time>Set Automatically ON

  • Skype Messages Out Of Order.

    This has for some reason only started within the past few hours, and i have never experienced this issue in the past, for some reason while sending messages they are out of order and look something like this:
    Them: Message #8
    Them message #10
    Me: Message #1
    Them: Message #6 appears here.
    Them: Message #2
    Them: Message #4 appears here.
    Me: Message #3
    Me: Message #5
    Me: Message #7
    Me: Message #9
    Makes it impossible to have a conversation as i have to scan over dozens of messages to try to find a new one that has all of a sudden appeared, i have tried searching for solutions and the only one i found was "Sync time and date" i have updated my time and date to make sure but they were never out of sync to begin with.
    Cheers, Nick.

    This is a well known bug on Skype network affecting mainly users of the latest Skype versions on Windows and iOS systems.
    Spoiler (Highlight to read)
    http://community.skype.com/t5/Windows/Timestamp-Bu​g/m-p/1295416#M98834
    http://community.skype.com/t5/iPhone/Why-messages-​arrive-with-the-incorrect-time-from-I-updated-my/m​...
    http://community.skype.com/t5/Live-Messenger/Rando​m-message-order/m-p/1294932/highlight/true#M1956
    http://community.skype.com/t5/Windows/problem-with​-receive-instand-message/m-p/1294558/highlight/tru​...
    http://community.skype.com/t5/Android/Message-puzz​le-on-Skype-Samsung-Galaxy-Ace/m-p/1292790/highlig​...
    http://community.skype.com/t5/Windows/Notification​-sound-plays-after-receiving-new-message-but-messa​...
    http://community.skype.com/t5/General-Discussion/N​ot-receiving-contact-s-messages/m-p/1292110/highli​...
    http://community.skype.com/t5/Windows/Receiving-a-​notification-without-a-message/m-p/1289922/highlig​...
    http://community.skype.com/t5/Windows/IM-text-mess​age-order-problems/m-p/1288074/highlight/true#M982​...
    http://community.skype.com/t5/Windows/Messages-upd​ating-at-the-wrong-time-amp-spot-on-screen/m-p/128​...
    http://community.skype.com/t5/Windows-Phone/Time-w​rong/m-p/1278198/highlight/true#M2011
    http://community.skype.com/t5/Windows/Chat-wrong-c​hronology/m-p/1271974/highlight/true#M96838
    http://community.skype.com/t5/Windows/Instant-mess​ages-show-wrong-time-display/m-p/1271110/highlight​...
    http://community.skype.com/t5/Windows/I-am-not-get​ting-my-instant-messages/m-p/1270842/highlight/tru​...
    http://community.skype.com/t5/Windows/Time-stamp-i​n-Chat/m-p/1268654/highlight/true#M96581
    http://community.skype.com/t5/Windows/My-messages-​keep-appearing-in-previous-conversations/m-p/12681​...
    http://community.skype.com/t5/Windows/Timestamp-Bu​g/m-p/1295416#M98834 http://community.skype.com/t5​/iPhone/Why-messages-arrive-with-the-incorrect-tim​e-from-I-updated-my/m-p/1295008/highlight/true#M88​93 http://community.skype.com/t5/Live-Messenger/Ra​ndom-message-order/m-p/1294932/highlight/true#M195​6 http://community.skype.com/t5/Windows/problem-wi​th-receive-instand-message/m-p/1294558/highlight/t​rue#M98774 http://community.skype.com/t5/Android/M​essage-puzzle-on-Skype-Samsung-Galaxy-Ace/m-p/1292​790/highlight/true#M21584 http://community.skype.c​om/t5/Windows/Notification-sound-plays-after-recei​ving-new-message-but-message/m-p/1292314/highlight​/true#M98574 http://community.skype.com/t5/General​-Discussion/Not-receiving-contact-s-messages/m-p/1​292110/highlight/true#M63307 http://community.skyp​e.com/t5/Windows/Receiving-a-notification-without-​a-message/m-p/1289922/highlight/true#M98407 http:/​/community.skype.com/t5/Windows/IM-text-message-or​der-problems/m-p/1288074/highlight/true#M98244 htt​p://community.skype.com/t5/Windows/Messages-updati​ng-at-the-wrong-time-amp-spot-on-screen/m-p/128244​6/highlight/true#M97762 http://community.skype.com​/t5/Windows-Phone/Time-wrong/m-p/1278198/highlight​/true#M2011 http://community.skype.com/t5/Windows/​Chat-wrong-chronology/m-p/1271974/highlight/true#M​96838 http://community.skype.com/t5/Windows/Instan​t-messages-show-wrong-time-display/m-p/1271110/hig​hlight/true#M96788 http://community.skype.com/t5/W​indows/I-am-not-getting-my-instant-messages/m-p/12​70842/highlight/true#M96755 http://community.skype​.com/t5/Windows/Time-stamp-in-Chat/m-p/1268654/hig​hlight/true#M96581 http://community.skype.com/t5/W​indows/My-messages-keep-appearing-in-previous-conv​ersations/m-p/1268190/highlight/true#M96528
    Skype is aware about this problem and is working on a solution. See e.g. this:
    http://community.skype.com/t5/Windows-Phone/Time-w​rong/m-p/1278306#M2012
    Meanwhile you may try to revert to the previous Skype 5.10.0.116 version.
    http://download.skype.com/msi/SkypeSetup_5.10.0.11​6.msi
    You don’t even need to run this installer. Using the procedure described here,
    http://community.skype.com/t5/Windows/How-to-updat​e-Skype-without-using-any-Skype-installer/m-p/7073​...
    extract the Skype.exe file from the SkypeSetup_5.10.0.116.msi file and replace your currently installed Skype.exe with this older Skype.exe file. You will be now running the Skype 5.10.0.116 version.

  • How do I fix Error Message = Out Of Memory Could Not Install or Delete Data"

    I have looked all over the internet and there is a lot of discussion about WHY this happens and a lot of discusion about what to do in the future to avoid this from happening.
    I need help with specific steps on how to delete the static image that is stuck on my desktop. The image is large and covers most of my screen. I have shut down, unplugged, let the machine rest....started up several times. Not working.
    The error reads "OUT OF MEMORY - COULD NOT INSERT OR DELETE DATA"
    Thanks!

    Probably you are running out of disk space. Can you interact with your Mac at all, or is the error  message preventing you from using Finder windows?
    I'd try to boot into Save Mode: This will only load a rudimentary version of Max OS X, needing less space, and will clean some caches. The Start Up will tale longer, however.
    When in Save Mode try to empty the Trash and to free as much disk space as you can, by deleting files.
    How much free disk space do you have right now?
    See:
    http://www.wikihow.com/Start-Your-Mac-in-Safe-Mode
    If you cannot access the FInder to free disk space, even in Save Boot Mode, post back.
    Regards
    Léonie

  • Messages 7.0.1 on 2011 iMac running 10.8.2 showing messages out of order

    I'm having an issue with the Messages (v.7.0.1) application on my 2011 iMac running OS 10.8.2.  My iMessage conversations sync from my iPhone 5 to Messages on my computer, but when my computer comes out of sleep, all messages from one side of the conversation are shown first, and my side shown second.  Essentially, the Messages app is ignoring the time sent and not showing any texts in the correct chronological order while my computer was sleeping/off.
    Is anyone else experiencing this?  Or possibly have a solution?  It's quite obnoxious.

    Hi,
    It was first reported in Messages Beta.
    If the App was Off line on the Mac and  conversation took place via an iPhone or iPad and then the Mac was turned On and Messages Started then the iPhone conversation would start to sync.
    This is not instant and plays out like a speeded up chat.
    Any subsequent iMessages in that conversation are sent by the servers immediately and get mixed up with the "historical" catch-up.
    People are reporting that similar issues are still happening in the Messages up despite the version 7.0.1 update.
    I have seen claims that if you shut down Messages and restart it then it will look to the Time Stamps and place things in order.
    I cannot replicate this
    iPhone end
    Mac end.
    On the 29th the iPhone got a Message reply repeated.
    Some Items from the Mac never made it to the iPhone (it's my iPhone  and it should be syncing things)
    The Mac never showed the Tesco/Lettuce conversation.
    I would use the old iChat Feedback page to report this.
    Messages is iChat+ and the versions numbers are sequential
    10:32 PM      Saturday; December 22, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

Maybe you are looking for