|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2750 ] | Speaklink, Inc. |
---|---|
Organisation name | Speaklink, Inc. |
Short name or acronym | Speaklink, Inc. |
Organisation type | Company |
Activity type | Call centers Speech technology |
Address | 2901 South 128th Street |
Postal Code | 98168 |
City | Seattle |
Country | United States |
Phone | + +1 206 832 3500 |
Fax | + +1 206 832 3501 |
info_(on)_speaklink.com | |
Organisation URL | http://www.speaklink.com |
Logo | Description |
![]() |
Speaklink, Inc. is a global provider of voice solution and technology consulting services for system integrators, ASPs, and enterprises. Speaklinks flagship product, Speaklink Voice Application ServerTM (VAS) is a 100% VoiceXML development suite equipped with reusable code and resource management tools. The Speaklink VAS (TM) makes voice applications truly speech vendor-agnostic. |
Contact | |
Name | Mr. Ton Yazici |
Function | VP, Business Strategy |
Department | |
ton_(on)_speaklink.com | |
Phone | + +1 206 832 3510 |
Fax | + +1 206 832 3501 |
![]() |
Last update: 2002-04-10 12:32:58 #!/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" |