|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2267 ] | WTL |
---|---|
Organisation name | World Telecom Labs |
Short name or acronym | WTL |
Organisation type | Private company |
Activity type | Lang+Speech Technology provider |
Address | Diegemstraat 42 |
Postal Code | B-1930 |
City | Zaventem |
Country | Belgium |
Phone | + +32 2 722 7200 |
Fax | + +32 2 725 6006 |
sales_(on)_wtl.be | |
Organisation URL | http://www.wtl.be/ |
Logo | Description |
![]() |
World Telecom Labs (WTL) is a Belgian based company producing Next Generation packet based switching and VoIP solutions for emerging carriers and telecom service operators. WTL has an installed base of 100,000s of voice ports with worldwide service providers. WTL provides customized solutions for individual telcos and reduced rate interconnect services for international companies. The WTL intelligent switch (IPNx) offers a truly integrated platform handling both circuit and packet voice switching at the carrier-class level. TDM, IP & SS7/C7 are all supported with value added services such as calling card, call shops, Least Cost Routing, Carrier Pre-Select, 800 numbers and VoIP. SIP is in the final stages of development and planned for introduction in late 2004! For more information about WTL and our products, please visit: www.wtl.be or email us at: sales@wtl.be |
Contact | |
Name | |
Function | |
Department | |
Phone | + |
Fax | + |
![]() |
Last update: 2004-09-29 11:20:39 #!/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" |