Chronicall Errors caused by [Missed Packet]

chronicall

 

 

 

 

Errors within Xima’s Chronicall logs can be caused by the system missing reported events.  This can be seen within the Tomcat logs located “C:\Program Files (x86)\Xima Software\Chronicall\tomcat\logs”  Search by the Date Modified and inspect the latest file beginning with the Year-Month-Date-xxxxxx.log.

Within this file, look for [Missed Packet].  The line will look similar to:

“Tue May 05 13:22:04 CDT 2015 [Missed Packet: expecting 87034 received: 87036] ...

Continue Reading →
0

Avaya VM PRO and One-X Migration to Windows

It make take some time to get this up and running…but it will be worth it.  Also, this procedure cures an issue where One-X users cannot retrieve Voicemails.

Before you begin installing the One-X Portal, you must have “Web Voicemail” installed and running on your VoiceMail Pro Server.  This is a special feature that is NOT install by default.
WebVMPROCapture

If you do not have it installed and/or cannot see the “Web Voicemail” option, ...

Continue Reading →
0

Avaya UCM Problems

We recently experienced trouble with our Avaya Unified Communications Module (UCM). Naturally this occurred just after the 1 year warranty expired. So despite there being a proliferation of problems with these modules…Avaya would not do anything – so, we were forced to make some decisions.

PROBLEM SOLVED
We were able to resolve the problem by re-imaging the UCM.

CONSIDER THIS
Consider NOT replacing or fixing the UCM. After the UCM failed, our tech felt the quickest way to ...

Continue Reading →
0

Dell iDRAC 6 not responding

For our Dell R610 servers, we apply firmware, Bios, and hardware patches using the Unified Server Configurator and an SUU Bundle created from Dell’s Repository Manager software.

During a recent update, one of the servers returned the following error:
“Alert! iDRAC6 not responding. Power required may exceed PSU wattage.”

CAUSE:
This produced a somewhat erroneous error that required F1 to continue. The problem appears to come from the server not fully power cycling properly during the update. There are also some buggy ...

Continue Reading →
0

VirtualCenter Server will not start

Was working one minute…now its not! Welcome to the wonderful world of Windows Updates. I’m assuming this was broken by the unattended installation of Server 2008 R2 SP1 through our environment or some KB update prior.

It all started with this error when I tried to log into VCenter Server:

“vSphere Client could not connect to ‘{machine name}’ A connection failure occurred (Unable to connect to the remote server)”

After investigating this, I determined the VMware VirtualCenter Server Service was not running. However, ...

Continue Reading →
0

How to whitelist a domain or email in Exchange 2010

If you have the Edge Transport Role installed on an Exchange 2010, mail may be rejected with the following error:

My.User@domain.com mail.domain.com #<mail.domain.com #5.7.1 smtp; 550 5.7.1 Message rejected as spam by Content Filtering.> #SMTP#

Don’t ask me why Microsoft has buried this feature! From what I can tell, the only way to whitelist in Exchange 2010 is through the Powershell – not the GUI.  Thanks to Chris Caldwell for the fix.

Specific Address

$list = (Get-ContentFilterConfig).BypassedSenders
$list.add("new.mail@address.com")
Set-ContentFilterConfig -BypassedSenders $list

Entire Domain

$list = (Get-ContentFilterConfig).BypassedSenderDomains
$list.add("domain.com")
Set-ContentFilterConfig -BypassedSenderDomains ...
Continue Reading →
14

Renaming a VMWare Virtual Machine

This procedure was documented using VM Infrastructure 3.5 for altering ESXi 3.5 virtual machines. You may need to use Veeam to make the renaming adjustments. Could also be done via SSH.

CAUTION: If snapshots do exist and are needed, then you may need to alter the *.vmdk files to keep the chaining in place. If you do not need the snapshots, select “delete all” under the snapshot manager and perform this procedure after the host has consolidated them.

PROCEDURE FOR NON-SNAPSHOT

  1. Copy to ...
Continue Reading →
0

Importing Excel XLS to SQL SSIS error

While trying to execute an SSIS import package on a customer’s Excel file, SQL Server 2008 SP1 was returning a “truncated” error. Although, the SSIS package was set to ignore these, the execution halted and data was not written to the SQL table.

There were a number of posts including David Klein’s and Waxtadpoles regarding SQL 2005 and the “TypeGuessRows” setting in the registry.  Their suggestion was to set the value to 0 (zero), in order to force ...

Continue Reading →
0
Page 1 of 2 12