Group iMessage: separate threads for delivery

When I group message two of my friends through iMessage, their responses are delivered to me separately. They seem to be receiving all of the messages in one unified thread, but mine have been separated. So I get two separate boxes, both labeled "Jane and John," but Jane's responses show up in one and John's show up in the other. How can I fix this so that their responses become unified? I've tried deleting both threads, but then they show up separately again when they write to me.

The issue I had was with my partners phone. It was sending from her email which was splitting the message thread if she sent messages that came through as SMS rather than iMessage. So I had 2 split conversations running.
Its a simple fix on iPhone...
Goto.....Settings, Messages, Receive at, sign out of your apple ID.
Thats it.
If when you go in there and you are signed in you will see "You can be reached for messages at:"
If you are signed in it will use your email by default rather than your phone number. Signing out refers it back onto your number instead. Now all messages are from the one sender.
Hope this helps.
Cadley.

Similar Messages

  • Now a separate thread for the HTC Rezound! - lower left under "Spaces"

    FINALLY!! THANK YOU!!!
    For some reason it is not showing in the phone device list above but look below on lower left under Spaces.  There is now a separate thread for those of us with the HTC Rezound!!

    Thanks for your interest.
    Excuse my ignorance as I'm not sure what you meant by "1 of 5" optimization. Did you mean median of 5 ?
    Regarding swapping pointers, yes it is common sense and rather common among programmers to swap pointers instead of swapping large data types, at the small price of indirect access to the actual data through the pointers.
    However, there is a rather unobvious and quite terrible side effect of using this trick. After the pointer array is sorted, sequential (sorted) access to the actual data throughout the remaining of the program will suffer heavily because of cache misses.
    Memory is being accessed randomly because the pointers still point to the unsorted data causing many many cache misses, which will render the program itself slow, although the sort was fast!!.
    Multi-threaded qsort is a good idea in principle and easy to implement obviously because qsort itself is recursive. The thing is Multi-threaded qsort is actually just stealing CPU time from other cores that might be busy running other apps, this might slow
    down other apps, which might not be ideal for servers. The thing researchers usually try to do is to do the improvement in the algorithm it self.
    I Will try to look at your sorting code, lets see if I can compile it.

  • Separate thread for input stream and output stream.

    Hi Techies,
    In a socket connection, can we run the input stream and output stream in separate threads. actually in my case, the input stream will be getting the input regularly and output stream will send data very rare. so if i impelment them in one class then unless there is data to send output stream will be blocked. i was thinking to impelment both the streams in separate threads. is it a good way? so how to implement it. your guidance will be of great help.
    thanks in advance.

    JavaBreather wrote:
    Hi Techies,
    In a socket connection, can we run the input stream and output stream in separate threads.I would say this is the most common way of handling sockets and threads. esp pre-NIO.
    Iis it a good way? so how to implement it. your guidance will be of great help.Once you have a socket, create two threads, one which does the reading and one which does the writing.
    You could use BlockingQueues to abstract access to these threads. i.e. the reading thread reads something from the socket and adds it to the BlockingQueue. The writing thread take()s something froma second BlockingQueue and writes it to the Socket. This way you add things to write or get thing to process by looking at the BlockingQueues.

  • Do I need separate thread for readObject() and writeObject()?

    Somehow, my Client/Server code behaves badly. A click on
    the GUI did not always send a message to the Server as
    intented (using writeObject(String)). Most of the times the
    message was sent. But not always.The Client (GUI) also uses
    readObject() to receive messages from the Server. Is this
    problem associated with the fact that my readObject() and
    writeObject() from the GUI are on the same thread? Need
    some help.
    Thank you.

    "and I don't do GUIs"
    First, let me say, as a Newbie, how good it feels to
    even be able to follow this.
    But I honestly don't understand the above quoted
    comment from jverd.
    How does somebody do Java and not do GUI stuff?
    It almost sounds like a plumber saying "I don't do
    sinks."
    Even from my novice perspective, Java seems slow and
    sucks copious amounts of memory.
    Is there any practical use for Java if you're not
    doing GUIs?In my experience, it's often the GUIs that make it slow. Apparently things are better if you use Swing carefully, or use SWT or maybe AWT.
    As far as I can tell, the vast majority of Java code that's out there is backend stuff. Not that I've done a formal survey. I can tell you from personal experience however, that there is a LOT of stuff that Java is good for besides GUIs (business logic behind websites being one of its major areas of use), and if you write reasonably good code, it will be very fast.
    Your analogy might be better couched as "an auto mechanic saying 'I don't do body work.'"

  • Separate Plant for delivery in PO

    Hi,
    I have a requirement of delivering the product to plant B ,but the PO will be raised by Plant A for X vendor . How to Map the Plant B as delivery in the PO.
    Thanks in advance
    Regards
    RK

    Material should be available in Plant B while doing GR in the plant A ( with or without valuation ). Plant B can be virtual plant from there i ll be in a position to withdraw materials.
    Do SAP support this functionality
    regards
    RK

  • Separate thread to monitor PXI-6115

    I am using a PXI-6115 multifunction analog I/O card to monitor a power supply to assure regulation. I am monitoring 4 different points with a resolution of 1000S/s each. I would like to check each point and determine whether it is withing an acceptable window of operation both above and below the voltage it is supposed to be operating at. If it is out of regulation for a specified period of time, I want to write a chunk of the waveform to a spreadsheet file for analysis.
    I have been able to successfully complete a majority of this. The only problem is that I want all of this to happen in the background so that I can also execute numerous other vi's to change various parameters, etc. in order to stress the supply. However, I run
    into problems in that some of the voltage levels are customizeable and therefore the thresholds must be changed in order to check the new voltage for regulation. When I change these thresholds, they change immediately, however the ni-daq "read" vi is sometimes a couple seconds behind. So... I am comparing the old voltages with the new thresholds and it tells me that my supply is out of regulation when it is functioning correctly, I am simply looking at old data.
    My question is...
    Is multithreading this somehow the best solution to this problem? Should I create a separate thread for my supply monitoring vi and give it a higher priority than my test thread in order to service the AI Read vi often enough to keep the buffer caught up and always be reading current data, or is there a non-buffered AI vi that will work better for this situation. Or am I simply asking too much to have it read 4000 S/s and make comparisons and log data all in the background while doing other stuff?

    I am currently revising my comparison algorithm to try to make it a little more efficient, but I still think that devoting more processor time to this is the solution being that this is time critical while the controlling of the different variables and such in the foreground is not necesarily a high priority. All I am doing is a simple greater than or less than comparison on each element returned from the read and using a bounded count on whether or not it is "in bounds" if it is out of bounds long enough for the bounded counter to go beyond the user specified value, the input for that second is appended to an array that will later be written to a spreadsheet for analysis. It is nothing too elaborate, however, being that it will be executed up to 4000 time
    s per second potentially, it will require some attention from the processor. I am looking for any way to assure that my routine gets executed often enough, preferably to totally empty the buffer once per second.

  • Group imessage breakdown

    Hi,
    First time we have had a problem with group imessages. Does not seem to be a relevant community to post this to?
    Group messages are breaking down.
    Initial 6 in group imessage worked well for months.
    One of the guys tried to start a group with 5 today (missing 1 person who didin't want to be in the convo) and then all **** broke loose.
    We got some messages individually some but only by some people. Some messages got sent to others.
    A small group started of 4 messages coming through but couldn't send out.
    I tried to start the group with 5 aswell (same 5) no messages getting through it appears. broken aswell.
    Looks like apple did something in the background and it be broke!!
    It really isn't very friendly to complex group messages compared to facebook group msgs... hope it gets sorted out in ios8.
    Regards,
    Reuben

    Yes the members of the group will see the other phone numbers

  • HttpServletResponse Writer error in LinkedBlockingQueue in separate Thread

    I have a servlet that can process a request and send a response. Needing to process many simultaneous requests, I started using a LinkedBlockingQueue in a separate thread to take requests and process them. The problem comes when I have finished processing and want to send a response to the client. I get a NullPointerException when trying to .flush() or .close() the java.io.Writer associated with the HttpServletResponse.
    Exception in thread "Thread-36" java.lang.NullPointerException   
         at org.apache.coyote.http11.InternalOutputBuffer.realWriteBytes(InternalOutputBuffer.java:747)   
         at org.apache.tomcat.util.buf.ByteChunk.flushBuffer(ByteChunk.java:432)   
         at org.apache.coyote.http11.InternalOutputBuffer.flush(InternalOutputBuffer.java:305)   
         at org.apache.coyote.http11.Http11Processor.action(Http11Processor.java:992)   
         at org.apache.coyote.Response.action(Response.java:183)   
         at org.apache.catalina.connector.OutputBuffer.doFlush(OutputBuffer.java:322)   
         at org.apache.catalina.connector.OutputBuffer.flush(OutputBuffer.java:293)   
         at org.apache.catalina.connector.CoyoteWriter.flush(CoyoteWriter.java:95)   
         at com.interrupt.bookkeeping.http.BookkeepingSystemFacade.perform(BookkeepingSystemFacade.java:343)   
         at com.interrupt.bookkeeping.http.BookkeepingSystemFacade.run(BookkeepingSystemFacade.java:97)   
         at java.lang.Thread.run(Thread.java:613)What I do is, in the servlet, put the HttpServletRequest and HttpServletResponse into ServletInputParams, a class I made with 2 fields to hold the values (a typed bag), and add that class to the queue in the separate thread. In that separate thread, I take the ServletInputParams, get the request and response and start processing. All processing and parameter access in the request works fine, but sending a response using the HttpServletResponse's java.io.Writer gives me the error abouve. Again, this exact same processing works fine if I don't pass the HttpServletResponse between threads.
    Has anyone tackled this problem before? I am using javac 1.5.0_07 and this code is running in Tomcat 5.5. Below is a snippet from the separate thread class, 'BookkeepingSystemFacade' that accepts the servlet parameters. Thanks for any help.
         public synchronized void addToQueue(ServletInputParams servlParams) {
              System.out.println(">> PUTTING into the queue > "+ servlParams);
              try {
                   servletQueue.put(servlParams);
         public void run() {
              System.out.println(">> BookkeepingSystemFacade is RUNNING > ");
              try {
                   ServletInputParams siparams = (ServletInputParams)this.servletQueue.take();
                   while(siparams != null) {
                        System.out.println(">> TAKING from queue > "+ siparams);
                        HttpServletRequest sreq = siparams.req;
                        HttpServletResponse sres = siparams.res;
                        this.perform(sreq, sres);
                        siparams = (ServletInputParams)this.servletQueue.take();
                   System.out.println(">> FINISHING thread > ");
        public synchronized void perform(HttpServletRequest req, HttpServletResponse resp)
              throws ServletException, IOException {
             String cmdValue = req.getParameter("cmd");
             String tokenValue = req.getParameter("token");
             String dataValue = req.getParameter("data");
             String idValue = req.getParameter("id");
             IResult result = new GResult();
             //** return
         resp.setContentType("text/xml");
         Writer writer = resp.getWriter();
         writer.write(result.toXML());
         writer.flush();
         writer.close();
        }

    Sorry to resurrect and old thread but I was experiencing the same problem today and thought I'd share my solution. It seems like it's not possible to pass the response/request objects to different threads because Tomcat automatically spawns a new thread for every HttpRequest.
    I found this out here:
    http://74.125.93.132/search?q=cache:EP6LGWbrVisJ:cs.gmu.edu/~offutt/classes/642/slides/642Lec05a-ServletsMore.pdf+HttpServletResponse+concurrency&cd=1&hl=en&ct=clnk&gl=ca
    "Tomcat creates a separate thread for each HTTP request"
    So it looks like Tomcat is doing our work for us and we don't need to worry about concurrency in dealing with multiple requests simultaneously. So I think an easy solution is to simply call the "run()" method in your code manually.

  • How to create a separate invoice for each delivery line?

    Hello,
    Our customer is requesting a separate invoice for each delivery line. Is there a way to configure this? Or a customization?
    Thanks,
    Joy

    Hello,
    You need to do this through copy controls. in the transaction code VTFL, you need to develop a new routine and attach it in the area "Data VBRK/VBRP"
    attach your custom designed routine and it will split the invoice according to each line item.
    check the standard routines available for hints to develop the routine with your abap. there are several  standard rotuines available
    Hope this helps
    Thanks
    akasha

  • I get two message threads for one contact. One for sms and one for iMessage since I updated to iOS 7. How can I get them both into one thread?

    Ever since I upgraded to iOS7 just two of my contacts I get two message threads for them. One containing their iMessages to me and the other with just regular sms messages. In Contacs, their email and phone number are saved under one name. How can I get the iMessages and sms to come through under one thread in my messaging app again?

    I am having this trouble also, my partner creates a new message to send to me, or sends a picture and it always comes through as an MMS and not using iMessage ...
    will try deleting everything and starting again!

  • ORA-00313: open failed for members of log group 4 of thread 2

    Hi.
    i have found the below error in one of RAC instance.Could you please advise on this since i am new to RAC env
    ORA-00313: open failed for members of log group 4 of thread 2
    ORA-00312: online log 4 thread 2: '+NEWDISK_GROUP/DEMO/onlinelog/group_4.1453.1029312423'
    ORA-17503: ksfdopn:2 Failed to open file +NEWDISK_GROUP/DEMO/onlinelog/group_4.1453.1029312423
    ORA-15032: not all alterations performed
    ORA-29702: error occurred in Cluster Group Service operation
    ORA-29702: error occurred in Cluster Group Service operation
    Thanks
    Sai

    any update on this?

  • ORA-00313: open failed for members of log group 1 of thread 1

    Hi
    I'm restoring a database on a different host. I have the backups, from which I want to restore the database. I made the corresponding changes in the initSID.ora file and started the script to do the restore.These are the steps I followed:
    connect target=/
    run{
    startup nomount;
    allocate channel c1 type disk;
    allocate channel c2 type disk;
    allocate channel c3 type disk;
    allocate channel c4 type disk;
    restore controlfile from '/tmp_backups/rman/lev0_open_cf_SID_2826_1';
    alter database mount;
    set newname for all datafiles
    restore database;
    set until logseq = 29317 thread = 1;
    switch datafile all;
    recover database;
    alter database open resetlogs;
    One mistake I made here is that logseq should have been last seq+1, which I did not do. I have it as last seq.
    Restore of datafiles and switching of datafiles was fine. But I get error for redo log files.
    ORA-00313: open failed for members of log group 1 of thread 1
    ORA-00312: online log 1 thread 1: '/u13/oradata/SID/redo02a.log'
    ORA-27037: unable to obtain file status
    SVR4 Error: 2: No such file or directory
    Additional information: 3
    Why is it looking for at the old path yet?
    I'm not sure what I missed and how to proceed. Please help.
    Thanks,
    Mamata

    I do believe that set newname for all datafiles only means actual datafiles and no redo logs. So with open resetlogs, Oracle tries to create new redo logfiles where the backup controlfiles says they are.
    As with creating a auxilliary database in another filesystem, we use DB_NAME_FILE_CONVERT and LOG_FILE_NAME_CONVERT.
    I am not sure if it is possible to type "set newname for all datafiles" and expect also the redo logfiles to change location.
    You might try to set these two parameters and see if it works.
    good luck.
    rgds
    Kjell Ove

  • ORA-00313: open failed for members of log group 3 of thread 1

    Whenever I try to login as a user I get the following:
    sqlplus user/user
    SQL*Plus: Release 10.2.0.2.0 - Production on Fri Nov 9 10:43:39 2007
    Copyright (c) 1982, 2005, Oracle. All Rights Reserved.
    ERROR:
    ORA-01033: ORACLE initialization or shutdown in progress
    So It occurs to me to login as sysdba and restart the DB …
    SQL> connect sys/manager as sysdba
    Connected.
    SQL> shutdown immediate;
    ORA-01109: database not open
    Database dismounted.
    ORACLE instance shut down.
    SQL> startup
    ORACLE instance started.
    Total System Global Area 536870912 bytes
    Fixed Size 1281264 bytes
    Variable Size 150995728 bytes
    Database Buffers 377487360 bytes
    Redo Buffers 7106560 bytes
    Database mounted.
    ORA-00313: open failed for members of log group 3 of thread 1
    ORA-00312: online log 3 thread 1: '/u06/oradata/RKDB/redo03.log'
    ORA-27037: unable to obtain file status
    Intel SVR4 UNIX Error: 2: No such file or directory
    Additional information: 3
    SQL> quit
    I now realized what happened and how this happened. During a clean-up effort this file was accidentally deleted and unfortunately we don’t have any backups.
    I am willing to lose the data. Is there something I can do so that the startup does not try to open this file ?
    All I am able to do now is to mount the database but not open it.
    Thanks in advance,
    Daniel

    this is what I get now ...
    SQL> alter database open resetlogs;
    alter database open resetlogs
    ERROR at line 1:
    ORA-01194: file 1 needs more recovery to be consistent
    ORA-01110: data file 1: '/u02/oradata/RKDB/system01.dbf'
    SQL> Recover database until cancel;
    ORA-00279: change 608619 generated at 11/09/2007 10:00:41 needed for thread 1
    ORA-00289: suggestion : /u05/oradata/RKDB/arch/log1_33_633207859.arc
    ORA-00280: change 608619 for thread 1 is in sequence #33
    Specify log: {<RET>=suggested | filename | AUTO | CANCEL}
    ORA-00308: cannot open archived log
    '/u05/oradata/RKDB/arch/log1_33_633207859.arc'
    ORA-27037: unable to obtain file status
    Intel SVR4 UNIX Error: 2: No such file or directory
    Additional information: 3
    ORA-01547: warning: RECOVER succeeded but OPEN RESETLOGS would get error below
    ORA-01194: file 1 needs more recovery to be consistent
    ORA-01110: data file 1: '/u02/oradata/RKDB/system01.dbf'
    SQL> alter database open resetlogs;
    alter database open resetlogs
    ERROR at line 1:
    ORA-01194: file 1 needs more recovery to be consistent
    ORA-01110: data file 1: '/u02/oradata/RKDB/system01.dbf'
    SQL>

  • Schudule line date for delivery group

    HI
    can you please tell me how schudule line date is copied in to delivery group in an order (schudule line date for delivery group  is in shipping tab in a order)
    how the schuduleline date is going to be determined on "schudule line date for delivery group" field. while processing order.
    where the configuration should be d

    Where is this Delivery Group displaying in the Sales Order ..As per the Path mentioned by you , there is no such Delivery Group over there.
    Best Regards,
    Ankur

  • ORA-00313: open failed for members of log group 2 of thread 1

    We have a 4 node 32bit linux RAC (Dell/EMC) system running 9.2.0.4. It is very stable but over the past couple of months we've encountered a few ORA-00313 errors, while the system is running.
    No patterns. Different loads, times of day, nodes.
    The redo can't be opened, the node crashes, we look for errors, can't find any and then restart. The file is there and the permissions are fine. No other processes are accessing the files. No other Db errors. No O/S, SAN, Fiber, errors.
    All the research I've done shows that this is an error you'd only get on startup.
    We're going to log a TAR, but I can't believe we're the only ones to ever see this occur.
    [directory and server names have been modified to protect the system. Don't get hung up on typos or possible file system config problems too much - this system has been and is running now]
    ======================================================
    Log entries:
    Mon Oct 24 22:51:58 2005
    Errors in file /u01/app/oracle/admin/sampdb/bdump/sampdb1_lgwr_2237.trc:
    ORA-00313: open failed for members of log group 2 of thread 1
    ORA-00312: online log 2 thread 1: '/sampledb/redo0/oradata/sampdb/redo/redo102.log'
    ORA-27041: unable to open file
    Linux Error: 13: Permission denied
    Additional information: 2
    Mon Oct 24 22:51:58 2005
    Errors in file /u01/app/oracle/admin/sampdb/bdump/sampdb1_lgwr_2237.trc:
    ORA-00313: open failed for members of log group 2 of thread 1
    ORA-00312: online log 2 thread 1: '/sampledb/redo0/oradata/sampdb/redo/redo102.log'
    ORA-27041: unable to open file
    Linux Error: 13: Permission denied
    Additional information: 2
    Mon Oct 24 22:51:58 2005
    LGWR: terminating instance due to error 313
    Below are the contents of the trace file mentioned in the above log:
    trace file /u01/app/oracle/admin/sampdb/bdump/sampdb1_lgwr_2237.trc:
    [oracle@db1 bdump]$ more /u01/app/oracle/admin/sampdb/bdump/sampdb1_lgwr_2237.trc
    /u01/app/oracle/admin/sampdb/bdump/sampdb1_lgwr_2237.trc
    Oracle9i Enterprise Edition Release 9.2.0.4.0 - Production
    With the Partitioning, Real Application Clusters, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.4.0 - Production
    ORACLE_HOME = /u01/app/oracle/product/920
    System name: Linux
    Node name: db1.sample.com
    Release: 2.4.9-e.59enterprise
    Version: #1 SMP Mon Jan 17 07:02:16 EST 2005
    Machine: i686
    Instance name: sampdb1
    Redo thread mounted by this instance: 0 <none>
    Oracle process number: 24
    Unix process pid: 2237, image: [email protected] (LGWR)
    *** SESSION ID:(25.1) 2005-10-11 22:31:02.315
    CMCLI WARNING: CMInitContext: init ctx(0xad96e80)
    *** 2005-10-24 22:51:58.192
    ORA-00313: open failed for members of log group 2 of thread 1
    ORA-00312: online log 2 thread 1: '/sampledb/redo0/oradata/sampdb/redo/redo102.log'
    ORA-27041: unable to open file
    Linux Error: 13: Permission denied
    Additional information: 2
    error 313 detected in background process
    ORA-00313: open failed for members of log group 2 of thread 1
    ORA-00312: online log 2 thread 1: '/sampledb/redo0/oradata/sampdb/redo/redo102.log'
    ORA-27041: unable to open file
    Linux Error: 13: Permission denied
    Additional information: 2
    ksuitm: waiting for [5] seconds before killing DIAG

    The only thing I can still think of is file permissions.
    If the system has recently been restored or Redo Log recreated, check the file permissions and ensure that Oracle has Read and Write Access to the Directory and Files.
    At least the file permissions on the directory and files should look something like this example
    $ls -l /sampledb/redo0/oradata/sampdb/
    drwxr-xr-x oracle oinstall 4096 19 May 17:46 redo
    $ls -l /sampledb/redo0/oradata/sampdb/redo/
    -rw-r----- oracle oinstall 524288512 27 Oct 15:07 redo101.log
    $ls -l /sampledb2/redo0/oradata/sampdb/redo2/
    -rw-r----- oracle oinstall 524288512 27 Oct 15:21 redo102.log
    $ls -l /sampledb3/redo0/oradata/sampdb/redo3/
    -rw-r----- oracle oinstall 524288512 27 Oct 15:33 redo103.log

Maybe you are looking for

  • Event GR Posted is denied for the DBM Order - External service procurement

    Dear Experts, We are facing the below mentioned issue while trying to perform goods receipt for external service procurement. Error - "Event GR Posted is denied for the DBM Order  -------XXX" The error message is raised when the tracking number is ma

  • Trial subscrption for a month not work

    I have made a trial subscrprion .all steps done and get a postive answr from ms. but when i try to dial to a number fron my s3 phone its say ,no credit. how ti solve the problem?

  • Import PowerPoint with animations into Captivate 4 ?

    Can anyone let me know if it is possible to import a PowerPoint presentation into Captivate 4 AND keep all the PowerPoint animations exactly as created in the original PowerPoint ? If this is not possible, what are the options ? Thanks in advance, No

  • Xmlforest returns me a number with a comma instead of a dot

    Hi, i have this problem. I don't know what to do to solve it. select to_number('4,5') from dual -- 4.1 (it's what i want) select xmlforest(to_number('4,5') "damm_number") from dual --should give <damm_number>4.5</damm_number> but doesn't Ya it seems

  • Write a Dbms_scheduler to run a job frequently

    Hi, I need to write dbms_scheduler to run the job on monthly basis which would delete data from database which are of 2 year old from sysdate. For Eg: I have 50000 records in my table which are of differetn dates stored in database since 3 years. If