Unable to view CSQ status on Agent desktop

Hello,
We are facing issue with CSQ status on CAD application. This is happening only for newly created CSQs.
We have other CSQs which are working properly and users are able to see those while they are getting calls.
Attached are the screen shots for the same.
UCCX version: 7.0(1)SR05 -Premium
CAD :7.1

This issue has bee resolved.
The information that is displayed on CSD/CAD is handle by the Cisco desktop Enterprise Service
we have restarted Cisco desktop Enterprise Service.
This service can be restarted at any time and It will not affect calls, agents, supervisors, etc.

Similar Messages

  • T61 - unable to view network status & tasks

    I have problem opening network and sharing center even though i have ntwork connectivity via NIC/WiFi. Also unable to open desktop personalize properties. When I try to do these window opens and disappears immediately. Let me know how to resolve this...

    I'd try logging on as another (or new) user to check for profile corruption.
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • Unable to view photos in Explorer on Desktop

    I just noticed that I can no longer see thumbnails for the photos in my Pictures library, or the Video library, they just show up as the generic picture/video icon. The font used also seems non-standard. I'm not sure where to start looking to fix this. I'm
    currently running windows 8.1 with all theatres updates on a Surface Pro.

    1.Open File Explorer
    2.Click View
    3.Click Options
    4.Click on View tab
    5.Make sure the check box against Display file icon on thumbnails option is checked under Files and Folders.
    [You may need to uncheck the box that says Always show icons, never thumbnails.]
    6.Click OK/Apply.
    S.Sengupta, Windows Entertainment and Connected Home MVP

  • WebDMS-Unable to view document status

    Hi,
    while creating new document in webdms no entries are visible under document status.
    while changing the document in webdms but created in DMS all the values in document status are visible.
    could anyone tell whether any setting is missing?
    Thank You,
    Manoj

    Hi Niranjan,
    Component Version is SAP ECC 6.0.
    Customizing is ok, the only problem is that when I am creating document directly in webDMS, no statuses are visible, but if am creating document in ECC and then changing in webDMS all the statuses are visible.
    one more thing..the link which we are using here to access webDMS in clients network, can the same be used through external network apart from clients network to access webDMS?
    Thank You,
    Manoj

  • CTIOS agent desktop issue

    Im trying to install an IPCC Lab. when i try to connect my ctios client (Windows 7) to ctios OS server.....it shows offline and disconnected state..
    these messages are seen on the ctisvr process
    Trace: CTIApplication::ProcessOpenRequest from sessionID 1 (CTIOSServer) - ACCEPTED (0 ms)
    Trace: ProcessConfigRequestKeyEventMSG - sessionID 1
    Trace: ProcessConfigRequestEventMSG - sessionID 1
    Trace: CTIApplication::ProcessClientEventReportRequest - sessionID 1
    Trace: CTIApplication::ProcessClientEventReportRequest - CTIOS_NUM_CLIENT:0
    PG System Event: Peripheral Online (PeripheralID 5001), PG Status: NORMAL
    Trace: CTIApplication::ProcessTimeNotificationEvent - Time=05:05:00 UTC NewHalfHour=FALSE
    Trace: CTIApplication::ProcessClientEventReportRequest - sessionID 1
    Trace: CTIApplication::ProcessClientEventReportRequest - CTIOS_NUM_CLIENT:1
    Trace: CTIApplication::ProcessClientEventReportRequest - sessionID 1
    Trace: CTIApplication::ProcessClientEventReportRequest - CTIOS_NUM_CLIENT:0
    Trace: CTIApplication::ProcessClientEventReportRequest - sessionID 1
    Trace: CTIApplication::ProcessClientEventReportRequest - CTIOS_NUM_CLIENT:1
    Trace: CTIApplication::ProcessClientEventReportRequest - sessionID 1
    Trace: CTIApplication::ProcessClientEventReportRequest - CTIOS_NUM_CLIENT:0
    Trace: CTIApplication::ProcessClientEventReportRequest - sessionID 1
    the underlined messages appear when i run my CTIOS Agent desktop
    Can anyone help?
    Hassan

    What do the CTIOS Agent desktop logs show? Usually you'd need to fill in both CTIOS Server Side A and B host-names/ip-address and ports while installing the agent desktop (same hostnames/ports if it is Simplex) .
    If it shows offline it usually means the desktop is unable to reach the server. You can also check to see if there is anything on the PC blocking the packets to the CTIOS server usually antivirus, firewall etc.

  • Reminder for UCCX agent desktop

    Hi            There
    We are using uccx 7 and got some requirement to have a reminder pop up when the agent is not ready to remind them that they need to change their status to Ready.
    Our agents are not just sitting in the chair and waiting for the incoming call, they have to move to other area to do some other stuff sometimes, but during that time they may get incoming call and their agent status was changed to Not Ready, when they came back to the desk they just simply forgot to change the status back, is there any way that we can have a pop up window to remind them?
    In the Cisco Desktop Administrator, I can configure the popup window under Voice Contact Work Flows when the called number match the trigger, but there is no way I can add the condition that it only happen when the agent is not ready; In the Agent Management Work Flows, I can have the popup window when agent is not ready, but it is not what we want, it popup whenever the agent's status changed to Not Ready.
    Maybe there is a way in the script that when there is incoming call, it check the "Not Ready" agents and send the popup window to those agents, but I am not sure how to do it.
    Can anyone kindly give me some hint for this?
    Cheers

    As you can probably see reading this thread, there is no easy, built-in way to handle this.  I think the Cisco approved way, would be to leverage the Wrap up time, and force them into the Ready state, as oppose to warning them.
    I have one other method to throw into the mix, and your experience with it may be different from the next person's; so please test this out first before deploying it all over the place.
    If you have MS Office installed on the CAD PC, you can actually leverage a feature out of the MS Word COM Object to view a list of running Window Titles, and since CAD puts the state of the Agent in the Window title, this works.
    You will need to copy and paste the below code into a notepad document, and then save as "All Files" and name it something like "monitor.vbs".
    '=============================================================================='=='=='=='=='=='== This script will attempt to monitor the CAD title window and keep track'== of how long the state is Not Ready, then alert the user once a threshold'== is exceeded. The user can press OK to go ready or Cancel to stay Not Ready.'=='== Microsoft Word Required.'=='== Author=Anthony Holloway'==        [email protected]'=='== Last Update=04 AUG 2009'=='== User defined variables'=========================' The StateThreshold is in seconds, and sets a limit to how long the Agent' state can be "Not Ready"Const StateThreshold = 600' The AlertMessage is displayed to the user; keep it short and sweet.Const AlertMessage = "You are currently in a Not Ready state."' The AlertTitle is displayed as the alerts title barConst AlertTitle = "Cisco Agent Desktop"'==============================================================================Set oMicrosoftWord = CreateObject("Word.Application")Set cRunningApplications = oMicrosoftWord.TasksSet oShell = CreateObject("WScript.Shell")iCounter = 0sCADNotreadyTitle = "Not Ready - Cisco Agent Desktop"' Loop foreverDo While True     ' Does the CAD title contain "Not Ready"?     If cRunningApplications.Exists(sCADNotReadyTitle) Then          ' Yes, Has the state exceeded the threshold?          If iCounter >= StateThreshold Then               ' Yes, Alert the user               iUserChoice = MsgBox(AlertMessage & vbCrLf & "Press OK to go Ready", vbOKCancel + vbExclamation + vbDefaultButton2, AlertTitle)               If iUserChoice = vbOK Then                    oShell.AppActivate sCADNotreadyTitle                    WScript.Sleep 500                    oShell.SendKeys "^w"               End If               ' Reset the counter               iCounter = 0          Else               ' No, Increment the counter               iCounter = iCounter + 1          End If     Else          ' Yes, Clear the counter          iCounter = 0     End If     ' Pause 1 second before checking again     WScript.Sleep 1000Loop
    Then you will need to start it by one of several ways.  One way is to place it into the startup folder of the windows PC.  Another way is to have it launch via CDA Run External Application on CAD Startup.  It just runs in the background all the time, monitoring the title of the CAD window.
    Anthony Holloway
    Please use the star ratings to help drive great content to the top of searches.

  • No Service on Agent Desktop and Supervisor Desktop

    This issue was brought to our attention because the Supervisors logging into Supervisor Desktop are unable to see their agents in the team list.
    The Agent Desktop window aswell as the Supervisor Desktop show "No service" at the bottom, this is the same for all agents and supervisors on the contact centres for this particular IPCC Express cluster.
    But calls are still routing through fine, the only actual issue seems to be supervisors not being able to monitor their agents.
    All services are up and the servers appear to be operating normally.

    Yes, I can confirm that we did end up restarting our service with no call drops (I realise now that once a call has been answered, it is no longer using the CCX port and, therefore, won't drop).
    Per my post here: https://supportforums.cisco.com/thread/2081178
    ll.... I restarted the "Cisco Desktop Call/Chat Service" service in  CCX Serviceability > Tools > Control Center - Network Services.
    The service was only restarted on the Publisher (we have pub + subscriber in HAoWAN config).
    Once  the service had restarted - the publisher remained 'master' of the  service. I didn't bother to restart the sub's service at any stage.
    The service restart took about 1 literal minute total - from clicking 'restart' to cycle back to IN SERVICE.
    As part of the process, I had called into one of our contact center numbers and had an SDA take my call.
    I restarted the service while on the phone to them - they didn't get booted from CAD and the call didn't drop.
    Also  of note - another call was made into the system during the service  restart and another SDA on shift was able to take the call with no signs  of impact.
    CAD/CSD chat and also the team views in CSD started working again...issue solved.
    In  turn, agents and supervisors logged out of CAD/CSD, closed the app,  then re-opened it just in case (although I honestly don't think this was  necessary).
    I  have yet to find anything online that says specifically what this  service does (or any of the services in Network Services) in parts and  as a whole.
    I can only say that it is important in allowing Chat (clearly) and for Supervisor Desktop to be able to function at all really.
    We  didn't seem to experience any outage of any kind - so I will assume  that the consequences of service restart in this instance were little to  none.
    I couldn't say what the consequences would've been had the service failed to restart again - forcing a system bounce (yuck).
    Anyway - issue solved, hope this info proves useful to someone else!
    PS. If you're new to the whole UCCX business, CSD = "Cisco Supervisor Desktop" and CAD = "Cisco Agent Desktop".
    Also some additional interesting info per David King:
    "...here is the link to the  CAD install guide that I quoted regarding what the call/chat service  does. It also explains the other Desktop services as well. The service  descriptions start on page 11.
    http://www.cisco.com/en/US/docs/voice_ip_comm/cust_contact/contact_center/crs/express_8_0/installation/guide/cad80ccxig-cm.pdf
    Hope this helps.

  • Unable to view data in the InfoCube as well as in the query

    Hi all,
    I have done the Init Load into an InfoCube 0Pur_c01. The Monitoring status is Green. I checked the Qm status which is green. There is data in the PSA.
    However, I am unable to view data in the InfoCube. Also when I execute the report I am receiving 'Application Data not found'error.
    It looks to be a strange sitaution.
    Please help me out
    Regards
    YJ

    Hi,
    I hope, some times the the unavailability of "PROCESSKEY" value for the records delivers like this.
    Refer the note: 353042
    And also refer the links:
    Re: Problem extracting 2LIS_03_BX into 0IC_C03
    Re: Records Not Added
    And also search this forum with "PROCESSKEY"
    With rgds,
    Anil Kumar Sharma .P

  • Unable to view PDF attachments from my iPhone.

    I am using service called RightFax this service is send the faxes to clients mailboxs. I have been reported from clients that they are unable to view the attachmentson their iPhones, the attachment format is PDF. The attachment can be openned from any desktops and Android phones without any issue.
    i can see attachment from on my iPhone but when i tab on it to view it it just scrolled up to the top of the mail. Also if i farward the same fax mail to my self then i can view the attachment.The IOS version is 7.1.
    I contact the RightFax company to check with them why only attachments from fax mails with PDF format is not openning from iPhone devices from the first time, the company check theur services and do tests and reply me that there is no issue with their services since the PDF attachments are openned on android and desktops. They informed me that it might could be compatability issue between Exchange 2013 and apple that doesn't allowed PDF attachments to be openned from the first time, so they advised to contact Apple support to find out why PDFs are not openning when i initially attempt to download them.
    I download third party mail client on my iPhone and all fax attachments are openned without problem.
    Could anyone help me with this strange issue ??

    RightFax advised you to contact Apple Support - this is NOT Apple Support but rather a public user to user technical support forum.
    As far as I know, it is not possible to open PDF attachments on an iPhone, but it is on an Android phone, which is why you are having the problems - unless there is an app to help you that you can purchase in the app store, then there is not a lot you can do about this, except switch to an android phone, but as far as I know, you have never been able to open PDF documents on an iPhone.

  • Warning  5002: Unable to connect to the Cache Agent

    Getting the following message when creating a readonly cache group
    Warning 5002: Unable to connect to the Cache Agent for /tmp/cgdsn; check agent status
    Warning 5051: Commit message to Cache Agent failed. Cache Agent must be restarted
    Tried to check the Agent status using
    ttStatus command.
    Daemon pid 5138 port 16001 instance TT
    TimesTen server pid 5143 started on port 16003
    No TimesTen webserver running
    Data store /tmp/cgdsn
    There are 5 connections to the data store
    Data store is in shared mode
    Shared Memory KEY 0x0e000c82 ID 11805
    Type PID Context Connection Name ConnID
    Process 9189 0x00000001001ac390 test 1
    Subdaemon 5140 0x000000010015b380 Worker 2044
    Subdaemon 5140 0x00000001001d5360 Flusher 2045
    Subdaemon 5140 0x00000001001db930 Checkpoint 2046
    Subdaemon 5140 0x0000000100243000 Monitor 2047
    Replication policy : Manual
    Cache agent policy : Manual
    End of report

    I had restarted the cacheagent by using the following command
    Call ttCacheUidPwdSet();
    call ttCacheStart();
    Also tried
    ttAdmin -oraAgentStart -oraAgentUID test -oraAgentPWD test cgdsn to manually start the Agent.
    If I use ttCacheStop() it gives the message the Cache agent has already been stopped.

  • Unable to view PDF (baggage file) in CHM

    Hi,
    I have recently started using a new desktop pc running Windows 7. I am now unable to view PDF files (added as baggage files in RoboHelp) in the CHMs generated by RoboHelp. Even existing CHMs (generated before switching desktops) have this problem. Has anyone experienced the same problem and managed to solve it?
    Sofie

    A while back someone told me they had a similar problem with IE8 and advised they fixed as below:
    "After fiddling around with some settings, I found that if you go to Settings/Safety and enable Active X Filtering, the embedded files open normally."
    That will only fix it on your machine though. Do these CHMs work on other machines OK?
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • I am unable to view videos although I have downloaded the latest version of flashplayer several times.

    I am having many problems with my mac mini desktop and with my ipad and iphone. I don't know what version operating system I have and don't know where to look for it. I have NOT installed IOS 8.1 because I hear there are problems with it.
    I am unable to view videos, unable to open and respond to questions in a fb page that I am the administrator on.
    I cannot get mail on my ipad. the box that appears says "cannot get mail, the connection to the server failed"

    If you have used the previously supplied links to survey the situation
    in your computer, assuming you have Snow Leopard 10.6.8 installed,
    and not something else mis-identified to us, you may be able to
    revert to an older plugin than the newer one that isn't being used by
    the system anyway. Then see about what one you really need.
    The browser you use may not be seeing Flash, so try another.
    •Adobe Flash Player updates available for OS X on October 24, 2014 - Apple Support
    Note: If you need to run an older version of Flash, you can use web plug-in management
    to re-enable it for specific websites using "Run in Unsafe Mode" in Safari 6.1 or later.
    If you have and can use a different browser than Safari, you may be able to view content
    with whatever Flash player the system has installed. Could be, the Flash player version
    you have is not being seen or is not valid for whatever OS X your Mac has; or it may be
    seen only by certain browsers and not by Safari.
    Even with an older OS X than Snow Leopard 10.6.8, I can see Street View in Google;
    and use Google Earth, among others. And mine cannot use the newest Flash plugins.
    {Oh, Etrecheck item may or may not be functional with Snow Leopard 10.6.8, now.}
    So you may need to review your situation, and the details of the configuration of hardware
    and software, to provide more exacting information on these, to help further a resolution.
    Good luck & happy computing!
    edited 2x

  • Unable to view recent photos on my Mac in PSE 11 organizer

    unable to view recent photos on my Mac in PSE 11 organizer ..I see them in Iphoto not organizer..Please help

    On import, iPhoto copies photos into its library, which is proprietary to itself and should never be poked and prodded from outside iphoto or you run a strong risk of corrupting the library and losing your photos. So you eventually need to choose between iphoto and organizer.
    If you want to use iphoto, then you have two choices:
    1. Set PSE as your external editor and send the photos from iphoto to PSE, edit them, then save without changing the name or format (you may need to adjust the pse preferences>saving files>on first save), and iphoto will remember your last edits and the orginal. However, you must to lose the edited version to use the original again, and this method doesn't work well with raw files.
    2. Export the photos from iphoto to the desktop, user File>Open in the editor,  edit the photos, make all the changes to name and format that you like, save the photos and import them back to iphoto as new files.
    Or if you decide you prefer organizer, set the this iphoto preference to No Application and you can call up the photo downloader from within organizer, or just drag the photo with the images in it from the card to wherever you want to keept them:
    and of course you don't need to user either iphoto or organizer unless you want.

  • Agent desktop keeps logging out.

    Hello guys I have a problem with an agent desktop that keeps logging out on UCCX version 5.1. I think it is a problem with the ‘ non-activity logout timer. Guys can someone tell me how to change it.?
    Thanks

    here is the log
    VERSION INFO: Environment: Platform .
    VERSION INFO: Environment: Working Dir: .
    VERSION INFO: Environment: User Dir: .
    VERSION INFO: Environment: Hostname .
    VERSION INFO: Environment: Timezone , DST Zone .
    VERSION INFO: Environment: Current time <2012-02-03 15:53:31.863>.
    VERSION INFO: Debug threshold .
    VERSION INFO: Max file size <3000000>.
    VERSION INFO: Max file count <1>.
    VERSION INFO: Module: agent.exe: Product Version <6.6.1.54> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: ntdll.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: kernel32.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: KERNELBASE.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: SplkStd.dll: Product Version <2.0.0.31> Pri Build Special Build <>.
    VERSION INFO: Module: WS2_32.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: msvcrt.dll: Product Version <7.0.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: RPCRT4.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: NSI.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: VERSION.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: SHLWAPI.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: GDI32.dll: Product Version <6.1.7601.17514> Pri Build <> Special Build <>.
    VERSION INFO: Module: USER32.dll: Product Version <6.1.7601.17514> Pri Build <> Special Build <>.
    VERSION INFO: Module: LPK.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: USP10.dll: Product Version <1.0626.7601.17561> Pri Build <> Special Build <>.
    VERSION INFO: Module: pthreadVC2.dll: Product <> Version <2, 8, 0, 0> Pri Build <> Special Build <>.
    VERSION INFO: Module: WSOCK32.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: MSVCR80.dll: Product Version <8.00.50727.4940> Pri Build <> Special Build <>.
    VERSION INFO: Module: xerces-c_2_7.dll: Product Version <2, 7, 0> Pri Build <> Special Build <>.
    VERSION INFO: Module: ADVAPI32.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: sechost.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: PSAPI.DLL: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: MSVCP80.dll: Product Version <8.00.50727.4940> Pri Build <> Special Build <>.
    VERSION INFO: Module: FCRasClient.dll: Product Version <6.6.1.54> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: omniDynamic410_vc8_rt.dll: Product <> Version <> Pri Build <> Special Build <>.
    VERSION INFO: Module: omniORB410_vc8_rt.dll: Product <> Version <> Pri Build <> Special Build <>.
    VERSION INFO: Module: omnithread33_vc8_rt.dll: Product <> Version <> Pri Build <> Special Build <>.
    VERSION INFO: Module: LRMClient.dll: Product Version <6.6.1.54> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: LDAPClientDLL.dll: Product Version <6.6.1.54> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: SplkSecurity.dll: Product Version <2.0.0.32> Pri Build Special Build <>.
    VERSION INFO: Module: LIBEAY32.dll: Product Version <0.9.8f> Pri Build <> Special Build <>.
    VERSION INFO: Module: libsasl.dll: Product Version Pri Build Special Build .
    VERSION INFO: Module: SplkSocket.dll: Product Version <1.0.0.40> Pri Build <> Special Build <>.
    VERSION INFO: Module: SplkMisc.dll: Product Version <6.6.1.54> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: RecordingClient.dll: Product Version <6.6.1.54> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: FCVoIPMonClientRec.dll: Product Version <6.6.1.54> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: OpenH323Wrapper.dll: Product Version <6.6.1.54> Pri Build <> Special Build <>.
    VERSION INFO: Module: ptlib.dll: Product <> Version <> Pri Build <> Special Build <>.
    VERSION INFO: Module: comdlg32.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: COMCTL32.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: SHELL32.dll: Product Version <6.1.7601.17514> Pri Build <> Special Build <>.
    VERSION INFO: Module: ole32.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: ODBC32.dll: Product <> Version <> Pri Build <> Special Build <>.
    VERSION INFO: Module: DNSAPI.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: WINMM.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: snmpapi.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: AVICAP32.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: MSVFW32.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: MPR.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: MobileAgentMonitor.dll: Product <> Version <> Pri Build <> Special Build <>.
    VERSION INFO: Module: FCCClient.dll: Product Version <6.6.1.54> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: CadSplkStd.dll: Product Version <6.6.1.54> Pri Build <6.6(1)> Special Build <>.
    VERSION INFO: Module: SAW.dll: Product Version <6.6.1.54> Pri Build <> Special Build <>.
    VERSION INFO: Module: CSI.dll: Product Version <6.6.1.54> Pri Build <> Special Build <>.
    VERSION INFO: Module: SSLEAY32.dll: Product Version <0.9.8f> Pri Build <> Special Build <>.
    VERSION INFO: Module: iphlpapi.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: WINNSI.DLL: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: SPLKTSSP.dll: Product Version <6.6.1.54> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: FCHooker.dll: Product Version <6.6.1.54> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: PhoneDev.dll: Product Version <6.6.1.54> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: AcmiClient.dll: Product Version <6.6.1.54> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: MFC80.DLL: Product Version <8.00.50727.4053> Pri Build <> Special Build <>.
    VERSION INFO: Module: OLEAUT32.dll: Product <> Version <> Pri Build <> Special Build <>.
    VERSION INFO: Module: DesktopMonitor.dll: Product Version <6.6.1.54> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: SplkWinPcap.dll: Product Version <6.6.1.54> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: shlapi.dll: Product Version <7, 0, 0, 0> Pri Build <> Special Build <>.
    VERSION INFO: Module: sllapi.dll: Product Version <7, 0, 0, 0> Pri Build <> Special Build <>.
    VERSION INFO: Module: XTP9510Libu.dll: Product Version <9, 5, 1, 0> Pri Build <> Special Build <>.
    VERSION INFO: Module: MFC80U.DLL: Product Version <8.00.50727.4053> Pri Build <> Special Build <>.
    VERSION INFO: Module: SplkUpdate.dll: Product Version <6.6.1.54> Pri Build <> Special Build <>.
    VERSION INFO: Module: EEMServerClient.dll: Product <> Version <6.6.1.54> Pri Build <> Special Build < >.
    VERSION INFO: Module: CADEEMConnector.dll: Product Version <6.6.1.54> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: MSIMG32.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: IMM32.DLL: Product Version <6.1.7601.17514> Pri Build <> Special Build <>.
    VERSION INFO: Module: MSCTF.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: odbcint.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: ICMP.DLL: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: RASAPI32.DLL: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: rasman.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: MFC80ENU.DLL: Product Version <8.00.50727.4053> Pri Build <> Special Build <>.
    VERSION INFO: Module: AgentResDLL.dll: Product <> Version <> Pri Build <> Special Build <>.
    VERSION INFO: Module: NLAapi.dll: Product Version <6.1.7601.17514> Pri Build <> Special Build <>.
    VERSION INFO: Module: napinsp.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: pnrpnsp.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: mswsock.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: winrnr.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: wshbth.dll: Product Version <6.1.7601.17514> Pri Build <> Special Build <>.
    VERSION INFO: Module: WLIDNSP.DLL: Product Version <7.250.4225.0> Pri Build Special Build <>.
    2012-02-03 15:53:32:081 INFO LC0007 Invalid Value.
    2012-02-03 15:53:32:081 INFO LC0007 Invalid Value.
    2012-02-03 15:53:32:081 INFO LC0007 Invalid Value.
    2012-02-03 15:53:32:081 INFO LC0007 Invalid Value.
    2012-02-03 15:53:32:081 INFO LC0007 Invalid Value.
    2012-02-03 15:53:32:081 INFO LC0007 Invalid Value.
    2012-02-03 15:53:32:081 INFO STD0000 Starting preference change event dispatch thread.
    2012-02-03 15:53:32:097 WARN STD3000 Get registry key under path . Object not found: <2:The system cannot find the file specified.>.
    2012-02-03 15:53:32:721 INFO LC0000 Connected to Calabrio LDAP server on .
    2012-02-03 15:53:32:721 WARN STD3000 Get registry key under path . Object not found: <2:The system cannot find the file specified.>.
    2012-02-03 15:53:32:721 WARN STD3000 Get registry key under path . Object not found: <2:The system cannot find the file specified.>.
    2012-02-03 15:53:33:688 INFO DAGT0000 Get Update Flag from LDAP successfully.
    2012-02-03 15:53:33:719 INFO SPUD0000 Successfully launched update from .
    VERSION INFO: Environment: Platform .
    VERSION INFO: Environment: Working Dir: .
    VERSION INFO: Environment: User Dir: .
    VERSION INFO: Environment: Hostname .
    VERSION INFO: Environment: Timezone , DST Zone .
    VERSION INFO: Environment: Current time <2012-02-06 14:25:58.318>.
    VERSION INFO: Debug threshold .
    VERSION INFO: Max file size <3000000>.
    VERSION INFO: Max file count <1>.
    VERSION INFO: Module: agent.exe: Product Version <6.6.1.400> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: ntdll.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: kernel32.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: KERNELBASE.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: SplkStd.dll: Product <> Version <2.0.0.32> Pri Build <> Special Build <>.
    VERSION INFO: Module: WS2_32.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: msvcrt.dll: Product Version <7.0.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: RPCRT4.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: NSI.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: VERSION.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: SHLWAPI.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: GDI32.dll: Product Version <6.1.7601.17514> Pri Build <> Special Build <>.
    VERSION INFO: Module: USER32.dll: Product Version <6.1.7601.17514> Pri Build <> Special Build <>.
    VERSION INFO: Module: LPK.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: USP10.dll: Product Version <1.0626.7601.17561> Pri Build <> Special Build <>.
    VERSION INFO: Module: pthreadVC2.dll: Product <> Version <2, 8, 0, 0> Pri Build <> Special Build <>.
    VERSION INFO: Module: WSOCK32.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: MSVCR80.dll: Product Version <8.00.50727.4940> Pri Build <> Special Build <>.
    VERSION INFO: Module: xerces-c_2_7.dll: Product Version <2, 7, 0> Pri Build <> Special Build <>.
    VERSION INFO: Module: ADVAPI32.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: sechost.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: PSAPI.DLL: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: MSVCP80.dll: Product Version <8.00.50727.4940> Pri Build <> Special Build <>.
    VERSION INFO: Module: FCRasClient.dll: Product Version <6.6.1.400> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: omniDynamic410_vc8_rt.dll: Product <> Version <> Pri Build <> Special Build <>.
    VERSION INFO: Module: omniORB410_vc8_rt.dll: Product <> Version <> Pri Build <> Special Build <>.
    VERSION INFO: Module: omnithread33_vc8_rt.dll: Product <> Version <> Pri Build <> Special Build <>.
    VERSION INFO: Module: LRMClient.dll: Product Version <6.6.1.400> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: LDAPClientDLL.dll: Product Version <6.6.1.400> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: SplkSecurity.dll: Product Version <2.0.0.32> Pri Build Special Build <>.
    VERSION INFO: Module: LIBEAY32.dll: Product Version <0.9.8f> Pri Build <> Special Build <>.
    VERSION INFO: Module: libsasl.dll: Product Version Pri Build Special Build .
    VERSION INFO: Module: SplkSocket.dll: Product <> Version <1.0.0.44> Pri Build <> Special Build <>.
    VERSION INFO: Module: SplkMisc.dll: Product Version <6.6.1.54> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: RecordingClient.dll: Product Version <6.6.1.400> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: FCVoIPMonClientRec.dll: Product Version <6.6.1.54> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: OpenH323Wrapper.dll: Product Version <6.6.1.54> Pri Build <> Special Build <>.
    VERSION INFO: Module: ptlib.dll: Product <> Version <> Pri Build <> Special Build <>.
    VERSION INFO: Module: comdlg32.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: COMCTL32.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: SHELL32.dll: Product Version <6.1.7601.17514> Pri Build <> Special Build <>.
    VERSION INFO: Module: ole32.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: ODBC32.dll: Product <> Version <> Pri Build <> Special Build <>.
    VERSION INFO: Module: DNSAPI.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: WINMM.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: snmpapi.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: AVICAP32.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: MSVFW32.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: MPR.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: MobileAgentMonitor.dll: Product <> Version <> Pri Build <> Special Build <>.
    VERSION INFO: Module: FCCClient.dll: Product Version <6.6.1.54> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: CadSplkStd.dll: Product Version <6.6.1.54> Pri Build <6.6(1)> Special Build <>.
    VERSION INFO: Module: SAW.dll: Product Version <6.6.1.400> Pri Build <> Special Build <>.
    VERSION INFO: Module: CSI.dll: Product Version <6.6.1.400> Pri Build <> Special Build <>.
    VERSION INFO: Module: SSLEAY32.dll: Product Version <0.9.8f> Pri Build <> Special Build <>.
    VERSION INFO: Module: iphlpapi.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: WINNSI.DLL: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: SPLKTSSP.dll: Product Version <6.6.1.54> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: FCHooker.dll: Product Version <6.6.1.54> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: PhoneDev.dll: Product Version <6.6.1.400> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: AcmiClient.dll: Product Version <6.6.1.400> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: MFC80.DLL: Product Version <8.00.50727.4053> Pri Build <> Special Build <>.
    VERSION INFO: Module: OLEAUT32.dll: Product <> Version <> Pri Build <> Special Build <>.
    VERSION INFO: Module: DesktopMonitor.dll: Product Version <6.6.1.54> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: SplkWinPcap.dll: Product Version <6.6.1.54> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: shlapi.dll: Product Version <7, 0, 0, 0> Pri Build <> Special Build <>.
    VERSION INFO: Module: sllapi.dll: Product Version <7, 0, 0, 0> Pri Build <> Special Build <>.
    VERSION INFO: Module: XTP9510Libu.dll: Product Version <9, 5, 1, 0> Pri Build <> Special Build <>.
    VERSION INFO: Module: MFC80U.DLL: Product Version <8.00.50727.4053> Pri Build <> Special Build <>.
    VERSION INFO: Module: SplkUpdate.dll: Product Version <6.6.1.54> Pri Build <> Special Build <>.
    VERSION INFO: Module: EEMServerClient.dll: Product <> Version <6.6.1.400> Pri Build <> Special Build < >.
    VERSION INFO: Module: CADEEMConnector.dll: Product Version <6.6.1.400> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: MSIMG32.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: IMM32.DLL: Product Version <6.1.7601.17514> Pri Build <> Special Build <>.
    VERSION INFO: Module: MSCTF.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: SOPHOS~1.DLL: Product Version <9.5.5> Pri Build <> Special Build <>.
    VERSION INFO: Module: odbcint.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: ICMP.DLL: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: RASAPI32.DLL: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: rasman.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: MFC80ENU.DLL: Product Version <8.00.50727.4053> Pri Build <> Special Build <>.
    VERSION INFO: Module: AgentResDLL.dll: Product <> Version <> Pri Build <> Special Build <>.
    VERSION INFO: Module: NLAapi.dll: Product Version <6.1.7601.17514> Pri Build <> Special Build <>.
    VERSION INFO: Module: napinsp.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: pnrpnsp.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: mswsock.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: winrnr.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: wshbth.dll: Product Version <6.1.7601.17514> Pri Build <> Special Build <>.
    VERSION INFO: Module: WLIDNSP.DLL: Product Version <7.250.4225.0> Pri Build Special Build <>.
    2012-02-06 14:25:58:779 INFO LC0007 Invalid Value.
    2012-02-06 14:25:58:789 INFO LC0007 Invalid Value.
    2012-02-06 14:25:58:789 INFO LC0007 Invalid Value.
    2012-02-06 14:25:58:789 INFO LC0007 Invalid Value.
    2012-02-06 14:25:58:789 INFO LC0007 Invalid Value.
    2012-02-06 14:25:58:789 INFO LC0007 Invalid Value.
    2012-02-06 14:25:58:822 INFO STD0000 Starting preference change event dispatch thread.
    2012-02-06 14:25:58:832 WARN STD3000 Get registry key under path . Object not found: <2:The system cannot find the file specified.>.
    2012-02-06 14:25:59:532 WARN STD3000 Get registry key under path . Object not found: <2:The system cannot find the file specified.>.
    2012-02-06 14:25:59:532 WARN STD3000 Get registry key under path . Object not found: <2:The system cannot find the file specified.>.
    2012-02-06 14:26:00:478 INFO DAGT0000 Get Update Flag from LDAP successfully.
    2012-02-06 14:26:01:058 INFO SPUD0000 Successfully launched update from .
    2012-02-06 14:26:01:400 INFO VOIP4020 Created the LDAP recovery thread.
    2012-02-06 14:26:01:418 INFO Agent ACM0325  Load the agent profile
    2012-02-06 14:26:23:334 INFO DAGT0000 Verify agent license.
    2012-02-06 14:26:23:765 INFO DAGT0000 Load the agent configuration.
    2012-02-06 14:26:23:796 INFO Agent CC1038 Package type is: Premium Version
    2012-02-06 14:26:25:470 INFO DAGT1020 Login to telephony server.
    2012-02-06 14:26:25:590 INFO AcmiClnt0000 Begin invokeId(2) clientID(DayP) clientSignature() heartBeat(30) idleTimeOut(120) agentID(DayP) agentExt(1176) agentInst(1176), peripheralID(1)
    2012-02-06 14:26:28:896 INFO DAGT0000 Login to chat server.
    2012-02-06 14:26:28:897 WARN STD3000 Create registry key Access denied: <5:Access is denied.>.
    2012-02-06 14:26:28:898 WARN STD3000 Create registry key Access denied: <5:Access is denied.>.
    2012-02-06 14:26:28:898 WARN STD3000 Open registry key Object not found: <2:The system cannot find the file specified.>.
    2012-02-06 14:26:28:898 WARN STD3000 Open registry key Object not found: <2:The system cannot find the file specified.>.
    2012-02-06 14:26:28:899 WARN STD3000 Open registry key Object not found: <2:The system cannot find the file specified.>.
    2012-02-06 14:26:29:398 WARN STD3000 Open registry key Object not found: <2:The system cannot find the file specified.>.
    2012-02-06 14:26:29:479 INFO FCCC0000 CORBA server started. Local server IOR is IOR:010000001200000049444c3a464343436c69656e743a312e30000000010000000000000064000000010102000f0000003135322e3134362e3132392e323900008ce600000c0000004f2fe3150000114f000000010200000000000000080000000100000000545441010000001c00000001000000010001000100000001000105090101000100000009010100.
    2012-02-06 14:26:29:491 INFO FCCC0000 Successfully connected to the Desktop Chat Service.
    2012-02-06 14:26:29:491 INFO DAGT0000 Call Chat auto-recovery message received.
    2012-02-06 14:26:29:599 INFO DAGT0000 Login to RASCAL server.
    2012-02-06 14:26:29:654 INFO DAGT0000 RASCAL auto-recovery message received.
    2012-02-06 14:26:29:963 INFO DAGT0000 RASCAL auto-recovery message received.
    2012-02-06 14:26:29:963 INFO DAGT0000 RASCAL Server Feature auto-recovery message received.
    2012-02-06 14:26:29:963 INFO DAGT0000 RASCAL Server Feature auto-recovery message received.
    2012-02-06 14:26:29:963 INFO DAGT0000 RASCAL Server Feature auto-recovery message received.
    2012-02-06 14:26:29:963 INFO DAGT0000 RASCAL auto-recovery message received.
    2012-02-06 14:26:29:963 INFO DAGT0000 RASCAL Server Feature auto-recovery message received.
    2012-02-06 14:26:29:963 INFO DAGT0000 RASCAL Server Feature auto-recovery message received.
    2012-02-06 14:26:30:083 INFO DAGT0000 Login to enterprise server.
    2012-02-06 14:26:30:107 INFO DAGT0000 Enterprise auto-recovery message received.
    2012-02-06 14:26:30:107 INFO DAGT0000 Enterprise-SupervisorWorkflow auto-recovery message received.
    2012-02-06 14:26:30:108 INFO DAGT3007 Unable to retrieve data from Enterprise Database.
    2012-02-06 14:26:30:208 INFO DAGT0000 RASCAL auto-recovery message received.
    2012-02-06 14:26:30:211 INFO DAGT1021 Login to Desktop Monitoring.
    2012-02-06 14:26:30:212 WARN STD3000 Create registry key Access denied: <5:Access is denied.>.
    2012-02-06 14:26:30:212 WARN STD3000 Create registry key Access denied: <5:Access is denied.>.
    2012-02-06 14:26:30:212 WARN STD3000 Open registry key Object not found: <2:The system cannot find the file specified.>.
    2012-02-06 14:26:30:212 WARN STD3000 Open registry key Object not found: <2:The system cannot find the file specified.>.
    2012-02-06 14:26:30:212 INFO VOIP4000 The Desktop Monitor adapter name is [\Device\Splkpc_{C01D5D56-67FC-4F67-90FE-E47803A71AE1}].
    2012-02-06 14:26:30:217 INFO DAGT0000 Enterprise auto-recovery message received.
    2012-02-06 14:26:30:217 INFO DAGT0000 Enterprise-SupervisorWorkflow auto-recovery message received.
    2012-02-06 14:26:30:231 INFO DAGT0000 RASCAL auto-recovery message received.
    2012-02-06 14:26:30:250 INFO LRM4000 SLRMMgr object created.
    2012-02-06 14:26:30:250 INFO LRM4003 SLRMMgr object initialized.
    2012-02-06 14:26:30:250 INFO LRM4008 LRM thread starting.
    2012-02-06 14:26:30:250 INFO LRM4004 LRM interface has become available.
    2012-02-06 14:26:30:251 INFO LRM4006 Reacquire thread starting.
    2012-02-06 14:26:30:366 INFO VOIP4009 Adding the VoIP service [BYFWSRUCCXB] to the list of active VoIP services.
    2012-02-06 14:26:30:366 INFO VOIP4002 The Corba listening process has been successfully started.
    2012-02-06 14:26:30:367 INFO VOIP4001 The Desktop Monitoring module on the local host has been successfully initialized.
    2012-02-06 14:26:30:368 WARN STD3000 Open registry key Object not found: <2:The system cannot find the file specified.>.
    2012-02-06 14:26:31:063 ERROR VOIP2021 Desktop monitoring enabled for extension [1176].
    2012-02-06 16:12:37:861 INFO DAGT3007 Unable to retrieve data from Enterprise Database.
    2012-02-06 17:56:54:460 INFO VOIP4005 Desktop monitoring disabled for extension [1176].
    2012-02-06 17:56:55:644 ERROR DAGT3051 Chat DropUser failed.
    2012-02-06 17:56:55:645 INFO Agent MF2095 OnUpdateAcdLoginLogout: Remaining time 1999
    2012-02-06 17:56:55:645 INFO Agent MF2098 OnUpdateAcdLoginLogout: We receive AS_LOGOUT so close CAD window
    VERSION INFO: Environment: Platform .
    VERSION INFO: Environment: Working Dir: .
    VERSION INFO: Environment: User Dir: .
    VERSION INFO: Environment: Hostname .
    VERSION INFO: Environment: Timezone , DST Zone .
    VERSION INFO: Environment: Current time <2012-02-07 09:36:27.341>.
    VERSION INFO: Debug threshold .
    VERSION INFO: Max file size <3000000>.
    VERSION INFO: Max file count <1>.
    VERSION INFO: Module: agent.exe: Product Version <6.6.1.400> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: ntdll.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: kernel32.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: KERNELBASE.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: SplkStd.dll: Product <> Version <2.0.0.32> Pri Build <> Special Build <>.
    VERSION INFO: Module: WS2_32.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: msvcrt.dll: Product Version <7.0.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: RPCRT4.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: NSI.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: VERSION.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: SHLWAPI.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: GDI32.dll: Product Version <6.1.7601.17514> Pri Build <> Special Build <>.
    VERSION INFO: Module: USER32.dll: Product Version <6.1.7601.17514> Pri Build <> Special Build <>.
    VERSION INFO: Module: LPK.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: USP10.dll: Product Version <1.0626.7601.17561> Pri Build <> Special Build <>.
    VERSION INFO: Module: pthreadVC2.dll: Product <> Version <2, 8, 0, 0> Pri Build <> Special Build <>.
    VERSION INFO: Module: WSOCK32.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: MSVCR80.dll: Product Version <8.00.50727.4940> Pri Build <> Special Build <>.
    VERSION INFO: Module: xerces-c_2_7.dll: Product Version <2, 7, 0> Pri Build <> Special Build <>.
    VERSION INFO: Module: ADVAPI32.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: sechost.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: PSAPI.DLL: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: MSVCP80.dll: Product Version <8.00.50727.4940> Pri Build <> Special Build <>.
    VERSION INFO: Module: FCRasClient.dll: Product Version <6.6.1.400> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: omniDynamic410_vc8_rt.dll: Product <> Version <> Pri Build <> Special Build <>.
    VERSION INFO: Module: omniORB410_vc8_rt.dll: Product <> Version <> Pri Build <> Special Build <>.
    VERSION INFO: Module: omnithread33_vc8_rt.dll: Product <> Version <> Pri Build <> Special Build <>.
    VERSION INFO: Module: LRMClient.dll: Product Version <6.6.1.400> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: LDAPClientDLL.dll: Product Version <6.6.1.400> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: SplkSecurity.dll: Product Version <2.0.0.32> Pri Build Special Build <>.
    VERSION INFO: Module: LIBEAY32.dll: Product Version <0.9.8f> Pri Build <> Special Build <>.
    VERSION INFO: Module: libsasl.dll: Product Version Pri Build Special Build .
    VERSION INFO: Module: SplkSocket.dll: Product <> Version <1.0.0.44> Pri Build <> Special Build <>.
    VERSION INFO: Module: SplkMisc.dll: Product Version <6.6.1.54> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: RecordingClient.dll: Product Version <6.6.1.400> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: FCVoIPMonClientRec.dll: Product Version <6.6.1.54> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: OpenH323Wrapper.dll: Product Version <6.6.1.54> Pri Build <> Special Build <>.
    VERSION INFO: Module: ptlib.dll: Product <> Version <> Pri Build <> Special Build <>.
    VERSION INFO: Module: comdlg32.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: COMCTL32.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: SHELL32.dll: Product Version <6.1.7601.17514> Pri Build <> Special Build <>.
    VERSION INFO: Module: ole32.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: ODBC32.dll: Product <> Version <> Pri Build <> Special Build <>.
    VERSION INFO: Module: DNSAPI.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: WINMM.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: snmpapi.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: AVICAP32.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: MSVFW32.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: MPR.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: MobileAgentMonitor.dll: Product <> Version <> Pri Build <> Special Build <>.
    VERSION INFO: Module: FCCClient.dll: Product Version <6.6.1.54> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: CadSplkStd.dll: Product Version <6.6.1.54> Pri Build <6.6(1)> Special Build <>.
    VERSION INFO: Module: SAW.dll: Product Version <6.6.1.400> Pri Build <> Special Build <>.
    VERSION INFO: Module: CSI.dll: Product Version <6.6.1.400> Pri Build <> Special Build <>.
    VERSION INFO: Module: SSLEAY32.dll: Product Version <0.9.8f> Pri Build <> Special Build <>.
    VERSION INFO: Module: iphlpapi.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: WINNSI.DLL: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: SPLKTSSP.dll: Product Version <6.6.1.54> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: FCHooker.dll: Product Version <6.6.1.54> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: PhoneDev.dll: Product Version <6.6.1.400> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: AcmiClient.dll: Product Version <6.6.1.400> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: MFC80.DLL: Product Version <8.00.50727.4053> Pri Build <> Special Build <>.
    VERSION INFO: Module: OLEAUT32.dll: Product <> Version <> Pri Build <> Special Build <>.
    VERSION INFO: Module: DesktopMonitor.dll: Product Version <6.6.1.54> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: SplkWinPcap.dll: Product Version <6.6.1.54> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: shlapi.dll: Product Version <7, 0, 0, 0> Pri Build <> Special Build <>.
    VERSION INFO: Module: sllapi.dll: Product Version <7, 0, 0, 0> Pri Build <> Special Build <>.
    VERSION INFO: Module: XTP9510Libu.dll: Product Version <9, 5, 1, 0> Pri Build <> Special Build <>.
    VERSION INFO: Module: MFC80U.DLL: Product Version <8.00.50727.4053> Pri Build <> Special Build <>.
    VERSION INFO: Module: SplkUpdate.dll: Product Version <6.6.1.54> Pri Build <> Special Build <>.
    VERSION INFO: Module: EEMServerClient.dll: Product <> Version <6.6.1.400> Pri Build <> Special Build < >.
    VERSION INFO: Module: CADEEMConnector.dll: Product Version <6.6.1.400> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: MSIMG32.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: IMM32.DLL: Product Version <6.1.7601.17514> Pri Build <> Special Build <>.
    VERSION INFO: Module: MSCTF.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: SOPHOS~1.DLL: Product Version <9.5.5> Pri Build <> Special Build <>.
    VERSION INFO: Module: odbcint.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: ICMP.DLL: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: RASAPI32.DLL: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: rasman.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: MFC80ENU.DLL: Product Version <8.00.50727.4053> Pri Build <> Special Build <>.
    VERSION INFO: Module: AgentResDLL.dll: Product <> Version <> Pri Build <> Special Build <>.
    VERSION INFO: Module: NLAapi.dll: Product Version <6.1.7601.17514> Pri Build <> Special Build <>.
    VERSION INFO: Module: napinsp.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: pnrpnsp.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: mswsock.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: winrnr.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: wshbth.dll: Product Version <6.1.7601.17514> Pri Build <> Special Build <>.
    VERSION INFO: Module: WLIDNSP.DLL: Product Version <7.250.4225.0> Pri Build Special Build <>.
    2012-02-07 09:36:29:729 INFO LC0007 Invalid Value.
    2012-02-07 09:36:29:747 INFO LC0007 Invalid Value.
    2012-02-07 09:36:29:748 INFO LC0007 Invalid Value.
    2012-02-07 09:36:29:748 INFO LC0007 Invalid Value.
    2012-02-07 09:36:29:748 INFO LC0007 Invalid Value.
    2012-02-07 09:36:29:748 INFO LC0007 Invalid Value.
    2012-02-07 09:36:29:814 INFO STD0000 Starting preference change event dispatch thread.
    2012-02-07 09:36:29:824 WARN STD3000 Get registry key under path . Object not found: <2:The system cannot find the file specified.>.
    2012-02-07 09:36:30:533 WARN STD3000 Get registry key under path . Object not found: <2:The system cannot find the file specified.>.
    2012-02-07 09:36:30:533 WARN STD3000 Get registry key under path . Object not found: <2:The system cannot find the file specified.>.
    2012-02-07 09:36:31:399 INFO DAGT0000 Get Update Flag from LDAP successfully.
    2012-02-07 09:36:32:086 INFO SPUD0000 Successfully launched update from .
    2012-02-07 09:36:32:773 INFO VOIP4020 Created the LDAP recovery thread.
    2012-02-07 09:36:32:796 INFO Agent ACM0325  Load the agent profile
    2012-02-07 09:36:39:117 INFO DAGT0000 Verify agent license.
    2012-02-07 09:36:39:540 INFO DAGT0000 Load the agent configuration.
    2012-02-07 09:36:39:565 INFO Agent CC1038 Package type is: Premium Version
    2012-02-07 09:36:41:110 INFO DAGT1020 Login to telephony server.
    2012-02-07 09:36:41:227 INFO AcmiClnt0000 Begin invokeId(2) clientID(DayP) clientSignature() heartBeat(30) idleTimeOut(120) agentID(DayP) agentExt(1176) agentInst(1176), peripheralID(1)
    2012-02-07 09:36:44:432 INFO DAGT0000 Login to chat server.
    2012-02-07 09:36:44:433 WARN STD3000 Create registry key Access denied: <5:Access is denied.>.
    2012-02-07 09:36:44:433 WARN STD3000 Create registry key Access denied: <5:Access is denied.>.
    2012-02-07 09:36:44:434 WARN STD3000 Open registry key Object not found: <2:The system cannot find the file specified.>.
    2012-02-07 09:36:44:434 WARN STD3000 Open registry key Object not found: <2:The system cannot find the file specified.>.
    2012-02-07 09:36:44:434 WARN STD3000 Open registry key Object not found: <2:The system cannot find the file specified.>.
    2012-02-07 09:36:44:870 WARN STD3000 Open registry key Object not found: <2:The system cannot find the file specified.>.
    2012-02-07 09:36:44:927 INFO FCCC0000 CORBA server started. Local server IOR is IOR:010000001200000049444c3a464343436c69656e743a312e30000000010000000000000064000000010102000f0000003135322e3134362e3132392e323900008ce600000c0000004f30f0ac000015bb000000010200000000000000080000000100000000545441010000001c00000001000000010001000100000001000105090101000100000009010100.
    2012-02-07 09:36:44:929 INFO FCCC0000 Successfully connected to the Desktop Chat Service.
    2012-02-07 09:36:44:929 INFO DAGT0000 Call Chat auto-recovery message received.
    2012-02-07 09:36:45:034 INFO DAGT0000 Login to RASCAL server.
    2012-02-07 09:36:45:177 INFO DAGT0000 RASCAL auto-recovery message received.
    2012-02-07 09:36:45:590 INFO DAGT0000 RASCAL auto-recovery message received.
    2012-02-07 09:36:45:590 INFO DAGT0000 RASCAL Server Feature auto-recovery message received.
    2012-02-07 09:36:45:590 INFO DAGT0000 RASCAL Server Feature auto-recovery message received.
    2012-02-07 09:36:45:590 INFO DAGT0000 RASCAL Server Feature auto-recovery message received.
    2012-02-07 09:36:45:590 INFO DAGT0000 RASCAL auto-recovery message received.
    2012-02-07 09:36:45:590 INFO DAGT0000 RASCAL Server Feature auto-recovery message received.
    2012-02-07 09:36:45:590 INFO DAGT0000 RASCAL Server Feature auto-recovery message received.
    2012-02-07 09:36:45:705 INFO DAGT0000 Login to enterprise server.
    2012-02-07 09:36:45:746 INFO DAGT0000 Enterprise auto-recovery message received.
    2012-02-07 09:36:45:746 INFO DAGT0000 Enterprise-SupervisorWorkflow auto-recovery message received.
    2012-02-07 09:36:45:746 INFO DAGT3007 Unable to retrieve data from Enterprise Database.
    2012-02-07 09:36:45:788 INFO DAGT0000 Enterprise auto-recovery message received.
    2012-02-07 09:36:45:788 INFO DAGT0000 Enterprise-SupervisorWorkflow auto-recovery message received.
    2012-02-07 09:36:45:789 INFO DAGT0000 RASCAL auto-recovery message received.
    2012-02-07 09:36:45:851 INFO DAGT1021 Login to Desktop Monitoring.
    2012-02-07 09:36:45:851 WARN STD3000 Create registry key Access denied: <5:Access is denied.>.
    2012-02-07 09:36:45:851 WARN STD3000 Create registry key Access denied: <5:Access is denied.>.
    2012-02-07 09:36:45:851 WARN STD3000 Open registry key Object not found: <2:The system cannot find the file specified.>.
    2012-02-07 09:36:45:851 WARN STD3000 Open registry key Object not found: <2:The system cannot find the file specified.>.
    2012-02-07 09:36:45:852 INFO VOIP4000 The Desktop Monitor adapter name is [\Device\Splkpc_{C01D5D56-67FC-4F67-90FE-E47803A71AE1}].
    2012-02-07 09:36:45:856 INFO DAGT0000 RASCAL auto-recovery message received.
    2012-02-07 09:36:45:891 INFO LRM4000 SLRMMgr object created.
    2012-02-07 09:36:45:891 INFO LRM4003 SLRMMgr object initialized.
    2012-02-07 09:36:45:891 INFO LRM4008 LRM thread starting.
    2012-02-07 09:36:45:891 INFO LRM4004 LRM interface has become available.
    2012-02-07 09:36:45:891 INFO LRM4006 Reacquire thread starting.
    2012-02-07 09:36:45:997 INFO VOIP4009 Adding the VoIP service [BYFWSRUCCXB] to the list of active VoIP services.
    2012-02-07 09:36:45:997 INFO VOIP4002 The Corba listening process has been successfully started.
    2012-02-07 09:36:45:999 INFO VOIP4001 The Desktop Monitoring module on the local host has been successfully initialized.
    2012-02-07 09:36:45:999 WARN STD3000 Open registry key Object not found: <2:The system cannot find the file specified.>.
    2012-02-07 09:36:46:729 ERROR VOIP2021 Desktop monitoring enabled for extension [1176].
    2012-02-07 09:39:55:350 INFO DAGT3007 Unable to retrieve data from Enterprise Database.
    2012-02-07 09:39:55:354 INFO DAGT3007 Unable to retrieve data from Enterprise Database.
    2012-02-07 12:40:57:129 INFO DAGT3007 Unable to retrieve data from Enterprise Database.
    2012-02-07 12:40:57:133 INFO DAGT3007 Unable to retrieve data from Enterprise Database.
    2012-02-07 12:52:56:407 INFO DAGT3007 Unable to retrieve data from Enterprise Database.
    2012-02-07 12:52:56:411 INFO DAGT3007 Unable to retrieve data from Enterprise Database.
    2012-02-07 13:41:56:617 INFO AcmiClnt0004 Error receiving sockets message header. Error(15:failed to read from socket).
    2012-02-07 13:41:57:298 ERROR LRM2014 A sockets error occurred. Error: (15:failed to read from socket).
    2012-02-07 13:41:57:299 INFO LRM4005 LRM interface has become unavailable.
    2012-02-07 13:41:57:299 INFO DAGT0000 Enterprise auto-recovery message received.
    2012-02-07 13:41:57:299 INFO DAGT0000 Enterprise auto-recovery message received.
    2012-02-07 13:41:57:299 INFO DAGT0000 Enterprise-SupervisorWorkflow auto-recovery message received.
    2012-02-07 13:41:57:299 WARN DAGT2048 LRM Inactive Message received.
    2012-02-07 13:41:57:300 ERROR LRM2014 A sockets error occurred. Error: (17:socket connection closed by remote party).
    2012-02-07 13:41:58:629 INFO DAGT0000 LDAP auto-recovery message received.
    2012-02-07 13:41:58:629 INFO VOIP4004 The LDAP connection has gone down.
    2012-02-07 13:41:58:632 INFO DAGT0000 LDAP auto-recovery message received.
    2012-02-07 13:41:58:632 INFO VOIP4003 The LDAP connection has come up.
    2012-02-07 13:42:01:839 INFO LRM4004 LRM interface has become available.
    2012-02-07 13:42:01:979 INFO DAGT0000 Verify agent license.
    2012-02-07 13:42:02:057 INFO DAGT0000 Enterprise auto-recovery message received.
    2012-02-07 13:42:02:057 INFO DAGT0000 Enterprise-SupervisorWorkflow auto-recovery message received.
    2012-02-07 13:42:02:291 ERROR AcmiClnt2004 Error occured when receiving message from cti server. Error(15:failed to read from socket).
    2012-02-07 13:42:02:743 INFO DAGT0000 RASCAL auto-recovery message received.
    2012-02-07 13:42:02:743 INFO DAGT0000 RASCAL Server Feature auto-recovery message received.
    2012-02-07 13:42:02:743 INFO DAGT0000 RASCAL Server Feature auto-recovery message received.
    2012-02-07 13:42:02:743 INFO DAGT0000 RASCAL Server Feature auto-recovery message received.
    2012-02-07 13:42:02:743 INFO DAGT0000 RASCAL auto-recovery message received.
    2012-02-07 13:42:02:743 INFO DAGT0000 RASCAL Server Feature auto-recovery message received.
    2012-02-07 13:42:02:743 INFO DAGT0000 RASCAL Server Feature auto-recovery message received.
    2012-02-07 13:42:02:743 INFO DAGT0000 RASCAL Server Feature auto-recovery message received.
    2012-02-07 13:42:02:743 INFO DAGT0000 RASCAL auto-recovery message received.
    2012-02-07 13:42:02:743 INFO DAGT0000 RASCAL auto-recovery message received.
    2012-02-07 13:42:02:743 INFO DAGT0000 RASCAL auto-recovery message received.
    2012-02-07 13:42:02:743 INFO DAGT0000 RASCAL auto-recovery message received.
    2012-02-07 13:42:02:743 INFO DAGT0000 RASCAL auto-recovery message received.
    2012-02-07 13:42:02:743 INFO DAGT0000 RASCAL auto-recovery message received.
    2012-02-07 13:42:02:759 INFO DAGT0000 RASCAL auto-recovery message received.
    2012-02-07 13:42:02:759 INFO DAGT0000 RASCAL Server Feature auto-recovery message received.
    2012-02-07 13:42:02:759 INFO DAGT0000 RASCAL Server Feature auto-recovery message received.
    2012-02-07 13:42:02:759 INFO DAGT0000 RASCAL Server Feature auto-recovery message received.
    2012-02-07 13:42:02:759 INFO DAGT0000 RASCAL auto-recovery message received.
    2012-02-07 13:42:02:759 INFO DAGT0000 RASCAL Server Feature auto-recovery message received.
    2012-02-07 13:42:02:759 INFO DAGT0000 RASCAL Server Feature auto-recovery message received.
    2012-02-07 13:42:02:759 INFO DAGT0000 RASCAL auto-recovery message received.
    2012-02-07 13:42:02:759 INFO DAGT0000 RASCAL Server Feature auto-recovery message received.
    2012-02-07 13:42:02:759 INFO DAGT0000 RASCAL Server Feature auto-recovery message received.
    2012-02-07 13:42:02:759 INFO DAGT0000 RASCAL Server Feature auto-recovery message received.
    2012-02-07 13:42:02:806 ERROR FCCC2005 Network communication error (COMM_FAILURE).
    2012-02-07 13:42:02:806 ERROR FCCC2015 The connection to the Desktop Chat Service has been lost. The program will attempt to reconnect automatically.
    2012-02-07 13:42:02:806 INFO DAGT0000 Call Chat auto-recovery message received.
    2012-02-07 13:42:02:806 ERROR FCCC2015 The connection to the Desktop Chat Service has been lost. The program will attempt to reconnect automatically.
    2012-02-07 13:42:02:806 INFO DAGT0000 Call Chat auto-recovery message received.
    2012-02-07 13:42:02:806 ERROR DAGT3062 Chat SetAgentAcdState failed.
    2012-02-07 13:42:02:806 INFO DAGT0000 Call Chat auto-recovery message received.
    2012-02-07 13:42:02:821 INFO FCCC0000 Successfully connected to the Desktop Chat Service.
    2012-02-07 13:42:02:821 INFO DAGT0000 Call Chat auto-recovery message received.
    2012-02-07 13:42:02:946 INFO AcmiClnt0001 Failed to send message to the cti server. Error(failed to send message to cti server).
    2012-02-07 13:42:13:293 INFO VOIP4005 Desktop monitoring disabled for extension [1176].
    2012-02-07 14:05:01:184 INFO Agent MF2095 OnUpdateAcdLoginLogout: Remaining time 1999
    2012-02-07 14:05:01:184 INFO Agent MF2098 OnUpdateAcdLoginLogout: We receive AS_LOGOUT so close CAD window
    VERSION INFO: Environment: Platform .
    VERSION INFO: Environment: Working Dir: .
    VERSION INFO: Environment: User Dir: .
    VERSION INFO: Environment: Hostname .
    VERSION INFO: Environment: Timezone , DST Zone .
    VERSION INFO: Environment: Current time <2012-02-07 14:05:02.839>.
    VERSION INFO: Debug threshold .
    VERSION INFO: Max file size <3000000>.
    VERSION INFO: Max file count <1>.
    VERSION INFO: Module: agent.exe: Product Version <6.6.1.400> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: ntdll.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: kernel32.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: KERNELBASE.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: SplkStd.dll: Product <> Version <2.0.0.32> Pri Build <> Special Build <>.
    VERSION INFO: Module: WS2_32.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: msvcrt.dll: Product Version <7.0.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: RPCRT4.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: NSI.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: VERSION.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: SHLWAPI.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: GDI32.dll: Product Version <6.1.7601.17514> Pri Build <> Special Build <>.
    VERSION INFO: Module: USER32.dll: Product Version <6.1.7601.17514> Pri Build <> Special Build <>.
    VERSION INFO: Module: LPK.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: USP10.dll: Product Version <1.0626.7601.17561> Pri Build <> Special Build <>.
    VERSION INFO: Module: pthreadVC2.dll: Product <> Version <2, 8, 0, 0> Pri Build <> Special Build <>.
    VERSION INFO: Module: WSOCK32.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: MSVCR80.dll: Product Version <8.00.50727.4940> Pri Build <> Special Build <>.
    VERSION INFO: Module: xerces-c_2_7.dll: Product Version <2, 7, 0> Pri Build <> Special Build <>.
    VERSION INFO: Module: ADVAPI32.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: sechost.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: PSAPI.DLL: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: MSVCP80.dll: Product Version <8.00.50727.4940> Pri Build <> Special Build <>.
    VERSION INFO: Module: FCRasClient.dll: Product Version <6.6.1.400> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: omniDynamic410_vc8_rt.dll: Product <> Version <> Pri Build <> Special Build <>.
    VERSION INFO: Module: omniORB410_vc8_rt.dll: Product <> Version <> Pri Build <> Special Build <>.
    VERSION INFO: Module: omnithread33_vc8_rt.dll: Product <> Version <> Pri Build <> Special Build <>.
    VERSION INFO: Module: LRMClient.dll: Product Version <6.6.1.400> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: LDAPClientDLL.dll: Product Version <6.6.1.400> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: SplkSecurity.dll: Product Version <2.0.0.32> Pri Build Special Build <>.
    VERSION INFO: Module: LIBEAY32.dll: Product Version <0.9.8f> Pri Build <> Special Build <>.
    VERSION INFO: Module: libsasl.dll: Product Version Pri Build Special Build .
    VERSION INFO: Module: SplkSocket.dll: Product <> Version <1.0.0.44> Pri Build <> Special Build <>.
    VERSION INFO: Module: SplkMisc.dll: Product Version <6.6.1.54> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: RecordingClient.dll: Product Version <6.6.1.400> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: FCVoIPMonClientRec.dll: Product Version <6.6.1.54> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: OpenH323Wrapper.dll: Product Version <6.6.1.54> Pri Build <> Special Build <>.
    VERSION INFO: Module: ptlib.dll: Product <> Version <> Pri Build <> Special Build <>.
    VERSION INFO: Module: comdlg32.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: COMCTL32.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: SHELL32.dll: Product Version <6.1.7601.17514> Pri Build <> Special Build <>.
    VERSION INFO: Module: ole32.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: ODBC32.dll: Product <> Version <> Pri Build <> Special Build <>.
    VERSION INFO: Module: DNSAPI.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: WINMM.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: snmpapi.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: AVICAP32.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: MSVFW32.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: MPR.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: MobileAgentMonitor.dll: Product <> Version <> Pri Build <> Special Build <>.
    VERSION INFO: Module: FCCClient.dll: Product Version <6.6.1.54> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: CadSplkStd.dll: Product Version <6.6.1.54> Pri Build <6.6(1)> Special Build <>.
    VERSION INFO: Module: SAW.dll: Product Version <6.6.1.400> Pri Build <> Special Build <>.
    VERSION INFO: Module: CSI.dll: Product Version <6.6.1.400> Pri Build <> Special Build <>.
    VERSION INFO: Module: SSLEAY32.dll: Product Version <0.9.8f> Pri Build <> Special Build <>.
    VERSION INFO: Module: iphlpapi.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: WINNSI.DLL: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: SPLKTSSP.dll: Product Version <6.6.1.54> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: FCHooker.dll: Product Version <6.6.1.54> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: PhoneDev.dll: Product Version <6.6.1.400> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: AcmiClient.dll: Product Version <6.6.1.400> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: MFC80.DLL: Product Version <8.00.50727.4053> Pri Build <> Special Build <>.
    VERSION INFO: Module: OLEAUT32.dll: Product <> Version <> Pri Build <> Special Build <>.
    VERSION INFO: Module: DesktopMonitor.dll: Product Version <6.6.1.54> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: SplkWinPcap.dll: Product Version <6.6.1.54> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: shlapi.dll: Product Version <7, 0, 0, 0> Pri Build <> Special Build <>.
    VERSION INFO: Module: sllapi.dll: Product Version <7, 0, 0, 0> Pri Build <> Special Build <>.
    VERSION INFO: Module: XTP9510Libu.dll: Product Version <9, 5, 1, 0> Pri Build <> Special Build <>.
    VERSION INFO: Module: MFC80U.DLL: Product Version <8.00.50727.4053> Pri Build <> Special Build <>.
    VERSION INFO: Module: SplkUpdate.dll: Product Version <6.6.1.54> Pri Build <> Special Build <>.
    VERSION INFO: Module: EEMServerClient.dll: Product <> Version <6.6.1.400> Pri Build <> Special Build < >.
    VERSION INFO: Module: CADEEMConnector.dll: Product Version <6.6.1.400> Pri Build <6.6(1)> Special Build < >.
    VERSION INFO: Module: MSIMG32.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: IMM32.DLL: Product Version <6.1.7601.17514> Pri Build <> Special Build <>.
    VERSION INFO: Module: MSCTF.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: SOPHOS~1.DLL: Product Version <9.5.5> Pri Build <> Special Build <>.
    VERSION INFO: Module: odbcint.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: ICMP.DLL: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: RASAPI32.DLL: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: rasman.dll: Product Version <6.1.7600.16385> Pri Build <> Special Build <>.
    VERSION INFO: Module: MFC80ENU.DLL: Product Version <8.00.50727.4053> Pri Build <> Special Build <>.
    VERSION INFO: Module: AgentResDLL.dll: Product <> Version <> Pri Build <> Special Build <>.
    VERSION INFO: Module: NLAapi.dll: Product Version <6.1.7601.17514> Pri Build <> Special Build <>.

  • Unable to view project

    Hi,
    We have an issue wherein a resource manager is unable to view a project to which he has been assigned as a resource manager.
    I check his roles, BP and everything looks good. His HR reocrds look good as well. I have even re-imported his HR master record into RPM but still there is no resolution to it.
    He is getting the error "You require authorization to display Project Project Name"
    We are using SAP xRPM/cProjects/cFolders 4.50 (ABAP).
    Could you please guide on how I could fix this issue. Any lead would be really helpful.
    Thank you,
    Manish

    Hi Matthias,
    Yes I have verified by clicking on the user link and it shows me all his details with all the projects assigned to him. The BP is correctly defined in the back end as well.
    When I add him to the authorization tab manually, he is able to view the project. This issue is seen only with his id.
    One thing to note here is that he has gone through multiple status changes in HR, ( Employee then contractor and now an employee) But I had even imported all his HR records to RPM but its still the same.
    Could you please advise if I would need to check any of his HR records in specific.
    Thank you,
    Manish

Maybe you are looking for

  • Higher volume for video playback?

    Hello everyone! I am new to the boards and to the touchpad.  I have a question about adjusting the volume in video playback.  I woudl like to know while during the conversion process, are there any converters out there that can boost the volume?  I h

  • G3 is stuck on Happy Mac

    I had bought a new fresh copy of OS X 10.0 and installed it on my Hard Drive...about 5 times now. Theres no third party hardware in the machine,but the videocard does tend to show trails of random things and colorwhen im working in Mac OS desktop and

  • Aperture and Photostream

    I had some great advice on this forum yesterday which partially solved my Aperture problem. I wonder if anyone can solve this bit of it please... Aperture hangs on import of images if Photostream is turned on. Not only that, but it locks up the entir

  • PDF Multiple Line Print Function

    I'm hoping to create a form that allows for multiple lines, but that can also be extended beyond the visible box (if the box allows for 20 lines and they want 30 then they can).  I can do this for viewing purposes, but cannot get the content to print

  • Can not send mail with mac mail

    I see several other people are having a problem with outgoing mail using different servers. Mine was working until today and now get error message that it is trying to use smtp.mac instead of .comast as it is set up to do. This makes me think it has