referencing .tsp file

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi all,
I am developing a Phone Dialer application for Cisco CallManager server.
Cisco provides a .tsp file. But I can't reference this file from my C#/VB.Net
application because the extension of the file is .tsp not .dll. So I was
wondering how to make calls from my application?

Any idea?

Thanks in advance.
 
helpfulsql,

If the tsp files are really dlls which export functions, but have a
different extension, you can use the P/Invoke layer to declare the functions
in .NET just like you would a normal dll, you just have to place the name of
the tpl file in the DllImport attribute.

Hope this helps.
 
Hi

a tsp file is not a dll it is a tapi service provider, and provides a
management interface for the tapi interfaces for windows.

if you go to the phone and modem options in control panel, and the advanced
tab you can add the call manager tsp, which you can then manage through the
tapi3.dll which can easily be added to your application.

there are other things you can get to make life easier, look at exceletels
tapi suite

www.exceletel.com.

kind regards
ronnie
 
Back
Top