TMS 14.4.1 snapshots in Monitoring Conference Control Center not updating

Snap shots in the Conference Control Center are not updating.
We are using TMS 14.4.1, Java 7 update 51 on the server.
All are C-Series (c20 or c60) endpoints running version TC7.1.4 bridged with an MCU (MSE 8510)
All end points have web snapshot enabled
I have tried using Java 7, update 51 and the current version on the Windows 7 desktop.

Hi Patrick,
We don't have a conductor, so that may be one point of difference between yours and mine, but the original poster didn't mention any conductor or MCU, and his screen grab looks like a simple point to point call.
There were issues in versions of TMS prior to 14.4 with the websnapshots in CCC - this is mentioned in the release notes as an "other change": "Enabled Conference Control Center snapshots for systems running Cisco TelePresence TC software version 6 and later."
Wayne
Please remember to rate responses and to mark your question as answered if appropriate.

Similar Messages

  • TMS Conference Control Center not populating

    Hi,
    In our TMS version 14.5.0, The endpoints stop populating in the conference control center.
    I do have enable Adhoc Conference Discovery set to Yes under Network Settings.
    On the main page of TMS, it shows active and finished conferences but nothing displays in the conference control center.
    Any help would be appreciated!
    Jazz

    Probably best to start a discussion of your own, and link to the other discussions that might be of context to your issue so to not mix up different discussions in a single thread.  Also, please provide what software versions you're running for TMS and Conductor, as well as what versions of TMS and Conductor was working before it stopped.

  • Amdcccle (Catalyst Control Center) not saving multiple monitor setting

    I followed the wiki to the letter, but I cannot get any x window session to save the changes I make in amdcccle.  All I am trying to do is get multiple monitors configured, and it works great with the catalyst control center but it never saves these settings.
    I have done the following:
    gksu amdcccle
    gksudo amdcccle
    also:
    sudo aticonfig -f --initial=dual-head --screen-layout=right
    and many other interations of aticonfig.  The -dtop option complains that it doesnt work with RandR enabled.
    I got this working a few weeks ago but can't remember what I did.  If amdcccle could actually save the current configuration to file that would solve the issue but it simply will not.

    Hello insco6750,
    When you updated the drivers did you install over top of existing software or uninstall beforehand?
    First we should try ripping everything ATI off of the system, including software, drivers and CCC. You should be able to uninstall everything through Add/remove programs.
    After you remove everything reboot and let windows reinstall it's own drivers and software. You don't need CCC to do dual monitors so we can do testing without it.
    Once you let windows install see if your HDMI output no longer works when you switch to the TV.
    Post back your results after completing this.
    If I have helped you in any way click the Kudos button to say Thanks.
    The community works together, click Accept as Solution on the post that solves your issue for other members of the community to benefit from the solution.
    - Friendship is magical.

  • TMS Conference Control Center (CCC) problem

    I'm using TMS v14.5.0 to monitor/manage our environment. When in the CCC, the left pane (shows My Watch List, All Video conferences and Reservation, etc.) collapses randomly. In other words, I hit the plus sign (+) next to Active to see what's going on. Frequently, as soon as I click on an individual conference, the list collapses. My guess is that it's a java problem, but wanted to see what others had to say (and how to fix). Java version is v6 (build 1.6.0_23-b05). EI v11.0.9600.17501. Firefox v32.0.2. TMS running on virtual Win2012 server. The problem happens when using IE or Firefox. We had the same problem with TMS v13.2.1 and server v2003, but it seems worse now. We do not use CUCM or Prime Collaboration.

    I had a similar problem and we upgraded TMS's Java to V 7.51 and made sure that the machines accessing TMS CCC were on at least version 7 and we had no further issues.  I never had the auto collapse happen but we did have some very interesting issues.

  • TMS conference control center does not populate Conductor Conferences

    Hello,
    We have just recently upgraded to conductors running 3.01 and all TPS to 4.1.  TMS is running 14.5 with TMSPE on 1.3.  After the upgrade to 3.01 TMS no longer sees any conferences managed by the conductors.  Previously on 2.4.1 this worked without issue.  All systems have been booted and had services restarted and yet we have nothing.  All other conferences show, including our 8510, 8710 and regular point to point.  Only conductor does not show.  Anyone else have this happen?
    Thanks,
    Liam

    I would rather not upgrade until TMS 14.6 is proven not to have major bugs (like 14.0 which caused a lot of havoc for me).  I did no see requirements for 3.01 to be on 14.6 so this should all technically still work, at least by Cisco's documentation.  In previous upgrades it took about a day for these conferences to come back so I did not think anything of it until I came back in this week and they still did not show.  Since I have rebooted, restarted all services, verified that all versions are compatible and still nothing.

  • How do you monitor a background thread and update the GUI

    Hello,
    I have a thread which makes its output available on PipedInputStreams. I should like to have other threads monitor the input streams and update a JTextArea embedded in a JScrollPane using the append() method.
    According to the Swing tutorial, the JTextArea must be updated on the Event Dispatch Thread. When I use SwingUtilities.invokeLater () to run my monitor threads, the component is not redrawn until the thread exits, so you don't see the progression. If I add a paint () method, the output is choppy and the scrollbar doesn't appear until the thread exits.
    Ironically, if I create and start new threads instead of using invokeLater(), I get the desired result.
    What is the correct architecture to accomplish my goal without violating Swing rules?
    Thanks,
    Brad
    Code follows:
    import java.lang.*;
    import java.io.*;
    import javax.swing.*;
    import javax.swing.text.*;
    import java.awt.*;
    import java.awt.event.*;
    public class SystemCommand implements Runnable
         private String[] command;
         private PipedOutputStream pipeout;
         private PipedOutputStream pipeerr;
         public SystemCommand ( String[] cmd )
              command = cmd;
              pipeout = null;
              pipeerr = null;
         public void run ()
              exec ();
         public void exec ()
              // --- Local class to redirect the process input stream to a piped output stream
              class OutputMonitor implements Runnable
                   InputStream is;
                   PipedOutputStream pout;
                   public OutputMonitor ( InputStream i, PipedOutputStream p )
                        is = i;
                        pout = p;
                   public void run ()
                        try
                             int inputChar;
                             for ( ;; )
                                  inputChar = is.read();
                                  if ( inputChar == -1 ) { break; }
                                  if ( pout == null )
                                       System.out.write ( inputChar );
                                  else
                                       pout.write ( inputChar );
                             if ( pout != null )
                                  pout.flush ();
                                  pout.close ();
                             else
                                  System.out.flush();
                        catch ( Exception e ) { e.printStackTrace (); }     
              try
                   Runtime r = Runtime.getRuntime ();
                   Process p = r.exec ( command );
                   OutputMonitor out = new OutputMonitor ( p.getInputStream (), pipeout );
                   OutputMonitor err = new OutputMonitor ( p.getErrorStream (), pipeerr );
                   Thread t1 = new Thread ( out );
                   Thread t2 = new Thread ( err );
                   t1.start ();
                   t2.start ();
                   //p.waitFor ();
              catch ( Exception e ) { e.printStackTrace (); }
         public PipedInputStream getInputStream () throws IOException
              pipeout = new PipedOutputStream ();
              return new PipedInputStream ( pipeout );
         public PipedInputStream getErrorStream () throws IOException
              pipeerr = new PipedOutputStream ();
              return new PipedInputStream ( pipeerr );
         public void execInThread ()
              Thread t = new Thread ( this );
              t.start ();
         public static JPanel getContentPane ( JTextArea ta )
              JPanel p = new JPanel ( new BorderLayout () );
              JPanel bottom = new JPanel ( new FlowLayout () );
              JButton button = new JButton ( "Exit" );
              button.addActionListener ( new ActionListener ( )
                                       public void actionPerformed ( ActionEvent e )
                                            System.exit ( 0 );
              bottom.add ( button );
              p.add ( new JScrollPane ( ta ), BorderLayout.CENTER );
              p.add ( bottom, BorderLayout.SOUTH );
              p.setPreferredSize ( new Dimension ( 640,480 ) );
              return p;
         public static void main ( String[] argv )
              // --- Local class to run on the event dispatch thread to update the Swing GUI
              class GuiUpdate implements Runnable
                   private PipedInputStream pin;
                   private PipedInputStream perr;
                   private JTextArea outputArea;
                   GuiUpdate ( JTextArea textArea, PipedInputStream in )
                        pin = in;
                        outputArea = textArea;
                   public void run ()
                        try
                             // --- Reads whole file before displaying...takes too long
                             //outputArea.read ( new InputStreamReader ( pin ), null );
                             BufferedReader r = new BufferedReader ( new InputStreamReader ( pin ) );
                             String line;
                             for ( ;; )
                                  line = r.readLine ();
                                  if ( line == null ) { break; }
                                  outputArea.append ( line + "\n" );
                                  // outputArea.paint ( outputArea.getGraphics());
                        catch ( Exception e ) { e.printStackTrace (); }
              // --- Create and realize the GUI
              JFrame f = new JFrame ( "Output Capture" );
              f.setDefaultCloseOperation ( JFrame.EXIT_ON_CLOSE );
              JTextArea textOutput = new JTextArea ();
              f.getContentPane().add ( getContentPane ( textOutput ) );
              f.pack();
              f.show ();
              // --- Start the command and capture the output in the scrollable text area
              try
                   // --- Create the command and setup the pipes
                   SystemCommand s = new SystemCommand ( argv );
                   PipedInputStream stdout_pipe = s.getInputStream ();
                   PipedInputStream stderr_pipe = s.getErrorStream ();
                   // --- Launch
                   s.execInThread ( );
                   //s.exec ();
                   // --- Watch the results
                   SwingUtilities.invokeLater ( new GuiUpdate ( textOutput, stdout_pipe ) );
                   SwingUtilities.invokeLater ( new GuiUpdate ( textOutput, stderr_pipe ) );
                   //Thread t1 = new Thread ( new GuiUpdate ( textOutput, stdout_pipe ) );
                   //Thread t2 = new Thread ( new GuiUpdate ( textOutput, stderr_pipe ) );
                   //t1.start ();
                   //t2.start ();
              catch ( Exception e ) { e.printStackTrace (); }
              

    Thanks for pointing out the SwingWorker class. I didn't use it directly, but the documentation gave me some ideas that helped.
    Instead of using invokeLater on the long-running pipe-reader object, I run it on a normal thread and let it consume the output from the background thread that is running the system command. Inside the reader thread I create a tiny Runnable object for each line that is read from the pipe, and queue that object with invokeLater (), then yield() the reader thread.
    Seems like a lot of runnable objects, but it works ok.

  • I have Quicken 6 on a 2006 MacDesktop whose monitor died.  Which Quicken update do I need to run my quicken 6 backups?

    I have IMAC on which I had Quicken 6.  The monitor died.  Which Quicken update do I need to run the backups of my quicken6 on my MacBook Air?

    You can obtain Quicken 2007 for Mac for $15 from Intel.  It will run on OS X Snow Leopard to Yosemite. 
    You can obtain it for $15 using the Intuit online chat function.
    Use the chat feature for Quicken for Mac: Quicken 2007 for Lion: Shopping and Buying: Buying Quicken on this page:
    https://quicken.custhelp.com/app/contact/plvl1/win

  • BT Infinity Usage Monitor not updating.....hmmm???

    This happens at the end of every month.  I'm starting to think it is an actual ploy from BT to stop users from knowing how much broadband usage they have left?  The usage monitor normally starts acting up around the 25th of every month....then you get an odd day where it works then it then it stops updating completely.  This leaves a BT user in a vunerable position.
    A, Scared of using Internet - Not wanting a penalty charge by going over your limit!
    B, Not allowing the BT user to use their full amount of data that they are paying for = saving BT money = ripping us off!!!
    SORT IT OUT BT.......IT'S JUST NOT GOOD ENOUGH.

    A lot more in this thread regarding the usage monitor,
    http://community.bt.com/t5/BT-Infinity/BT-Infinity-Usage-Monitor-not-updated-today/td-p/616958
    Regards,
    Frogman

  • How to create remote monitor and control webpages using cFP2220

    Hi all,
    I'm fresh user using compact field point. I would like to make cfp2220 as a web server, so other PCs can using IE to monitor and control through web browser.
    Moreover, does the webpages support security? and how to setup?
    Thanks,
    Regards,
    Robert

    Hi Robert,
    You can use LabVIEW Web Services to set up a system like you describe, and there is also information available on how to secure your Web services.
    I hope this is helpful.
    Regards,
    Stephen S.
    National Instruments
    Applications Engineering

  • Home Monitoring and Control with a third party also monitoring and controllin​g?

    I was wondering if anyone has tried to install Home Monitoring and Control with a third party monitoring, and or controlling the same devices. I know many systems offer multiple control points such as auxilary control touch screens. Has anyone made this work? I have Z wave devices on my home security system (lighting), and would also like to monitor them via Verizon. Possibly also adding some energy monitoring and control, that is not available via my security company. My security monitoring company provide support through Alarm.com, but has limited energy monitoring to thermostat control and such.
    The only interactive control with my security company is for alarm monitoring and control, with limited lighting control. All of my devices are GE in the wall mounted lighting controls, and I would prefer to pay Verizon the few extra dollars for the additional features VIA the web, rather than pay Verizon. There used to be an energy package, that included the main power panel load and I thing Thermostat, but I believe some of the bundles have been split up.
    There are other options out there now, but I have neen exploring. My GE Switches are from the Lowes Iris system. Much less expensive, and can replace existing wall switches, not like the power cord switches. Plus the store is four miles from my house.

    I started with Verizon home monitoring, but if you read through the threads the service is extremely unreliable, still to this day. I am stillusing it, although I am waiting for a refund on the services that I have used since it is so bad but I bought a MiCasaVerde Vera3 system.  You pay appoximately $300 for the unit and there is no monthly charge and you get all the features plus pretty much unlimited types of z wave devices to use on it. I would seriously consider using that before Verizon.

  • Would like to monitor and control a labview application with a hand held device.

    Would like to monitor and control a labview application with a hand held device.
    Would like to use a palm or ipac on a local area network or communicate directly with the PC running windows.

    LabVIEW doesn't run on a hand held device. But, check out these documents:
    Is it Possible to Use Remote Front Panels to Control a LabVIEW VI Remotely Using my PDA?
    "What OS is recommended for LabVIEW to run on a PDA?"

  • I am trying to connect my old mac desktop and my mac book pro to my new mac desktop to use as monitor but it will not work??

    I am trying to connect my old mac desktop and my mac book pro to my new mac desktop to use as monitor but it will not work??

    Hi ashleydanc588,
    If you are interested in more information on using an iMac in Target Display Mode, including what machines are compatible, you may find the following article helpful:
    Target Display Mode: Frequently Asked Questions (FAQ)
    http://support.apple.com/kb/ht3924
    Regards,
    - Brenden

  • X100e "Catalyst Control Center Monitoring Program"

    Whenever I boot my ThinkPad X100e I get the following message "Catalyst Control Center Monitoring Program has stopped working"
    Does anyone know how I can fix it?
    I am not positive but I think this is the cause of overall slow performance (especially with video).
    Thanks in advance for your help.

    Hi,
    Welcome to Lenovo Community Forums!
    I’m really sorry to hear that you are getting an error stating “Catalyst Control Center Monitoring Program has stopped working” when you boot your Lenovo ThinkPad X100e.
    I would suggest you to uninstall the Catalyst Control Center/drivers, download the latest version of the Catalyst Control Center/drivers for your video card from Lenovo Support page and install the same. Enter MTM number in quick path and find the driver under display and video graphics category.
    Hope this helps!
    Best regards,
    Mithun.
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Is there an app for monitoring CELLPHONE usage? (Not data, calls, SMS, etc.)

    Hey! Is there an app for monitoring CELLPHONE usage? (Not data, calls, SMS, etc.). I know there's for data, but I wanna know if there's one that keeps track of calls, SMS, etc.
    Thanks!

    Unless O2 has an app available via the iTunes app store that provides for this as AT&T does for the iPhone sold in the U.S., I don't believe so.
    The iPhone includes a usage indicator for Call Time and Cellular Network Data usage, which can be reset on a monthly basis based on your billing cycle, but there is no usage indicator for the number of messages sent or received.

  • Database monitoring and control i

    Hi all,
    I am looking for various options to monitor and control the database.
    Could you provide your thoughts on this.

    You will get more, faster and better responses to your questions when you learn that your questions should contain as much information about your interests as you can provide.
    What you asked about database monitoring is pretty close to posting only question mark in you post. Like this : *?*
    When you are going to car mechanic to ask him for advice about your car, you will not just tell him : I am looking for thoughts on achiving higher HP for my car,tell me ,how to do that? .
    You will obviusly tell him at least what car you have, what model, what year was made and so on. You can apply almost the same logic when asking oracle questions here.
    For zilion reasons , providing at least information about database release you are using is a 'must do' when asking a question.
    Also, your first stop when looking for info about something that is so general as your question here suggests, should be http://tahiti.oracle.com/ , where you could eventually, as in this case , after few more clicks lead yourself to this, and after that enable yourself to ask more specific and concrete question.
    By the way, your forum activity statistics are saying that you are one of those posters which is appearing here with the moto 'ask question-respond never' , and this attitude can discourage many forum members to help you because they prefer two-way communication, which you obviusly don't.

Maybe you are looking for

  • Exchange netting documents

    Hi, I am creating netting documents using transaction O3A4 for the month of May, however this transaction is picking sales billing documents of june. This transaction does not have any date range to be given, in the past this transaction used to pick

  • URGENT: Problem in release park invoice (FBV0)

    Hi Expert, We now facing a problem when wan to release a park doc in FBV0, sys popup a error msg "Check whether document has already been entered with number 1234 2007". How anyone guide me how to solve this? Thanks a lot.

  • How do I import to iCloud a movie in, but not purchased through, iTunes?

    I have movies downloaded via digital copy. How do I import it to iCloud? Thanx!

  • E3000 not seeing a WD MyBook for Mac external 2 TB hard drive

    Just purchased a LinkSys e3000 router and WD My Book for Mac (+ WD Smartware) for the purpose of backing up my two MacBook Pros wirelessly.  The router works PERFECTLY for all other wireless and routing functions. Bottom line, the LinkSys router can

  • Won't get past gray screen/apple

    My son's mac book will not start. It shows the grey screen and apple logo but no further. I ran utilities from leopard install disk and it says SMART said the disk is about to fail. I ran DW 4.1 and Drive Genius 2.0.2 to no avail. How can I get the d