|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1620 ] | aixvox |
---|---|
Organisation name | aixvox GmbH |
Short name or acronym | aixvox |
Organisation type | Private company |
Activity type | Language or Speech Technology consultant |
Address | Monheimsallee 22 |
Postal Code | 52062 |
City | Aachen |
Country | Germany |
Phone | +49 2 41 41 33 100 |
Fax | +49 2 41 41 33 200 |
info_(on)_aixvox.com | |
Organisation URL | http://www.aixvox.de |
Logo | Description |
![]() |
aixvox · voice solutions for europe Die aixvox GmbH ist ein herstellerunabhängiges Beratungsunternehmen und ihr Geschäftsführer Detlev Artelt namhafter Autor verschiedener Fachbeiträge und Marktstudien auf dem Gebiet datenbankgestützter Computersprachsysteme in Verbindung mit Spracherkennung und -synthese. Basierend auf einer umfangreichen, technischen Kompetenz und einer mehr als zwölfjährigen Beratungserfahrung aus Konzeption, Umsetzung und Optimierung komplexer Sprachapplikationen wurden bereits weit über fünfzig IVR-Systeme und Sprachportale realisiert. Angefangen bei der Systemauswahl werden Unternehmen bis hin zur Systemintegration begleitet. Schwerpunkte der Beratungstätigkeit liegen in den Bereichen Mobile-Banking-Systeme, Unified-Messaging-Lösungen, Anwendungen im VoIP-, CallingCard- und Sicherheitsbereich sowie allgemeine VoicePortale. Die Beratungsleistung stützt sich auf die vier Säulen PREPARE, CONCEPT, MANAGE und IMPROVE: |
Contact | |
Name | Mr. Detlev Artelt |
Function | CEO |
Department | |
Info_(on)_aixvox.com | |
Phone | +49 241 4133 100 |
Fax | +49 241 4133 200 |
![]() |
Last update: 2005-08-08 17:21:47 #!/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" |