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?

Similar Messages

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

  • 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

  • GroupWise 2012 Deployment Bundle Issue - Not Installing

    Hello There,
    I have an issue to deploy the GroupWise 2012 client via Zen 11.1 (Had no prob to deploy GroupWise 8)
    I followed the well-done tutorial from youtube (Novell GroupWise 2012 Deployed Using ZCM 11 SP1 Part 1 - YouTube) or/and the guide (http://www.novell.com/feeds/nih/wp-c...5/GW06_lab.pdf) but it seems that it does not want to work as shown. I googled to see if anyone had the same prob but it seems not to be the case. So I assume I missed something but I do not find the trick.
    Everything works until it launches the install.bat as when I get the notification that it has completed the installation the only thing I see is that no GroupWise 2012 is installed at all and that GroupWise 8 has been uninstalled. During the process I see that it copies the first 800 files in Program Files\novell\groupwise but just before telling me that he finished all files are removed. I did not do the step where it should launch GroupWise.
    I re-created a bundles and tried to install GroupWise 2012 as GroupWise 8 but it did not work.
    It is really frustrating as I really need it to be deployed and that it was meant to be simple.
    I would be grateful if anyone could help on that.
    Thank you in advance,
    OAKFND
    PS: Here is a part of the log on the workstation
    [DEBUG] [09/11/2012 17:53:37.906] [400] [ZenworksWindowsService] [9] [] [LaunchActionHandler] [] [Exiting ProcessAction] [] []
    [DEBUG] [09/11/2012 17:53:37.906] [400] [ZenworksWindowsService] [9] [] [ActionManager] [] [Action handler Launch Action finished processing Launch GroupWise Installation successfully.] [] []
    [DEBUG] [09/11/2012 17:53:37.921] [400] [ZenworksWindowsService] [9] [] [ActionManager] [] [Caching action set 5c2142000453e9b1159e677b04577dd9] [] []
    [DEBUG] [09/11/2012 17:53:37.921] [400] [ZenworksWindowsService] [9] [] [WorkSet] [] [Caching work set GroupWise 2012 Installation or Upgrade (INSTALL)] [] []
    [DEBUG] [09/11/2012 17:53:37.921] [400] [ZenworksWindowsService] [9] [] [WorkSet] [] [ ActionSet count: 7] [] []
    [DEBUG] [09/11/2012 17:53:37.921] [400] [ZenworksWindowsService] [9] [] [WorkSet] [] [ ActionResult count: 6] [] []
    [DEBUG] [09/11/2012 17:53:37.921] [400] [ZenworksWindowsService] [9] [] [WorkSet] [] [WorkSet using session id (ZenName): b683416a643739f118900002b3dfe2fa] [] []
    [DEBUG] [09/11/2012 17:53:37.921] [400] [ZenworksWindowsService] [9] [] [WorkSet] [] [WorkSet using session id (ZenName): b683416a643739f118900002b3dfe2fa] [] []
    [DEBUG] [09/11/2012 17:53:37.921] [400] [ZenworksWindowsService] [9] [] [WorkSet] [] [ Using session id: b683416a643739f118900002b3dfe2fa] [] []
    [DEBUG] [09/11/2012 17:53:37.921] [400] [ZenworksWindowsService] [9] [] [ZenCache] [] [(Thread 9) DeleteObject(WorkSet4c7cc2c6e2cbf85974fdc7eb690c1f 99, UserContext{_LocalId=SYSTEM; _RemoteId=b683416a643739f118900002b3dfe2fa}) called] [] []
    [DEBUG] [09/11/2012 17:53:37.937] [400] [ZenworksWindowsService] [9] [] [ZenCache] [] [(Thread 9) DeleteObject returning True in 4 ms] [] []
    [DEBUG] [09/11/2012 17:53:37.937] [400] [ZenworksWindowsService] [9] [] [ZenCache] [] [(Thread 9) PutObject(WorkSet4c7cc2c6e2cbf85974fdc7eb690c1f99, UserContext{_LocalId=SYSTEM; _RemoteId=b683416a643739f118900002b3dfe2fa}) called] [] []
    [DEBUG] [09/11/2012 17:53:37.937] [400] [ZenworksWindowsService] [9] [] [ZenCache] [] [Type: Novell.Zenworks.ActionManager.WorkSet] [] []
    [DEBUG] [09/11/2012 17:53:37.953] [400] [ZenworksWindowsService] [9] [] [ZenCache] [] [(Thread 9) PutObject returning C:\Program Files\Novell\ZENworks\cache\zmd\ZenCache\3b17bbd3-f015-4c92-a7e0-c337a893ab0f in 10 ms] [] []
    [DEBUG] [09/11/2012 17:53:37.953] [400] [ZenworksWindowsService] [9] [] [WorkSet] [] [Cached workset GroupWise 2012 Installation or Upgrade as WorkSet4c7cc2c6e2cbf85974fdc7eb690c1f99] [] []
    [DEBUG] [09/11/2012 17:53:37.953] [400] [ZenworksWindowsService] [9] [] [ActionManager] [] [Processing action: Delete GroupWise2012 Directory] [] []
    [DEBUG] [09/11/2012 17:53:37.953] [400] [ZenworksWindowsService] [9] [] [ActionManager] [] [Caching action set 5c2142000453e9b1159e677b04577dd9] [] []
    [DEBUG] [09/11/2012 17:53:37.953] [400] [ZenworksWindowsService] [9] [] [WorkSet] [] [Caching work set GroupWise 2012 Installation or Upgrade (INSTALL)] [] []
    [DEBUG] [09/11/2012 17:53:37.953] [400] [ZenworksWindowsService] [9] [] [WorkSet] [] [ ActionSet count: 7] [] []
    [DEBUG] [09/11/2012 17:53:37.968] [400] [ZenworksWindowsService] [9] [] [WorkSet] [] [ ActionResult count: 7] [] []
    [DEBUG] [09/11/2012 17:53:37.968] [400] [ZenworksWindowsService] [9] [] [WorkSet] [] [WorkSet using session id (ZenName): b683416a643739f118900002b3dfe2fa] [] []
    [DEBUG] [09/11/2012 17:53:37.968] [400] [ZenworksWindowsService] [9] [] [WorkSet] [] [WorkSet using session id (ZenName): b683416a643739f118900002b3dfe2fa] [] []
    [DEBUG] [09/11/2012 17:53:37.968] [400] [ZenworksWindowsService] [9] [] [WorkSet] [] [ Using session id: b683416a643739f118900002b3dfe2fa] [] []
    [DEBUG] [09/11/2012 17:53:37.968] [400] [ZenworksWindowsService] [9] [] [ZenCache] [] [(Thread 9) DeleteObject(WorkSet4c7cc2c6e2cbf85974fdc7eb690c1f 99, UserContext{_LocalId=SYSTEM; _RemoteId=b683416a643739f118900002b3dfe2fa}) called] [] []
    [DEBUG] [09/11/2012 17:53:37.968] [400] [ZenworksWindowsService] [9] [] [ZenCache] [] [(Thread 9) DeleteObject returning True in 5 ms] [] []
    [DEBUG] [09/11/2012 17:53:37.968] [400] [ZenworksWindowsService] [9] [] [ZenCache] [] [(Thread 9) PutObject(WorkSet4c7cc2c6e2cbf85974fdc7eb690c1f99, UserContext{_LocalId=SYSTEM; _RemoteId=b683416a643739f118900002b3dfe2fa}) called] [] []
    [DEBUG] [09/11/2012 17:53:37.968] [400] [ZenworksWindowsService] [9] [] [ZenCache] [] [Type: Novell.Zenworks.ActionManager.WorkSet] [] []
    [DEBUG] [09/11/2012 17:53:37.984] [400] [ZenworksWindowsService] [9] [] [ZenCache] [] [(Thread 9) PutObject returning C:\Program Files\Novell\ZENworks\cache\zmd\ZenCache\d4bb83fe-6151-42fe-9656-c2c35f55c0d2 in 9 ms] [] []
    [DEBUG] [09/11/2012 17:53:37.984] [400] [ZenworksWindowsService] [9] [] [WorkSet] [] [Cached workset GroupWise 2012 Installation or Upgrade as WorkSet4c7cc2c6e2cbf85974fdc7eb690c1f99] [] []
    [DEBUG] [09/11/2012 17:53:37.984] [400] [ZenworksWindowsService] [9] [] [ActionManager] [] [Updating status for set 4c7cc2c6e2cbf85974fdc7eb690c1f99] [] []
    [DEBUG] [09/11/2012 17:53:37.984] [400] [ZenworksWindowsService] [9] [] [ActionManager] [] [Work set completed. Deleting cached action set 5c2142000453e9b1159e677b04577dd9] [] []
    [DEBUG] [09/11/2012 17:53:37.984] [400] [ZenworksWindowsService] [9] [] [WorkSet] [] [Deleting work set GroupWise 2012 Installation or Upgrade (INSTALL)] [] []
    [DEBUG] [09/11/2012 17:53:37.984] [400] [ZenworksWindowsService] [9] [] [WorkSet] [] [WorkSet using session id (ZenName): b683416a643739f118900002b3dfe2fa] [] []
    [DEBUG] [09/11/2012 17:53:37.984] [400] [ZenworksWindowsService] [9] [] [ZenCache] [] [(Thread 9) DeleteObject(WorkSet4c7cc2c6e2cbf85974fdc7eb690c1f 99, UserContext{_LocalId=SYSTEM; _RemoteId=b683416a643739f118900002b3dfe2fa}) called] [] []
    [DEBUG] [09/11/2012 17:53:37.984] [400] [ZenworksWindowsService] [9] [] [ZenCache] [] [(Thread 9) DeleteObject returning True in 4 ms] [] []
    [DEBUG] [09/11/2012 17:53:37.984] [400] [ZenworksWindowsService] [9] [] [ActionManUtil] [] [DestroyDauSession countdown reset to 500000 milliseconds for session 6088812] [] []
    [DEBUG] [09/11/2012 17:53:37.984] [400] [ZenworksWindowsService] [9] [] [ActionManager] [] [GetResultSetRequest returning DO_NOTHING] [] []
    [DEBUG] [09/11/2012 17:53:38.015] [400] [ZenworksWindowsService] [9] [] [Status Library] [] [SetStatus: srchSql= select successcount, failurecount from zstatus where userguid = '' and objectguid = '5c2142000453e9b1159e677b04577dd9' and operationtype = 'Bundle.Install'] [] []
    [DEBUG] [09/11/2012 17:53:38.015] [400] [ZenworksWindowsService] [9] [] [Status Library] [] [SetStatus: sql= insert into zstatus(timestamp, userguid, objectguid, source, objecttype, operationtype, operationstatus, successcount, failurecount, objectversion ) values ( 634829756180156250,'','5c2142000453e9b1159e677b045 77dd9',1,'B','Bundle.Install','S',6,1,0)] [] []
    [DEBUG] [09/11/2012 17:53:38.015] [400] [ZenworksWindowsService] [9] [] [ZIconMod] [] [Received exception closing the activityIndicator to user session (999): Failed to connect to an IPC Port: The system cannot find the file specified.
    Server stack trace:
    at System.Runtime.Remoting.Channels.Ipc.IpcPort.Conne ct(String portName, Boolean secure, TokenImpersonationLevel impersonationLevel, Int32 timeout)
    at System.Runtime.Remoting.Channels.Ipc.ConnectionCac he.GetConnection(String portName, Boolean secure, TokenImpersonationLevel level, Int32 timeout)
    at System.Runtime.Remoting.Channels.Ipc.IpcClientTran sportSink.ProcessMessage(IMessage msg, ITransportHeaders requestHeaders, Stream requestStream, ITransportHeaders& responseHeaders, Stream& responseStream)
    at System.Runtime.Remoting.Channels.BinaryClientForma tterSink.SyncProcessMessage(IMessage msg)
    Exception rethrown at (0):
    at System.Runtime.Remoting.Proxies.RealProxy.HandleRe turnMessage(IMessage reqMsg, IMessage retMsg)
    at System.Runtime.Remoting.Proxies.RealProxy.PrivateI nvoke(MessageData& msgData, Int32 type)
    at Novell.Zenworks.NotifyIcon.Remoting.IZenIconUIServ er.CloseActivityIndicator(String guid, String status, String name)
    at Novell.Zenworks.NotifyIcon.Module.ZenNotifyIcon.Cl oseActivityIndicator(Session session, String guid, String status, String name)] [] []
    [DEBUG] [09/11/2012 17:53:38.015] [400] [ZenworksWindowsService] [9] [] [BundleManager] [] [Finished Process Action for Item: GroupWise 2012 Installation or Upgrade Action: INSTALL Result: True] [] []
    [DEBUG] [09/11/2012 17:53:38.109] [400] [ZenworksWindowsService] [25] [] [BundleManager] [] [From IconUtils.cs)] [] []
    [DEBUG] [09/11/2012 17:53:38.109] [400] [ZenworksWindowsService] [25] [] [BundleManager] [] [Required icon found, sending for overlay] [] []
    [DEBUG] [09/11/2012 17:53:38.125] [400] [ZenworksWindowsService] [25] [] [BundleManager] [] [Evaluating System Requirements for GroupWise 2012 Installation or Upgrade; GUID: 5c2142000453e9b1159e677b04577dd9] [] []
    [DEBUG] [09/11/2012 17:53:38.125] [400] [ZenworksWindowsService] [25] [] [Requirement Handler] [] [Comparing actualValue: 5.1.2600.196608 with expectedValue: 5.1.2600.196608 for compareOperator: GreaterEquals returned True] [] []
    [DEBUG] [09/11/2012 17:53:38.125] [400] [ZenworksWindowsService] [25] [] [Requirements Module] [] [First requirement returned True] [] []
    [DEBUG] [09/11/2012 17:53:38.125] [400] [ZenworksWindowsService] [25] [] [ArchitectureRequirementHandler] [] [Got architecture - 32] [] []
    [DEBUG] [09/11/2012 17:53:38.125] [400] [ZenworksWindowsService] [25] [] [ArchitectureRequirementHandler] [] [Expecting architecture - 32] [] []
    [DEBUG] [09/11/2012 17:53:38.125] [400] [ZenworksWindowsService] [25] [] [ArchitectureRequirementHandler] [] [Returning - True] [] []
    [DEBUG] [09/11/2012 17:53:38.125] [400] [ZenworksWindowsService] [25] [] [Requirements Module] [] [AND-ing result(True) with previous results (True) yields True] [] []
    [DEBUG] [09/11/2012 17:53:38.125] [400] [ZenworksWindowsService] [25] [] [Requirements Module] [] [First requirement returned True] [] []
    [DEBUG] [09/11/2012 17:53:38.125] [400] [ZenworksWindowsService] [25] [] [BundleManager] [] [System Requirements Passed for GroupWise 2012 Installation or Upgrade] [] []

    I don't have GW for any type of testing, but what I would do for testing
    is .......
    Replace the Install.bat with just calling CMD.exe
    then from the command prompt
    walk through the commands in the install.bat one by one to see what is
    happening............
    On 9/11/2012 12:06 PM, OakFND wrote:
    >
    > Hello There,
    >
    > I have an issue to deploy the GroupWise 2012 client via Zen 11.1 (Had
    > no prob to deploy GroupWise 8)
    >
    > I followed the well-done tutorial from youtube ('Novell GroupWise 2012
    > Deployed Using ZCM 11 SP1 Part 1 - YouTube'
    > (http://www.youtube.com/watch?v=V9Wa2ETf7ag)) or/and the guide
    > (http://www.novell.com/feeds/nih/wp-c...5/GW06_lab.pdf)
    > but it seems that it does not want to work as shown. I googled to see if
    > anyone had the same prob but it seems not to be the case. So I assume I
    > missed something but I do not find the trick.
    >
    > Everything works until it launches the install.bat as when I get the
    > notification that it has completed the installation the only thing I see
    > is that no GroupWise 2012 is installed at all and that GroupWise 8 has
    > been uninstalled. During the process I see that it copies the first 800
    > files in Program Files\novell\groupwise but just before telling me that
    > he finished all files are removed. I did not do the step where it should
    > launch GroupWise.
    >
    > I re-created a bundles and tried to install GroupWise 2012 as GroupWise
    > 8 but it did not work.
    >
    > It is really frustrating as I really need it to be deployed and that it
    > was meant to be simple.
    >
    > I would be grateful if anyone could help on that.
    > Thank you in advance,
    > OAKFND
    >
    > PS: Here is a part of the log on the workstation
    >
    > [DEBUG] [09/11/2012 17:53:37.906] [400] [ZenworksWindowsService] [9] []
    > [LaunchActionHandler] [] [Exiting ProcessAction] [] []
    > [DEBUG] [09/11/2012 17:53:37.906] [400] [ZenworksWindowsService] [9]
    > [] [ActionManager] [] [Action handler Launch Action finished processing
    > Launch GroupWise Installation successfully.] [] []
    > [DEBUG] [09/11/2012 17:53:37.921] [400] [ZenworksWindowsService] [9]
    > [] [ActionManager] [] [Caching action set
    > 5c2142000453e9b1159e677b04577dd9] [] []
    > [DEBUG] [09/11/2012 17:53:37.921] [400] [ZenworksWindowsService] [9]
    > [] [WorkSet] [] [Caching work set GroupWise 2012 Installation or Upgrade
    > (INSTALL)] [] []
    > [DEBUG] [09/11/2012 17:53:37.921] [400] [ZenworksWindowsService] [9]
    > [] [WorkSet] [] [ ActionSet count: 7] [] []
    > [DEBUG] [09/11/2012 17:53:37.921] [400] [ZenworksWindowsService] [9]
    > [] [WorkSet] [] [ ActionResult count: 6] [] []
    > [DEBUG] [09/11/2012 17:53:37.921] [400] [ZenworksWindowsService] [9]
    > [] [WorkSet] [] [WorkSet using session id (ZenName):
    > b683416a643739f118900002b3dfe2fa] [] []
    > [DEBUG] [09/11/2012 17:53:37.921] [400] [ZenworksWindowsService] [9]
    > [] [WorkSet] [] [WorkSet using session id (ZenName):
    > b683416a643739f118900002b3dfe2fa] [] []
    > [DEBUG] [09/11/2012 17:53:37.921] [400] [ZenworksWindowsService] [9]
    > [] [WorkSet] [] [ Using session id: b683416a643739f118900002b3dfe2fa]
    > [] []
    > [DEBUG] [09/11/2012 17:53:37.921] [400] [ZenworksWindowsService] [9]
    > [] [ZenCache] [] [(Thread 9)
    > DeleteObject(WorkSet4c7cc2c6e2cbf85974fdc7eb690c1f 99,
    > UserContext{_LocalId=SYSTEM;
    > _RemoteId=b683416a643739f118900002b3dfe2fa}) called] [] []
    > [DEBUG] [09/11/2012 17:53:37.937] [400] [ZenworksWindowsService] [9]
    > [] [ZenCache] [] [(Thread 9) DeleteObject returning True in 4 ms] [] []
    >
    > [DEBUG] [09/11/2012 17:53:37.937] [400] [ZenworksWindowsService] [9]
    > [] [ZenCache] [] [(Thread 9)
    > PutObject(WorkSet4c7cc2c6e2cbf85974fdc7eb690c1f99,
    > UserContext{_LocalId=SYSTEM;
    > _RemoteId=b683416a643739f118900002b3dfe2fa}) called] [] []
    > [DEBUG] [09/11/2012 17:53:37.937] [400] [ZenworksWindowsService] [9]
    > [] [ZenCache] [] [Type: Novell.Zenworks.ActionManager.WorkSet] [] []
    > [DEBUG] [09/11/2012 17:53:37.953] [400] [ZenworksWindowsService] [9]
    > [] [ZenCache] [] [(Thread 9) PutObject returning C:\Program
    > Files\Novell\ZENworks\cache\zmd\ZenCache\3b17bbd3-f015-4c92-a7e0-c337a893ab0f
    > in 10 ms] [] []
    > [DEBUG] [09/11/2012 17:53:37.953] [400] [ZenworksWindowsService] [9]
    > [] [WorkSet] [] [Cached workset GroupWise 2012 Installation or Upgrade
    > as WorkSet4c7cc2c6e2cbf85974fdc7eb690c1f99] [] []
    > [DEBUG] [09/11/2012 17:53:37.953] [400] [ZenworksWindowsService] [9]
    > [] [ActionManager] [] [Processing action: Delete GroupWise2012
    > Directory] [] []
    > [DEBUG] [09/11/2012 17:53:37.953] [400] [ZenworksWindowsService] [9]
    > [] [ActionManager] [] [Caching action set
    > 5c2142000453e9b1159e677b04577dd9] [] []
    > [DEBUG] [09/11/2012 17:53:37.953] [400] [ZenworksWindowsService] [9]
    > [] [WorkSet] [] [Caching work set GroupWise 2012 Installation or Upgrade
    > (INSTALL)] [] []
    > [DEBUG] [09/11/2012 17:53:37.953] [400] [ZenworksWindowsService] [9]
    > [] [WorkSet] [] [ ActionSet count: 7] [] []
    > [DEBUG] [09/11/2012 17:53:37.968] [400] [ZenworksWindowsService] [9]
    > [] [WorkSet] [] [ ActionResult count: 7] [] []
    > [DEBUG] [09/11/2012 17:53:37.968] [400] [ZenworksWindowsService] [9]
    > [] [WorkSet] [] [WorkSet using session id (ZenName):
    > b683416a643739f118900002b3dfe2fa] [] []
    > [DEBUG] [09/11/2012 17:53:37.968] [400] [ZenworksWindowsService] [9]
    > [] [WorkSet] [] [WorkSet using session id (ZenName):
    > b683416a643739f118900002b3dfe2fa] [] []
    > [DEBUG] [09/11/2012 17:53:37.968] [400] [ZenworksWindowsService] [9]
    > [] [WorkSet] [] [ Using session id: b683416a643739f118900002b3dfe2fa]
    > [] []
    > [DEBUG] [09/11/2012 17:53:37.968] [400] [ZenworksWindowsService] [9]
    > [] [ZenCache] [] [(Thread 9)
    > DeleteObject(WorkSet4c7cc2c6e2cbf85974fdc7eb690c1f 99,
    > UserContext{_LocalId=SYSTEM;
    > _RemoteId=b683416a643739f118900002b3dfe2fa}) called] [] []
    > [DEBUG] [09/11/2012 17:53:37.968] [400] [ZenworksWindowsService] [9]
    > [] [ZenCache] [] [(Thread 9) DeleteObject returning True in 5 ms] [] []
    >
    > [DEBUG] [09/11/2012 17:53:37.968] [400] [ZenworksWindowsService] [9]
    > [] [ZenCache] [] [(Thread 9)
    > PutObject(WorkSet4c7cc2c6e2cbf85974fdc7eb690c1f99,
    > UserContext{_LocalId=SYSTEM;
    > _RemoteId=b683416a643739f118900002b3dfe2fa}) called] [] []
    > [DEBUG] [09/11/2012 17:53:37.968] [400] [ZenworksWindowsService] [9]
    > [] [ZenCache] [] [Type: Novell.Zenworks.ActionManager.WorkSet] [] []
    > [DEBUG] [09/11/2012 17:53:37.984] [400] [ZenworksWindowsService] [9]
    > [] [ZenCache] [] [(Thread 9) PutObject returning C:\Program
    > Files\Novell\ZENworks\cache\zmd\ZenCache\d4bb83fe-6151-42fe-9656-c2c35f55c0d2
    > in 9 ms] [] []
    > [DEBUG] [09/11/2012 17:53:37.984] [400] [ZenworksWindowsService] [9]
    > [] [WorkSet] [] [Cached workset GroupWise 2012 Installation or Upgrade
    > as WorkSet4c7cc2c6e2cbf85974fdc7eb690c1f99] [] []
    > [DEBUG] [09/11/2012 17:53:37.984] [400] [ZenworksWindowsService] [9]
    > [] [ActionManager] [] [Updating status for set
    > 4c7cc2c6e2cbf85974fdc7eb690c1f99] [] []
    > [DEBUG] [09/11/2012 17:53:37.984] [400] [ZenworksWindowsService] [9]
    > [] [ActionManager] [] [Work set completed. Deleting cached action set
    > 5c2142000453e9b1159e677b04577dd9] [] []
    > [DEBUG] [09/11/2012 17:53:37.984] [400] [ZenworksWindowsService] [9]
    > [] [WorkSet] [] [Deleting work set GroupWise 2012 Installation or
    > Upgrade (INSTALL)] [] []
    > [DEBUG] [09/11/2012 17:53:37.984] [400] [ZenworksWindowsService] [9]
    > [] [WorkSet] [] [WorkSet using session id (ZenName):
    > b683416a643739f118900002b3dfe2fa] [] []
    > [DEBUG] [09/11/2012 17:53:37.984] [400] [ZenworksWindowsService] [9]
    > [] [ZenCache] [] [(Thread 9)
    > DeleteObject(WorkSet4c7cc2c6e2cbf85974fdc7eb690c1f 99,
    > UserContext{_LocalId=SYSTEM;
    > _RemoteId=b683416a643739f118900002b3dfe2fa}) called] [] []
    > [DEBUG] [09/11/2012 17:53:37.984] [400] [ZenworksWindowsService] [9]
    > [] [ZenCache] [] [(Thread 9) DeleteObject returning True in 4 ms] [] []
    >
    > [DEBUG] [09/11/2012 17:53:37.984] [400] [ZenworksWindowsService] [9]
    > [] [ActionManUtil] [] [DestroyDauSession countdown reset to 500000
    > milliseconds for session 6088812] [] []
    > [DEBUG] [09/11/2012 17:53:37.984] [400] [ZenworksWindowsService] [9]
    > [] [ActionManager] [] [GetResultSetRequest returning DO_NOTHING] [] []
    > [DEBUG] [09/11/2012 17:53:38.015] [400] [ZenworksWindowsService] [9]
    > [] [Status Library] [] [SetStatus: srchSql= select successcount,
    > failurecount from zstatus where userguid = '' and objectguid =
    > '5c2142000453e9b1159e677b04577dd9' and operationtype = 'Bundle.Install']
    > [] []
    > [DEBUG] [09/11/2012 17:53:38.015] [400] [ZenworksWindowsService] [9]
    > [] [Status Library] [] [SetStatus: sql= insert into zstatus(timestamp,
    > userguid, objectguid, source, objecttype, operationtype,
    > operationstatus, successcount, failurecount, objectversion ) values (
    > 634829756180156250,'','5c2142000453e9b1159e677b045 77dd9',1,'B','Bundle.Install','S',6,1,0)]
    > [] []
    > [DEBUG] [09/11/2012 17:53:38.015] [400] [ZenworksWindowsService] [9]
    > [] [ZIconMod] [] [Received exception closing the activityIndicator to
    > user session (999): Failed to connect to an IPC Port: The system cannot
    > find the file specified.
    >
    >
    > Server stack trace:
    > at System.Runtime.Remoting.Channels.Ipc.IpcPort.Conne ct(String
    > portName, Boolean secure, TokenImpersonationLevel impersonationLevel,
    > Int32 timeout)
    > at
    > System.Runtime.Remoting.Channels.Ipc.ConnectionCac he.GetConnection(String
    > portName, Boolean secure, TokenImpersonationLevel level, Int32 timeout)
    > at
    > System.Runtime.Remoting.Channels.Ipc.IpcClientTran sportSink.ProcessMessage(IMessage
    > msg, ITransportHeaders requestHeaders, Stream requestStream,
    > ITransportHeaders& responseHeaders, Stream& responseStream)
    > at
    > System.Runtime.Remoting.Channels.BinaryClientForma tterSink.SyncProcessMessage(IMessage
    > msg)
    >
    > Exception rethrown at (0):
    > at
    > System.Runtime.Remoting.Proxies.RealProxy.HandleRe turnMessage(IMessage
    > reqMsg, IMessage retMsg)
    > at
    > System.Runtime.Remoting.Proxies.RealProxy.PrivateI nvoke(MessageData&
    > msgData, Int32 type)
    > at
    > Novell.Zenworks.NotifyIcon.Remoting.IZenIconUIServ er.CloseActivityIndicator(String
    > guid, String status, String name)
    > at
    > Novell.Zenworks.NotifyIcon.Module.ZenNotifyIcon.Cl oseActivityIndicator(Session
    > session, String guid, String status, String name)] [] []
    > [DEBUG] [09/11/2012 17:53:38.015] [400] [ZenworksWindowsService] [9]
    > [] [BundleManager] [] [Finished Process Action for Item: GroupWise 2012
    > Installation or Upgrade Action: INSTALL Result: True] [] []
    > [DEBUG] [09/11/2012 17:53:38.109] [400] [ZenworksWindowsService] [25]
    > [] [BundleManager] [] [From IconUtils.cs)] [] []
    > [DEBUG] [09/11/2012 17:53:38.109] [400] [ZenworksWindowsService] [25]
    > [] [BundleManager] [] [Required icon found, sending for overlay] [] []
    > [DEBUG] [09/11/2012 17:53:38.125] [400] [ZenworksWindowsService] [25]
    > [] [BundleManager] [] [Evaluating System Requirements for GroupWise 2012
    > Installation or Upgrade; GUID: 5c2142000453e9b1159e677b04577dd9] [] []
    > [DEBUG] [09/11/2012 17:53:38.125] [400] [ZenworksWindowsService] [25]
    > [] [Requirement Handler] [] [Comparing actualValue: 5.1.2600.196608 with
    > expectedValue: 5.1.2600.196608 for compareOperator: GreaterEquals
    > returned True] [] []
    > [DEBUG] [09/11/2012 17:53:38.125] [400] [ZenworksWindowsService] [25]
    > [] [Requirements Module] [] [First requirement returned True] [] []
    > [DEBUG] [09/11/2012 17:53:38.125] [400] [ZenworksWindowsService] [25]
    > [] [ArchitectureRequirementHandler] [] [Got architecture - 32] [] []
    > [DEBUG] [09/11/2012 17:53:38.125] [400] [ZenworksWindowsService] [25]
    > [] [ArchitectureRequirementHandler] [] [Expecting architecture - 32] []
    > []
    > [DEBUG] [09/11/2012 17:53:38.125] [400] [ZenworksWindowsService] [25]
    > [] [ArchitectureRequirementHandler] [] [Returning - True] [] []
    > [DEBUG] [09/11/2012 17:53:38.125] [400] [ZenworksWindowsService] [25]
    > [] [Requirements Module] [] [AND-ing result(True) with previous results
    > (True) yields True] [] []
    > [DEBUG] [09/11/2012 17:53:38.125] [400] [ZenworksWindowsService] [25]
    > [] [Requirements Module] [] [First requirement returned True] [] []
    > [DEBUG] [09/11/2012 17:53:38.125] [400] [ZenworksWindowsService] [25]
    > [] [BundleManager] [] [System Requirements Passed for GroupWise 2012
    > Installation or Upgrade] [] []
    >
    >
    Craig Wilson - MCNE, MCSE, CCNA
    Novell Knowledge Partner
    Novell does not officially monitor these forums.
    Suggestions/Opinions/Statements made by me are solely my own.
    These thoughts may not be shared by either Novell or any rational human.

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

  • Adding contacts to my new 8900 is not working.

    adding contacts from oultlook and /or outlook express to my new 8900 is not working. i tried everything from removing and re-installing the desktop manager to removing the battery of the device. nothing seems to be working.

    Ah, very helpful when we have the complete information.
    Desktop Manager 4.7 is not compatible with Outlook 2000, so that won't work. You will need to use DM version 4.2, Service Pack 2; or upgrade your Outlook to 2003 or better.
    For Express, it should work with Outlook Express 6. Check your advanced sync settings configuration and make sure you have it set to two-way sync and to notify you. 
    Desktop Manager 4.7:
    The following organizers are supported for use with Intellisync:
    IBM Lotus Notes 6, 6.5, 7, 8
    Microsoft Outlook 2002, 2003, 2007
    Microsoft Outlook Express 6, Microsoft Windows Contacts (Vista Address Book)
    Novell GroupWise 6.5, 7
    Yahoo!®
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

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

Maybe you are looking for