|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3063 ] | UbiCall |
---|---|
Organisation name | UbiCall Communications SA |
Short name or acronym | UbiCall |
Organisation type | Company |
Activity type | Voice Activated Automated Attendant, Directory Dialer |
Address | Rue Descartes, 2 |
Postal Code | 7000 |
City | Mons |
Country | Belgium |
Phone | + +32 65 321546 |
Fax | + +32 65 321585 |
info_(on)_ubicall.com | |
Organisation URL | http://www.ubicall.com |
Logo | Description |
![]() |
UbiCall Communications S.A. (UbiCall) is a Belgian-based technology company that specializes in developing innovative, interactive telephony solutions which provide customers with immediate and identifiable returns. Combining UbiCalls unique approach, proprietary software, voice recognition and automated dialog management expertise with existing relevant technologies, the company addresses an important market comprised of companies seeking to enhance customer service and reduce the time that operators spend transferring calls. The Companys initial product offering, Voxplorer(TM) Receptionist is an easy to install, telecommunication software package that integrates with telephony platforms to provide a simple, efficient and virtually error-free method of ensuring phone calls are automatically transferred to the correct destination. |
Contact | |
Name | Jean Hennebert |
Function | VP Technology |
Department | R&D |
jean.hennebert_(on)_ubicall.com | |
Phone | + +32 65 321534 |
Fax | + +32 65 321585 |
![]() |
Last update: 2003-08-13 15:23:38 #!/usr/bin/ksh # cntr.cgi -- # version 0 DOC=$DOCUMENT_ROOT$DOCUMENT_URI VSTART=28-08-2008 WRONGLOG=${DOCUMENT_ROOT}/cntr.txt echo Content-type:text/html echo case $DOC in *experts*) CDIR=${DOCUMENT_ROOT}/cntex ;; *orgs*) CDIR=${DOCUMENT_ROOT}/cntor ;; *) WRONG=yes ;; esac CFILE=${DOC##*/} case ${CFILE} in [0-9][0-9][0-9][0-9].html) WRONG=no ;; *) WRONG=yes ;; esac [ $WRONG = yes ] && { echo "$(date) $REMOTE_ADDR ${DOC}" >> $WRONGLOG exit } CCNT=${CDIR}/${CFILE%.html}.txt CLCK=${CDIR}/${CFILE%.html}.lck [ -s $CCNT ] && COUNT=$(head -1 $CCNT) COUNT=$(( ${COUNT:-0} + 1 )) [ -f $CLCK ] || { touch $CLCK echo $COUNT > $CCNT rm -f $CLCK } echo " Visits since $VSTART: $COUNT" |