|  
 |||||||||||||||||||||||||||||||||||||||||||||||
 
       
       
 
 
 
 
 |  
 |||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 2954 ] | VoiceGenie Technologies Inc. | 
|---|---|
| Organisation name | VoiceGenie Technologies Inc. | 
| Short name or acronym | VoiceGenie Technologies Inc. | 
| Organisation type | Private company | 
| Activity type | Lang+Speech Technology provider | 
| Address | 1120 Finch Ave West | 
| Postal Code | M3J 3H7 | 
| City | Toronto | 
| Country | Canada | 
| Phone | + 416-736-0905 | 
| Fax | + 416-736-1551 | 
| info_(on)_voicegenie.com | |
| Organisation URL | http://www.voicegenie.com | 
| Logo | Description | 
![]()  | 
VoiceGenie is the worldwide leader in VoiceXML Gateways, Development Environments, and Tools. The VoiceGenie VoiceXML Gateway--the first to offer 100% VoiceXML 1.0 and 2.0 compliance, J2EE-enablement, and full support for multiple speech - and text-to-speech engines--allows any phone to access Voice Web applications developed using the VoiceXML standard. VoiceGenie's customers and partners comprise some of the worlds leading organizations, including AT&T, France Telecom, SAP, Lucent, Orange, Ananova, Intel, SpeechWorks, Nuance, Oracle, Eli Lilly, and more. The VoiceGenie VoiceXML Gateway was recently ranked as the #1 VoiceXML Gateway for a hosted environment by CT Labs, and given the 2001 Innovation Award by TMC Labs. The Kelsey Group estimates that the market for voice-enabling services will grow to $41 billion by 2005. For more information, please visit www.voicegenie.com.  | 
| Contact | |
| Name | Ms. Susanne Borschel | 
| Function | Marketing Communications Specialist | 
| Department | Marketing | 
| sborschel_(on)_voicegenie.com | |
| Phone | + +1 416 736 0905 | 
| Fax | + +1 416 736 1551 | 
| 
 
 | 
Last update: 2004-11-22 16:29:43 #!/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" |