|  
 |||||||||||||||||||||||||||||||||||||||||||||||
 
       
       
 
 
 
 
 |  
 |||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 4119 ] | Massxess | 
|---|---|
| Organisation name | Massxess | 
| Short name or acronym | Massxess | 
| Organisation type | Private company | 
| Activity type | Language or Speech Technology provider | 
| Address | Monitorweg 21 | 
| Postal Code | 1322 BJ | 
| City | Almere | 
| Country | Netherlands | 
| Phone | +31 885454500 | 
| Fax | +31 885454501 | 
| info_(on)_massxess.nl | |
| Organisation URL | http://www.massxess.nl | 
| Logo | Description | 
![]()  | 
Massxess is well known for its Interactive Voice Response Manager application (ivrManager©). This application designed by Massxess helps organizations to build voice applications. ivrManager© makes it possible to design and build voice applications by combining easy-to-understand flow diagrams and standard windows functionality like drag-and-drop. Massxess' IVR platform (www.ivrmanager.nl) is recognized as one of the most advanced Inbound (IN/IVR) service platforms in the Netherlands. Massxess also provides self-service solutions, intelligent network routings and a hosted contact center on demand platform. Massxess services customers with leading IP communication software.  | 
| Contact | |
| Name | |
| Function | |
| Department | |
| info_(on)_massxess.nl | |
| Phone | + | 
| Fax | + | 
| 
 
 | 
Last update: 2010-08-10 15:29:37 #!/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" |