|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0721 ] | Conversay |
---|---|
Organisation name | Conversational Computing Corporation |
Short name or acronym | Conversay |
Organisation type | Company |
Activity type | End-to-End Speech Technology Solutions |
Address | 15375 NE 90th Street |
Postal Code | 98052 |
City | Redmond, WA |
Country | United States |
Phone | + +1 425 895 1800 |
Fax | + +1 425 636-0600 |
sales_(on)_conversay.com | |
Organisation URL | http://www.conversay.com |
Logo | Description |
![]() |
Founded in 1994, Conversay provides solutions that enable voice interaction with networked information, including the Internet, when other interfaces are difficult or impossible. Built on an innovative speech engine, Conversay technology is speaker-independent, modular, scalable and accommodates unlimited vocabulary, making it ideally suited for embedded applications. It also drives the award-winning line of Conversation products including a voice browser, a server, and developer tools for the web, desktop, server, and embedded markets. Conversay headquarters are in Redmond, Wash., and is located on the web at www.conversay.com. |
Contact | |
Name | John Mumm |
Function | Sales and Business Alliances |
Department | Sales |
sales_(on)_conversay.com | |
Phone | + (425) 895-1800 |
Fax | + (425) 636-0600 |
![]() |
Last update: 2002-04-15 19:56:18 #!/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" |