elsnet |
Organisation profile: IDYLIC S.A. |
[ ID = 3193 ] | IDYLIC |
---|---|
Organisation name | IDYLIC S.A. |
Short name or acronym | IDYLIC |
Organisation type | software editor |
Activity type | voicexml server platforms for telecom and corporate markets |
Address | 10 av de l'Europe |
Postal Code | 31520 |
City | Ramonville St-Agne |
Country | France |
Phone | + +33 (5) 61 28 56 57 |
Fax | + +33 5 61 28 56 00 |
ep_(on)_idylic.com | |
Organisation URL | http://www.idylic.com/ |
Logo | Description |
![]() |
Idylic is a leading Voice platform editor in Europe specialized in VoiceXML solutions. Phonic Corporate is a flexible, open and competitive VoiceXML platform enabling deployment of all types of value added voice services for the Corporate and Call Center Market. Phonic Telecom is the carrier-grade scalable solution for VoiceXML deployments in the Telecom Operator and Voice Service Provider environments. Integrating best of breed voice technologies and advanced call control features, Phonic is also the ideal environment for Idylic partners to develop and deploy advanced and targeted voice applications for Corporate and Telecom markets. Headquartered in Toulouse, France, Idylic was founded in 2000 by a team of voice and internet technology specialists. It brings a reliable and professional solution range to the European VoiceXML Platform market. Since 2001, many customers in EMEA have deployed Idylic's solutions in Corporate and Telecom environments. These include : MAAF Assurances, EDF (French power-supply provider), Hewlett Packard, French Environment Ministry, Lille University, Completel, Monaco Telecom and several mobile subsidiaries of the Orange and France Telecom groups. |
Contact | |
Name | Mr Emmanuel Prouvèze |
Function | VP, Sales & Marketing |
Department | |
ep_(on)_idylic.com | |
Phone | + +33 (5) 61 28 56 57 |
Fax | + +33 5 61 28 56 00 |
![]() |
Last update: 2003-07-15 17:08: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" |