|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0986 ] | Group 2000 |
---|---|
Organisation name | Group 2000 Nederland B.V. |
Short name or acronym | Group 2000 |
Organisation type | Private company |
Activity type | Language or Speech Technology integrator |
Address | Van der Hoopweg 1, P.O. Box 333 |
Postal Code | 7600 AH |
City | Almelo |
Country | Netherlands |
Phone | + 31 546 482 400 |
Fax | + 31 546 482 401 |
sales_(on)_group2000.nl | |
Organisation URL | http://www.group2000.nl |
Logo | Description |
![]() |
The Company sees itself, with a certain degree of justification, as being synonymous with voice and call processing. In applying these technologies to a service application (generic or user-specific) Group 2000 is focussed on creating Value Added Network Services within acceptable time frames. Within this field, our design and production effort concentrates on supplying solutions for public switched networks (Mobile, Fixed and IN). Solutions, incorporating leading edge technology (client/server, VoiceXML, VoIP, SS7, ISDN and Oracle) and open systems, that provide tailor-made answers for each individual situation. Group 2000 supplies and maintains Voice Portals, (parts of) Unified Messaging solutions, networked IVR solutions (with and without Advanced Speech Recognition), SMS-Services, e-mail reading solutions (Text To Speech), Voice Mail Services etc. The professional Customer Care department takes care of 24/7 Maintenance and Support, also for Third Party solutions. Group 2000 is also very experienced in integrating, supplying and maintaining Lawful Interception solutions. |
Contact | |
Name | Mark Hulsbergen |
Function | Managing Director |
Department | General Management |
mark.hulsbergen_(on)_group2000.nl | |
Phone | +31 546 482484 |
Fax | +31 546 482401 |
![]() |
Last update: 2007-08-03 13:02:34 #!/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" |