Net::CSTA - Perl extension for ECMA CSTA


Net-CSTA documentation  | view source Contained in the Net-CSTA distribution.

Index


NAME

Top

Net::CSTA - Perl extension for ECMA CSTA

SYNOPSIS

Top

  use Net::CSTA;

  # Connect to the CSTA server
  my $csta = Net::CSTA->new(Host=>'csta-server',Port=>'csta-server-port');
  # Create a monitor for '555'
  my $number = 555;
  $csta->request(serviceID=>71,
  			     serviceArgs=>{monitorObject=>{device=>{dialingNumber=>$number}}})

  for (;;)
  {
  	 my $pdu = $csta->receive();
  	 print $pdu->toXML();
  }

DESCRIPTION

Top

ECMA CSTA is an ASN.1 based protocol for Computer Integrated Telephony (CTI) using CSTA it is possible to write code that communicates with a PBX. Typical applications include receiving notifications for incoming calls, placing calls, redirecting calls or placing conference calls.

BUGS

Top

This module currently implements CSTA phase I - mostly because my PBX (MD110 with Application Link 4.0) only supports phase I. Supporting multiple versions will require some thought since the versions are largly incompatible.

The CSTA client opens a UDP port on 3333 to receive incoming usolicited notifications. This is not implemented yet.

SECURITY CONSIDERATIONS

Top

CSTA is a protocol devoid of any form of security. Take care to firewall your CSTA server and throw away the key.

SEE ALSO

Top

Convert::ASN1

http://www.ecma-international.org/activities/Communications/TG11/cstaIII.htm

AUTHOR

Top

Leif Johansson, <leifj@it.su.se>

COPYRIGHT AND LICENSE

Top


Net-CSTA documentation  | view source Contained in the Net-CSTA distribution.