Is there any way to check if the Cisco IP Phone 7970 is idle?

In my application I need to check if a phone is idle. If it is idle I'll send it a message, if it is not, I'll send a different message.
Is there any way to do that?
Thanks for help.

CTI comes to mind first.
Then there's the modeinfo url that allows you to get an xml representation from what's on the screen.. that normally should do the trick as well (http://forums.cisco.com/eforum/servlet/NetProf?page=netprof&forum=IP%20Communications%20and%20Video&topic=IP%20Phone%20Services%20for%20Developers&CommCmd=MB%3Fcmd%3Ddisplay_location%26location%3D.1ddb6101)
If you only need to send something in case the phone is idle, there's a simple trick: send an ExecuteItem with prio 2.. it'll only be shown if the phone is idle.

Similar Messages

  • Is there any way to check rc.conf without restarting the machine?

    Hi everybody,
    I've VPS running with Arch. It was preinstalled with very, very old versiol so I've upgraded everything, updated rc.conf by hand but still never restarted completely. So my question is - is there any way to check that the server will boot up without issues? Is there any way to check that rc.conf is completely valid?

    peets, thanks! It seems to be ok at this point.
    tomk, understood... Well, I'll paste it here maybe somebody could look throught for some possible incompability problems from old version:
    LOCALE="en_US.utf8"
    HARDWARECLOCK="localtime"
    TIMEZONE="Europe/Vilnius"
    KEYMAP="us"
    CONSOLEFONT=
    CONSOLEMAP=
    USECOLOR="yes"
    MOD_AUTOLOAD="yes"
    MOD_BLACKLIST=()
    MODULES=()
    USELVM="no"
    HOSTNAME="server"
    DAEMONS=(syslog-ng network netfs crond sshd nginx mysqld @postfix php-fpm @svnse
    rve @pure-ftpd)
    lo="lo 127.0.0.1"
    INTERFACES=( "lo" "venet0" "venet0_0" )
    venet0="venet0 127.0.0.1 netmask 255.255.255.255 broadcast 0.0.0.0"
    rt_venet0="-net 191.255.255.1 netmask 255.255.255.255 dev venet0"
    rt_default="default gw 191.255.255.1"
    ROUTES=( "rt_venet0" "rt_default" )
    venet0_0="venet0:0 79.98.27.163 netmask 255.255.255.255 broadcast 0.0.0.0"
    The most important is to bring networking up after restart :-) last lines from "lo=..." is from old rc.conf so I'm not sure if this is compatible with newest Arch.
    Thank you for help, guys!
    Last edited by InfernalH (2009-06-13 15:24:37)

  • Is there any way to check the age of an iphone when buyinga used unit?

    im buying a used iphone off kijiji and the owner said its 4 months old, is ther any way to check this to be fact?

    Unfortunately, no. That link will tell you if the phone has been reported stolen, but it has no way of knowing if the phone has been hacked, either physically or via software.
    The other thing to watch out for is sometimes a shady seller will tell you a serial number that isn't the same as the phone you eventually get.
    A high percentage of iPhones sold over the Internet are hacked or jailbroken, and many of them are also stolen.

  • Is there a way to check if the rechargeable battery is the original?  I have a feeling mine has been swapped out...

    I have a feeling my rechargeable battery pack was secretly swapped out by another user (whose battery had died) - left for vacation working computer, returned from vacation battery not charging.  Is there any way to check (serial number, etc.) what battery came with the purchased computer?  Any help would be appreciated.

    kimberlyfrompennington wrote:
    Is there any way to check (serial number, etc.) what battery came with the purchased computer?
    No, but you could check to see if the battery installed has about the same amount of charge cycles if you were paying attention to that number. 

  • Is there any way to hook into the SQL report pagination process?

    I have a SQL report (based on EMP) with a radiogroup row selector.
    The scenario 1 and 2 are in place
    1) When the employee row radio group is clicked the P900007_JOB the text item is populated with the JOB for the employee.
    2) When the page is initially displayed or submitted via the button the first row’s radio group is programmatically clicked and therefore populates the additional job information in P900007_JOB
    Info (radio Group) Employee No Name
    (+) 7369 SMITH
    () 7499 ALLEN
    () 7521 WARD
    P900007_JOB CLERK
    1-3 Next>
    Once the report has been displayed and the next or previous pagination is used then none of the radio groups will be selected and the data in the P900007_JOB text item will still display the job of the last selected employee row.
    What I require is on pagination some sort of mechanism to either
    a) Call the page_init() that should then set the first row as selected and populate the text item via the programmatic click. (preferred option)
    b) OR blank out the additional text item P900007_JOB.
    Is there any way to hook into the pagination process?
    I have a work around – Set the ‘Enable Partial Page Refresh’ to ‘No’ but this means a full refresh every time the pagination is used.
    Details of my page
    Report Region (Based on EMP table) – radio group as a row selector
    select     APEX_ITEM.RADIOGROUP(1,EMPNO,'X21',null) CHECKRG, EMPNO,
         ENAME,
         JOB
    from     EMP
    Report Attributes -
    Report template :- P900007_ROWTEMPLATE (custom template see later)
    Report Attributes Substitution :- id="emp_report" (used in page_init see later)
    Enable Partial Page Refresh :- Yes
    Columns – All columns are selected as show but job is left out of the template below.
    P900007_JOB - Text item in report region (disabled does not save state). Populated with the employees job when the radio group is clicked.
    Control region :- HTML region that just holds a button <GO> just to submit the page and redirect back to the same page.
    P900007_ROWTEMPLATE (named column row template)
    Row template 1
    <tr style="cursor: hand; cursor: pointer;" onmouseover="row_mouse_over(this, 1)" onmouseout="row_mouse_out(this, 1)" #HIGHLIGHT_ROW# ">
    <td class="t15data" onclick="selectRow('#JOB#');">#CHECKRG# </td>
    <td class="t15data">#EMPNO# </td>
    <td class="t15data">#ENAME# </td>
    </tr>
    Before rows
    <table class="t15standard" summary="" #REPORT_ATTRIBUTES# id="report_#REGION_STATIC_ID#" >
    <th class="t15header" #ALIGNMENT# >Info</th>
    <th class="t15header" #ALIGNMENT# >Employee Number</th>
    <th class="t15header" #ALIGNMENT# >Name</th>
    After Rows
    <tr>
    <td colspan="99" class="t15afterrows">
    <span class="left">#EXTERNAL_LINK##CSV_LINK#</span>
    <table style="float:right;text-align:right;" summary="pagination">
    #PAGINATION#</table>
    </td>
    </tr>
    </table>
    *Javascript in page Header*
    <script src="#WORKSPACE_IMAGES#apex_show_hide_region.js" type="text/javascript"></script>
    <script language="JavaScript" type="text/javascript">
    <!--
    function selectRow(pJob)
    /* console.log('pete got here!'+pJob)*/
    $x('P900007_JOB').value =pJob;
    /* Start Page init*/
    function *page_init*()
    /* Used to set radio groups on reports */
    /*console.log('START pete got here!');*/
    var is_checked = false;
    var l_check = $x_FormItems($x('emp_report'), 'radio');
    /*Loop and set flag if checked*/
    for(var i=0,len=l_check.length;i<len;i++)
    if(l_check.checked){
    is_checked = true;
    /*end loop*/
    /*If none checked force a click*/
    if(!is_checked){
    /*no longer need as doing click below*/
    l_check[0].checked=true;
    /*Force a click on the first radio group - extra details should then be
    populated*/
    var l_click = l_check[0].click();
    /* console.log('END pete got here!');*/
    /*END page_init*/
    // -->
    </script>
    *Application shared component.* – This fires a DB packaged procedure when the page is loaded.
    P330_PART_NO_HIST
    Process Point On load after Body region
    Process Text show_hide_memory.part_no_history_details();
    *Packaged Procedure* – This kicks off the page_init javascript in the header (earlier) to click on the radio group in the first row.
    PROCEDURE part_no_history_details AS
    BEGIN
    htp.prn('<script type="text/javascript">' || CHR(10));
    htp.prn('<!--' || CHR(10));
    htp.prn('page_init();'|| CHR(10));
    htp.prn('//-->' || CHR(10));
    htp.prn('</script>' || CHR(10));
    END part_no_history_details;
    Thanks Pete
    Edited by: Pete @ LSC on 26-Jan-2010 06:56

    Anybody any ideas? Should I be looking down the route of using my own pagination buttons and adding my code to this?
    There seems to be a routine $a_report that I can use for the pagination but I am finding it difficult to get the current first and last record values that I would need to pass. I've seen references to below in the form but when I'm using partial refresh they do not seem to change.
    wwv_flow.g_flow_current_min_row
    wwv_flow.g_flow_current_max_rows
    wwv_flow.g_flow_current_rows_fetched
    wwv_flow.g_request
    Thanks Pete

  • Is there any way to check

    is there any way to check
    "27/12/2009 10:12:43" > "27/12/2004 11:20:12"
    SimpleDateFormat does not have a suitable method for this. its kind of validation check.
    any input ?

    Convert the two strings into Date object, andcompare
    the long value of those.Or use the date after and before methods. :)Bah, that's too easy ;)

  • My high school aged child is spending too much time on Facebook, Tumblr to the detriment of home work.  Is there any way I can limit the access to these sites to between 8pm and 10pm?

    My high school aged child is spending too much time on Facebook and Tumblr is there any way I can limit the access time  on these sites to  from 8pm to 10pm?

    System Preferences>Parental Controls has time limits - check out this intro to Parental Controls from Cult of Mac on YouTube.
    Clinton

  • Is there any way to check an iPhone 5 for a virus?

    Is there any way to check an iPhone 5 for a virus?

    oxdog007 wrote:
    What causes the screen to enlarge to the point you can't navigate the phone?
    Double tapping the screen will cause it to zoom. Go to Settings - General - Accessibility - Zoom = Off??.

  • Forgot to save project before laptop shutdown.  Is there any way to recover all the captured video?

    Is there any way to recover all the video (slides?) captured by Captivate 5 if the project was not saved?  Just after I clicked on shutdown to power off my laptop I realized I forgot to save and close my Captivate project and unfortunately windows shut down without any prompting to save anything.   There are lots of files (.cpd) in the Adobe Captivate Cached Projects folder but no project file for 2+ hours worth of video snippets.  Is there any way to recover those?
    thanks!

    Hello,
    I hope to have good news for you. Can you check this blog post, we got the tip from the Adobe dev. team and Kevin did write it out:
    Cached projects can save you some cash
    Lilybiri

  • Hi, haven't used iMovie in years.  I shot some video with my cell phone camera (Samsung Galaxy S2).  When I tried to make a movie, the clips I downloaded played back sideways on iMovie.  Is there any way I an flip the video from horizontal to vertical?

    Hi, haven't used iMovie in years.  I shot some video with my cell phone camera (Samsung Galaxy S2).  When I tried to make a movie, the clips I downloaded played back sideways on iMovie.  Is there any way I an flip the video from horizontal to vertical?  Thanks.

    You actually want a vertical video??
    What would you show that on?!
    Rotating video or photos in iMovie 11:
    http://help.apple.com/imovie/#mov3a884fd3
    In earlier versions of iMovie you can also do this using Quicktime Pro 7:
    Open MOV file in QT Pro (QT 7.6.6)
    Window -> Show Movie Properties
    select "Video Track"
    select "Visual Settings" from lower window
    check "Preserve Aspect Ratio"
    Click on appropriate rotation icon (MOV rotates!)
    Click back on the open MOV in Player Window
    FILE -> Save
    You can also do this using TransformMovie, available here:
    http://www.macupdate.com/info.php/id/21859

  • HT1807 Is there any way to check your roaming minutes while traveling internationally?

    Is there any way to check your roaming minutes while traveling internationally?

    Hi Icebreaker
    Thanks for getting back to me.
    I successfully upgraded the Firmware to the latest available on the site - I don't have the camera here to confirm the vesion number but the upgraded Firmware was reported in the setup application.
    WPA is AES, which is all that the Thomson router seems to support and I did notice that the camera was looking for TKIP. However, I have tried with WEP and no security to test, with no luck either. I am testing with the camera within 10 feet or so of the router and getting an error message re. checking network condition and the Network doesn't seem to even 'See' the camera as such and the Wireless LED is not lighting up. That's why I was wondering if the Wireless was faulty.
    thanks again

  • Is there any way to turn off the ical feature whereby someone emails you a meeting date/time and it automatically goes on your iCal?

    Is there any way to turn off the iCal feature whereby when someone emails you a meeting date/time and it automatically appears on your calendar?  Once there they can't even be edited or deleted.

    Greetings,
    What version of the Mac OS are you running (Apple > About this Mac)?
    You should be able to delete events in iCal as long as they are not from a "Subscription" calendar.  Subscriptions show up on the left hand side of iCal under the "Subscription" category if you have any.
    You can tell iCal to not check your mail program for invites by going and unchecking the box found in iCal > Preferences > Advanced > "Automatically retrieve..."
    Hope that helps!

  • I want to buy a new apple tv but it used hdmi cables and my house is only wired for analog.  Is there any way I can use the apple tv on analog cables?

    I want to buy a new apple tv but it used hdmi cables and my house is only wired for analog.  Is there any way I can use the apple tv on analog cables?

    Welcome to the Apple Community.
    It's do-able, but I don't think it's a great idea.
    DVI
    Some users with DVI have managed to get their TV's to work with DVI-HDMI cables. DVI carries no audio, so alternative connections need to be explored to enable audio. DVI doesn't necessarily support HDCP as well as other standards used by HDMI (which may or may not be an issue)
    Analogue
    There are hardware converters that will convert HDMI to various other types of output, however there are some issues with doing so that you should be aware of.
    HDCP
    HDCP compliant converters will not allow you to watch HDCP protected content such as that from the iTunes Store. Non compliant converters exist but we cannot discuss them under the Terms of Use for these communities.
    Resolution and aspect ratio
    I'm not aware of any converters that will scale the output from the Apple TV, any TV or projector which is used will need to be widescreen and support resolutions of 720p (Apple TV 2), 720p/1080p (Apple TV 3)
    DAC
    DAC (Example Only - Not a recommendation or suggestion that this is suitable in your circumstances)

  • Is there any tool to check whether the proper data is inserting or not?

    Hi,
    We have different products A,B and C.
    whenever user crates an account under these products some X,Y,Z table gets updated.
    If user1 creates an account under A then X, Y, Z tables update with some data along with some ID
    If user2 creates an account under A then X, Y, Z tables update with SAME DATA along with some other ID
    Is there any tool to check whether the proper data is inserting (same data is inserting every time) or not?
    p.s : if this thread is not related to this forum .. where can I post?
    Thanks,
    Praveen

    Is there any tool to check whether the proper data is inserting (same data is inserting every time) or not?You need to check the code to see that. Is the update or insert on the table has from different places? In that case it would be better to have them moved to a centralized place may be a package.
    If you want to restrict the columns to specific values then you can use constraints.

  • HT201335 I have an i mac early 2008 10. 8. 2 mountain lion. Is there any way i can do the mirroring to my apple tv.

    I have an i mac early 2008 10. 8. 2 mountain lion. Is there any way i can do the mirroring to my apple tv/ tv?

    Not natively. That requires the newer processor. You will have to use Airparrot
    http://airparrot.com/

Maybe you are looking for