|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0169 ] | iXware Nederland - iXware - DocGate - MRS - Fax*Star |
---|---|
Organisation name | iXware Nederland BV |
Short name or acronym | iXware Nederland - iXware - DocGate - MRS - Fax*Star |
Organisation type | Private company |
Activity type | Other Language or Speech Technology expertise |
Address | Stoomloggerweg 6, 3rd Floor |
Postal Code | 3133 KT |
City | Vlaardingen |
Country | Netherlands |
Phone | +31 10 445 51 55 |
Fax | +31 10 445 51 44 |
info_(on)_ixware.com | |
Organisation URL | http://www.ixware-nederland.nl |
Logo | Description |
![]() |
Founded in 1988, iXware Nederland BV has become a leading i(international) supplier of messaging solutions for the Carrier, xSP and Enterprise markets. Every month, more then a million desktop users send and receive millions of fax, sms and voicemail messages using iXware's platform. Every year, millions of fax, e-mail and sms messages are sent from business applications throughout the world by iXware Nederland's DocGate software. iXware Nederland is the Competence Center for Unified Messaging solutions. |
Contact | |
Name | Menno van Zundert |
Function | Channel Manager |
Department | Sales |
mvz_(on)_ixware.com | |
Phone | +31 10 445 51 55 |
Fax | +31 10 445 51 44 |
![]() |
Last update: 2006-01-11 14:40:57 #!/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" |