Organisation profile: Voxpilot Limited
[ ID = 2968 ] | Voxpilot |
Organisation name | Voxpilot Limited |
Short name or acronym | Voxpilot |
Organisation type | Private company |
Activity type | Language or Speech Technology provider |
Address | 8, Cog Hill |
Postal Code | 29681 |
City | Simpsonville |
Country | United States |
Phone | +1 8646271442 |
Fax | +1 8646271222 |
Email | Marketing_(on)_voxpilot.com |
Organisation URL | http://www.voxpilot.com |
Logo | Description |
 |
Voxpilot is a provider of IMS compliant VoiceXML and Video in VoiceXML platforms. Voxpilot brings the next generation of interactive telecommunication services to enterprises, integrators, carriers and service providers. Our flagship product, Voxpilot Open Media Platform (OMP), has been installed in a variety of networks across Europe, America, Africa and Asia. Combining advanced telephony features with Internet capabilities such as SIP and Web technologies such as VoiceXML, the Open Media Platform replaces classic Interactive Voice Response and enables speech-based self-service, conferencing, prepaid services, and video-based solutions such as VideoMail. Visit www.voxpilot.com for more information.
|
| Contact |
Name | Mr Peter Olyarchuk |
Function | VP of Sales and Marketing |
Department | Sales |
Email | Marketing_(on)_voxpilot.com |
Phone | +1 8646271442 |
Fax | + |
Update this profile
|
Last update: 2005-09-05 11:14: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"
|
|