Notify() not working

Hi,
I'm developing a server using multi threading. But I'm have problem with notify() and wait() methods.
When I'm notify to thread, it will not start and i cant see any exceptions
public PResponseRequestQueue( String requestHandlerClassName,
int maxQueueLength,
int minThreads,
int maxThreads )
this.requestHandlerClassName = requestHandlerClassName;
this.maxQueueLength = maxQueueLength;
this.minThreads = minThreads;
this.maxThreads = maxThreads;
this.currentThreads = this.minThreads;
for( int i=0; i<this.minThreads; i++ )
PResponseRequestThread thread = new PResponseRequestThread( this,i, requestHandlerClassName );
thread.start();
this.threadPool.add( thread );
public synchronized void doWait(PResponseRequestThread reth)throws Exception{
     while (!waitHandler){
     reth.wait();
     waitHandler = false;
public synchronized void doWaitForChannelTimeout(long time)throws Exception{
     while (!waitTimeOutHandler){
     wait(time);
     waitTimeOutHandler = false;
public synchronized void add( Object o)
     boolean availableThread = false;
     for( int i=0;i<threadPool.size();i++ )
          rthread = ( PResponseRequestThread )threadPool.get(i);
     if( !rthread.isProcessingFlag() )
     System.out.println( "Found an available thread from p_response_runner pool for processing of incoming response.." );
     availableThread = true;
     break;
     System.out.println( "Thread no [ "+rthread.getThreadNumber()+" ] is busy in p_response_runner pool.." );
     if( !availableThread )
     if( this.currentThreads < this.maxThreads )
     System.out.println( "Creating a new thread of p_response_runner pool to satisfy the incoming responset" );
     rthread = new PResponseRequestThread( this, currentThreads++, this.requestHandlerClassName );
     rthread.start();
     this.threadPool.add( rthread );
     else
     System.out.println( "Can’t grow the thread pool in p_response_runner , guess you have to wait little while" );
     TxnKeyWord keywd = (TxnKeyWord)o;
               rthread.setKeyWD(keywd);
     synchronized (rthread) {
               try {
                              waitHandler = true;
                              rthread.notify();
                    } catch (Exception e) {
                         e.printStackTrace();
--------------------------------------------

Hi,
Just I have changed something of my code. that is the wait () method puts into the thread class.
01. This class will create the thread and put into arrayList. And also once request is receiving notification will take place in add() method
public class PResponseRequestQueue
    private int maxQueueLength;
    private  int minThreads; 
    private int maxThreads;
    private int currentThreads = 0;
    private String requestHandlerClassName;
    private static List threadPool = new ArrayList();
    private PResponseRequestThread rthread = null;
    public PResponseRequestQueue( String requestHandlerClassName,
                         int maxQueueLength,
                         int minThreads,
                         int maxThreads )
        this.requestHandlerClassName = requestHandlerClassName;
        this.maxQueueLength = maxQueueLength;
        this.minThreads = minThreads;
        this.maxThreads = maxThreads;
        this.currentThreads = this.minThreads;
        for( int i=0; i<this.minThreads; i++ )
            PResponseRequestThread thread = new PResponseRequestThread( this,i, requestHandlerClassName );
            thread.start();
            this.threadPool.add( thread );
    public synchronized void add( Object o)
             boolean availableThread = false;
             for( int i=0;i<threadPool.size();i++ )
                  rthread = ( PResponseRequestThread )threadPool.get(i);
                 if( !rthread.isProcessingFlag() )
                     System.out.println( "Found an available thread from p_response_runner pool for processing of incoming response.." );
                     availableThread = true;
                     break;
                 System.out.println( "Thread no [ "+rthread.getThreadNumber()+" ] is busy in p_response_runner pool.." );
             if( !availableThread )
                 if( this.currentThreads < this.maxThreads )
                     System.out.println( "Creating a new thread of p_response_runner pool to satisfy the incoming responset" );
                     rthread = new PResponseRequestThread( this, currentThreads++, this.requestHandlerClassName );
                     rthread.start();
                     this.threadPool.add( rthread );
                 else
                     System.out.println( "Can’t grow the thread pool in p_response_runner , guess you have to wait little while" );
             TxnKeyWord keywd = (TxnKeyWord)o;
          rthread.setKeyWD(keywd);
           synchronized (rthread) {
                   try {
                                   rthread.notify();
                    } catch (Exception e) {
                         e.printStackTrace();
}02 this is my thread class
import org.jpos.iso.ISOUtil;
import com.epic.line.logs.LogFileCreator;
import com.epic.line.logs.TestLoger;
import com.epic.line.modules.TxnKeyWord;
import com.epic.line.util.util.CurrentEexcution;
public class PResponseRequestThread extends Thread implements Comparable
     private PResponseRequestQueue queue;
    private TxnKeyWord keyWD;
    private boolean processing = false;
    private int threadNumber;
    private PResponseRequestHandler requestHandler;
    private long queue_time;
     public synchronized int getThreadNumber() {
          return threadNumber;
     public TxnKeyWord getKeyWD() {
          return this.keyWD;
     public void setKeyWD(TxnKeyWord keyWD) {
          this.keyWD = keyWD;
     public long getQueue_time() {
          return queue_time;
     public void setQueue_time(long queueTime) {
          queue_time = queueTime;
     public PResponseRequestThread(PResponseRequestQueue que, int threadNumber, String requestHandlerClassName )
        this.queue = que;
        this.threadNumber = threadNumber;
        try
            this.requestHandler = ( PResponseRequestHandler )( Class.forName( requestHandlerClassName ).newInstance() );
        catch( Exception e )
    public boolean isProcessingFlag()
        return this.processing;
    private PResponseRequestThread requestThread;
     public void run()
         this.processing = false;
         synchronized (this) {
             while( true )
                  this.processing = false;
                 try
                           this.processing = false;
                           this.wait();
                           this.processing = true;
                         this.queue_time = System.nanoTime();
                         System.out.println( "[Processing thread number in p_response_runner " + threadNumber + "]: Processing response ........" );
                         CurrentEexcution.incrP_r_exection();
                         this.wait(getKeyWD().getCHANNEL_TIME_OUT());
                         this.requestHandler.handleRequest( getKeyWD() );
                         System.out.println( "[Processing thread number in p_response_runner " + threadNumber + "]: Finished Processing response ......." );
                 catch( Exception e )
                    System.out.println("\nError is being detected while p_response_runner thread no [ "+threadNumber+" ]  is processing in p_response_runner thread.. \n");
                    LogFileCreator.writErrorTologs(e,this.keyWD);
                 }finally{
                      System.out.println("\nProcessing thread no [ "+threadNumber+" ] in p_response_runner pool returns back to the p_response_runner threads pool....\n");
                      CurrentEexcution.decrP_r_exection();
                      System.out.println("p_response_runner final countor "+CurrentEexcution.getP_r_exection());
                      setKeyWD(null);
                      setQueue_time(0);
                      this.processing = false;
    }handleRequest is the my interface
My problem is that,
When I am notify to thread (If isProcessingFlag = false), it will not start at that time but when I trace some "println", It has started after little time
Regards
Edited by: user10070648 on Dec 20, 2010 11:01 PM

Similar Messages

  • GroupWise 7.0.3 Notify not working

    Hi,
    We have GroupWise 7.0.3 and Notify running on staff machines. One user's notify application is not working correctly, e.g. not notifying her of appointments/mail via dialog boxes. I have removed and re-installed GroupWise but no luck. I have also done the following checks:
    - Made sure she was subscribed to alarms and notifications in Tools, Options, Security, Notify.
    - Checked Notify was running in task manager.
    - Checked Options in Notify, e.g. mailbox and calendar is selected, and have ticked show dialog for all item types.
    - Notify and GroupWise have been added to StartUp folder and have also ticked the box Launch Notify at Startup in Tools, Options, Environment.
    The weird thing is that in the Notification List there are notifications, but the problem is that they are not appearing as pop up's.
    Thanks for any help given.

    I have tried logging in as myself on her PC and it is still the same problem, although I can receive notifications on my PC. Will try logging in as her on my PC and see if the problem still exists.
    Thanks.
    Originally Posted by mikebell90
    On 4/20/2010 8:06 AM, 661166 wrote:
    >
    > Hi,
    >
    > We have GroupWise 7.0.3 and Notify running on staff machines. One
    > user's notify application is not working correctly, e.g. not notifying
    > her of appointments/mail via dialog boxes. I have removed and
    > re-installed GroupWise but no luck. I have also done the following
    > checks:
    >
    > - Made sure she was subscribed to alarms and notifications in Tools,
    > Options, Security, Notify.
    > - Checked Notify was running in task manager.
    > - Checked Options in Notify, e.g. mailbox and calendar is selected, and
    > have ticked show dialog for all item types.
    > - Notify and GroupWise have been added to StartUp folder and have also
    > ticked the box Launch Notify at Startup in Tools, Options, Environment.
    >
    > The weird thing is that in the Notification List there are
    > notifications, but the problem is that they are not appearing as pop
    > up's.
    >
    > Thanks for any help given.
    >
    >
    Tried on a different box?

  • Google notifier not working properly with Leoard

    Hi,
    I'm using Google notifier 1.9.100 which was working fine with 10.4. Since I moved to 10.5 I get the error "sign-in failed" when I try to login into the google account.
    It is browser independent, I can login into Google mail using firefox, but google notifier seems to randomly login.
    If I wait for about 2 min and try again, it might work.
    Has anyone encountered the same issue with 10.5 and google notifier ?

    It seems that RSS has ''broken'' since both the 10.5.X and 10.4.11 updates. None of the RSS aggregators/utilities are working properly anymore. I use RSS Menu -- probably the most useful RSS notification utility out there, but it broke and I tried NetNewsWire out of desperation and the same deal. Updates are random if simply not at all. Completely unreliable. I've opened ports for curl and php (80 and 443) and it would seem that the updates broke something. Hopefully either the RSS software people or Apple will address this.

  • When using tokens in workflows, notify is not working

    I have created a token to add the business manager. <$wfAddUser(xvg_busconname, "user")$>
    With this, I now am thinking that whatever username is in the custom metadata fields vg_busconname will be used for my notification.
    Next, I create a workflow that makes use of this token. In the first step I add this token as a user.
    When the workflow is activated, the notification does not take place.
    If, in the same step, I remove the token, and add in an alias, that contains a user, the user is notified.
    Since this needs to work dynamically, I can not see being able to use an alias, because I do not know which user will be placed in the metadata field vg_busconname.
    I am not sure why the workflow is not working when I try to use a token instead of an alias. Am I missing something simple?
    Thanks!

    I am not sure what I did exactly to resolve this, but it is all working great now so please disregard my previous posting on this

  • IMessage is not working, whatsApp won't notify unless app is open

    iMessage won't work, trying to send, but in the end says Failed
    whatsApp won't notify you about incoming messages, and won't receive them, unless application itself is open.
    CAN'T UPDATE TO iOS6.
    PUSH NOTIFICATIONS NOT WORKING
    Message was edited by: Tilek

    You may have more luck posting in the Office for Mac Product Forums , this forum is hosted by Microsoft. Let us know how it turns out though.

  • HT201493 Find My Friends: 'Notify Me' not working?

    'Notify Me' not working?

    Passcode lock has nothing to do with it
    I think the iPhone 3GS does not support this feature, on an iPhone 3GS running iOS 6 open find my friends press the "Notify" button from the Me page you get the error message below
    On iPhone 4S running iOS 6 no error message.

  • My e mail notifier is not working althouth i have done a test with my server

    ''locking as a duplicate - https://support.mozilla.com/en-US/questions/834474''
    My e-mail notifier is not working. I have checked my e mail notifier settings and tested account which was ok.
    No e-mail notifications are showing but when i enter my windows live mail i do have emails in my inbox.

    I have already tried this but still the same. I have also tried un-pairing my speakers and re-pairing! Still get broken playback at times. This even happens when I am close to the bluetooth receiver.

  • HT204407 My Friends Notify Me Not Working

    Although my entire family has iOS 6 installed, the "Notify Me" feature does not work.  I have My Friends turned on in the notification center.  What am I missing?

    Passcode lock has nothing to do with it
    I think the iPhone 3GS does not support this feature, on an iPhone 3GS running iOS 6 open find my friends press the "Notify" button from the Me page you get the error message below
    On iPhone 4S running iOS 6 no error message.

  • Iphone 6 plus wifi connection not working

    I don't know what the deal is but, I'm getting notifications of emails, and messages but when I go to the app I have nothing there. The problem has expanded and now apps aren't connecting to any wifi. I thought it might have been 3rd party apps, but now even the app store cannot connect. I've tried my home wifi, and my work wifi. Using my data plan, I have no problems connecting to anything. I'm thinking this is an IOS8 issue that needs a patch. If somebody has any other suggestions, I'm all ears!

    Nore wrote:
    I have always used the iPhone's LED flashing alert to notify me when I get a call or text message. While I was on iOS 8 Beta 2-4 it was working fine. I did a clean install of the complete iOS 8 release and ever since then, the flash alert doesn't work.
    Sometimes it will work on incoming calls, but will not work on text messages. I've tried soft/hard rebooting, clean wipe and fresh installs, and pretty much anything in between. Now, today I got my 128GB Gold ATT iPhone 6 Plus, and it's the same thing. Updated to iOS 8.1, reset everything/deleted all contents and settings. Both fresh install, and iCloud backups and still no alerts on text messages, but now I get them on calls. I tried my girls ATT 128GB iPhone 6 and she has the same problem too. My old phone was a 64GB iPhone 5S and hers was a 32GB iPhone 5. Everything was good until the official release of iOS 8.
    I've tried searching for related issues, and haven't found anything since 2011 with a quick Google search. Most links just tell you how to turn the flash alert on but no new issues. All of my devices are on iOS 8.1.  I gave my father my 64GB 5S with a clean install and he still has the issue as well. So, that makes my iPhone 6 Plus, my girls iPhone 6 and my fathers iPhone 5S not flashing LED on messages and sometimes calls. There aren't any custom vibrations enabled on any if the devices. Has anyone else experienced this problem? Is it a known bug or am I just not doing something right here? i never had an issue before the iOS 8 release. Any help would be appreciated.
    Are you a developer?  IF so try asking in the developer forum.

  • Iphone 6 plus slide bar not working

    My iphone 6 plus slide bar would not work.  I couldn't turn phone off, couldn't do anything except use Siri.  Used Siri to face time a friend to ask for help but for some reason once she answered my phone unlocked.  Have no idea why.  Hope this helps someone.

    Nore wrote:
    I have always used the iPhone's LED flashing alert to notify me when I get a call or text message. While I was on iOS 8 Beta 2-4 it was working fine. I did a clean install of the complete iOS 8 release and ever since then, the flash alert doesn't work.
    Sometimes it will work on incoming calls, but will not work on text messages. I've tried soft/hard rebooting, clean wipe and fresh installs, and pretty much anything in between. Now, today I got my 128GB Gold ATT iPhone 6 Plus, and it's the same thing. Updated to iOS 8.1, reset everything/deleted all contents and settings. Both fresh install, and iCloud backups and still no alerts on text messages, but now I get them on calls. I tried my girls ATT 128GB iPhone 6 and she has the same problem too. My old phone was a 64GB iPhone 5S and hers was a 32GB iPhone 5. Everything was good until the official release of iOS 8.
    I've tried searching for related issues, and haven't found anything since 2011 with a quick Google search. Most links just tell you how to turn the flash alert on but no new issues. All of my devices are on iOS 8.1.  I gave my father my 64GB 5S with a clean install and he still has the issue as well. So, that makes my iPhone 6 Plus, my girls iPhone 6 and my fathers iPhone 5S not flashing LED on messages and sometimes calls. There aren't any custom vibrations enabled on any if the devices. Has anyone else experienced this problem? Is it a known bug or am I just not doing something right here? i never had an issue before the iOS 8 release. Any help would be appreciated.
    Are you a developer?  IF so try asking in the developer forum.

  • IPhone 6 Plus LED alert not working.

    I have always used the iPhone's LED flashing alert to notify me when I get a call or text message. While I was on iOS 8 Beta 2-4 it was working fine. I did a clean install of the complete iOS 8 release and ever since then, the flash alert doesn't work.
    Sometimes it will work on incoming calls, but will not work on text messages. I've tried soft/hard rebooting, clean wipe and fresh installs, and pretty much anything in between. Now, today I got my 128GB Gold ATT iPhone 6 Plus, and it's the same thing. Updated to iOS 8.1, reset everything/deleted all contents and settings. Both fresh install, and iCloud backups and still no alerts on text messages, but now I get them on calls. I tried my girls ATT 128GB iPhone 6 and she has the same problem too. My old phone was a 64GB iPhone 5S and hers was a 32GB iPhone 5. Everything was good until the official release of iOS 8.
    I've tried searching for related issues, and haven't found anything since 2011 with a quick Google search. Most links just tell you how to turn the flash alert on but no new issues. All of my devices are on iOS 8.1.  I gave my father my 64GB 5S with a clean install and he still has the issue as well. So, that makes my iPhone 6 Plus, my girls iPhone 6 and my fathers iPhone 5S not flashing LED on messages and sometimes calls. There aren't any custom vibrations enabled on any if the devices. Has anyone else experienced this problem? Is it a known bug or am I just not doing something right here? i never had an issue before the iOS 8 release. Any help would be appreciated.

    Nore wrote:
    I have always used the iPhone's LED flashing alert to notify me when I get a call or text message. While I was on iOS 8 Beta 2-4 it was working fine. I did a clean install of the complete iOS 8 release and ever since then, the flash alert doesn't work.
    Sometimes it will work on incoming calls, but will not work on text messages. I've tried soft/hard rebooting, clean wipe and fresh installs, and pretty much anything in between. Now, today I got my 128GB Gold ATT iPhone 6 Plus, and it's the same thing. Updated to iOS 8.1, reset everything/deleted all contents and settings. Both fresh install, and iCloud backups and still no alerts on text messages, but now I get them on calls. I tried my girls ATT 128GB iPhone 6 and she has the same problem too. My old phone was a 64GB iPhone 5S and hers was a 32GB iPhone 5. Everything was good until the official release of iOS 8.
    I've tried searching for related issues, and haven't found anything since 2011 with a quick Google search. Most links just tell you how to turn the flash alert on but no new issues. All of my devices are on iOS 8.1.  I gave my father my 64GB 5S with a clean install and he still has the issue as well. So, that makes my iPhone 6 Plus, my girls iPhone 6 and my fathers iPhone 5S not flashing LED on messages and sometimes calls. There aren't any custom vibrations enabled on any if the devices. Has anyone else experienced this problem? Is it a known bug or am I just not doing something right here? i never had an issue before the iOS 8 release. Any help would be appreciated.
    Are you a developer?  IF so try asking in the developer forum.

  • IPhone 6 Plus mic/earpiec not working.

    A tiny drop of water went down into my earpiece 2 weeks ago and i kept sucking out the water and i left it over night in a bag of rice. The next day the earpiece was working perfectly fine but the mic for the front facing camera, facetime, siri and voice dictation is not working. Every time i try to take a video using the front facing camera all what i hear is a muffling sound. Is this an earpiece issue? Should i change the earpiece? IS there a mic inside the earpiece?

    Nore wrote:
    I have always used the iPhone's LED flashing alert to notify me when I get a call or text message. While I was on iOS 8 Beta 2-4 it was working fine. I did a clean install of the complete iOS 8 release and ever since then, the flash alert doesn't work.
    Sometimes it will work on incoming calls, but will not work on text messages. I've tried soft/hard rebooting, clean wipe and fresh installs, and pretty much anything in between. Now, today I got my 128GB Gold ATT iPhone 6 Plus, and it's the same thing. Updated to iOS 8.1, reset everything/deleted all contents and settings. Both fresh install, and iCloud backups and still no alerts on text messages, but now I get them on calls. I tried my girls ATT 128GB iPhone 6 and she has the same problem too. My old phone was a 64GB iPhone 5S and hers was a 32GB iPhone 5. Everything was good until the official release of iOS 8.
    I've tried searching for related issues, and haven't found anything since 2011 with a quick Google search. Most links just tell you how to turn the flash alert on but no new issues. All of my devices are on iOS 8.1.  I gave my father my 64GB 5S with a clean install and he still has the issue as well. So, that makes my iPhone 6 Plus, my girls iPhone 6 and my fathers iPhone 5S not flashing LED on messages and sometimes calls. There aren't any custom vibrations enabled on any if the devices. Has anyone else experienced this problem? Is it a known bug or am I just not doing something right here? i never had an issue before the iOS 8 release. Any help would be appreciated.
    Are you a developer?  IF so try asking in the developer forum.

  • Iphone 6 plus podcadt app not working

    TThe ios8 podcast app isn't working on my iPhone 6plus. It crashes continually and hangs on even one download.
    DO I NEED to find a 3rd party app to work?

    Nore wrote:
    I have always used the iPhone's LED flashing alert to notify me when I get a call or text message. While I was on iOS 8 Beta 2-4 it was working fine. I did a clean install of the complete iOS 8 release and ever since then, the flash alert doesn't work.
    Sometimes it will work on incoming calls, but will not work on text messages. I've tried soft/hard rebooting, clean wipe and fresh installs, and pretty much anything in between. Now, today I got my 128GB Gold ATT iPhone 6 Plus, and it's the same thing. Updated to iOS 8.1, reset everything/deleted all contents and settings. Both fresh install, and iCloud backups and still no alerts on text messages, but now I get them on calls. I tried my girls ATT 128GB iPhone 6 and she has the same problem too. My old phone was a 64GB iPhone 5S and hers was a 32GB iPhone 5. Everything was good until the official release of iOS 8.
    I've tried searching for related issues, and haven't found anything since 2011 with a quick Google search. Most links just tell you how to turn the flash alert on but no new issues. All of my devices are on iOS 8.1.  I gave my father my 64GB 5S with a clean install and he still has the issue as well. So, that makes my iPhone 6 Plus, my girls iPhone 6 and my fathers iPhone 5S not flashing LED on messages and sometimes calls. There aren't any custom vibrations enabled on any if the devices. Has anyone else experienced this problem? Is it a known bug or am I just not doing something right here? i never had an issue before the iOS 8 release. Any help would be appreciated.
    Are you a developer?  IF so try asking in the developer forum.

  • Iphone 6 plus led light not working in 8.3

    I updated to 8.3 a few days ago and have just noticed that my led light does not work.
    I backed up the phone, reset it to factory settings and it's still not working. Ay ideas on what I can do next?

    Nore wrote:
    I have always used the iPhone's LED flashing alert to notify me when I get a call or text message. While I was on iOS 8 Beta 2-4 it was working fine. I did a clean install of the complete iOS 8 release and ever since then, the flash alert doesn't work.
    Sometimes it will work on incoming calls, but will not work on text messages. I've tried soft/hard rebooting, clean wipe and fresh installs, and pretty much anything in between. Now, today I got my 128GB Gold ATT iPhone 6 Plus, and it's the same thing. Updated to iOS 8.1, reset everything/deleted all contents and settings. Both fresh install, and iCloud backups and still no alerts on text messages, but now I get them on calls. I tried my girls ATT 128GB iPhone 6 and she has the same problem too. My old phone was a 64GB iPhone 5S and hers was a 32GB iPhone 5. Everything was good until the official release of iOS 8.
    I've tried searching for related issues, and haven't found anything since 2011 with a quick Google search. Most links just tell you how to turn the flash alert on but no new issues. All of my devices are on iOS 8.1.  I gave my father my 64GB 5S with a clean install and he still has the issue as well. So, that makes my iPhone 6 Plus, my girls iPhone 6 and my fathers iPhone 5S not flashing LED on messages and sometimes calls. There aren't any custom vibrations enabled on any if the devices. Has anyone else experienced this problem? Is it a known bug or am I just not doing something right here? i never had an issue before the iOS 8 release. Any help would be appreciated.
    Are you a developer?  IF so try asking in the developer forum.

  • IPhone 6 Plus front camera not working or with lines and static?

    My iPhone 6 Plus front camera is having problems. Sometimes it doesn't work at all and the camera app freezes. Sometimes it works fine for a little while and sometimes it shows multi color static or lines.
    I've tried:
    Restoring from phone (without restoring backup)
    Restoring from iTunes (without restoring backup)
    Deleting ispw and re-downloading iOS 8.1.1 then restore
    The phone is less than 2 months old. I noticed it acting weird a week or so after I bought it but thought it was just software. At first it wouldn't work when using the camera app but worked fine using facetime. Now it acts up regardless.
    Any advice or opinions will be much appreciated.

    Nore wrote:
    I have always used the iPhone's LED flashing alert to notify me when I get a call or text message. While I was on iOS 8 Beta 2-4 it was working fine. I did a clean install of the complete iOS 8 release and ever since then, the flash alert doesn't work.
    Sometimes it will work on incoming calls, but will not work on text messages. I've tried soft/hard rebooting, clean wipe and fresh installs, and pretty much anything in between. Now, today I got my 128GB Gold ATT iPhone 6 Plus, and it's the same thing. Updated to iOS 8.1, reset everything/deleted all contents and settings. Both fresh install, and iCloud backups and still no alerts on text messages, but now I get them on calls. I tried my girls ATT 128GB iPhone 6 and she has the same problem too. My old phone was a 64GB iPhone 5S and hers was a 32GB iPhone 5. Everything was good until the official release of iOS 8.
    I've tried searching for related issues, and haven't found anything since 2011 with a quick Google search. Most links just tell you how to turn the flash alert on but no new issues. All of my devices are on iOS 8.1.  I gave my father my 64GB 5S with a clean install and he still has the issue as well. So, that makes my iPhone 6 Plus, my girls iPhone 6 and my fathers iPhone 5S not flashing LED on messages and sometimes calls. There aren't any custom vibrations enabled on any if the devices. Has anyone else experienced this problem? Is it a known bug or am I just not doing something right here? i never had an issue before the iOS 8 release. Any help would be appreciated.
    Are you a developer?  IF so try asking in the developer forum.

Maybe you are looking for