Organisation profile: SandCherry, Inc.
  
 
 
|  [ ID = 2874 ]  | SandCherry, Inc.  |  
| Organisation name | SandCherry, Inc.  |  
| Short name or acronym | SandCherry, Inc.  |  
| Organisation type | Company  |  
| Activity type | Speech technology  |  
| Address  | 2845 Wilderness Place  |  
| Postal Code  | 80301  |  
| City  | Boulder, CO  |  
| Country  | United States  |  
| Phone  | + +1 720 562 4500 | 
 
| Fax  | + +1 720 562 4501 |  
| Email  | info_(on)_sandcherry.com  |  
| Organisation URL  | http://www.sandcherry.com/  |  
| Logo | Description  |  
  | 
SandCherry, Inc. (www.sandcherry.com) is a communications software company based in Boulder, Colorado. SandCherry provides a new class of software platform, the SoftServer, to enterprises and Communications Service Providers for the delivery and management of enhanced and next-generation communications services. The SoftServer platform enables scalable, managed, deployment of speech-enabled and media-rich communications services by providing real-time service control and management. SandCherrys SoftServer platform simplifies service solutions on legacy, wireless, and IP-based communications networks.  
 |  
| 
  
 | Contact |  
| Name |     |  
| Function |   |  
| Department |   |  
| Email | info_(on)_sandcherry.com  |  
| Phone | +  |  
| Fax | +  |  
 
 
Update this profile
 | 
Last update: 2002-04-15 23:22:23
#!/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"
 |  
 
  
  
   
 
 
 
 
 
 
    
   |