Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a desktop application of address diary, developed in C# .Net.

I want to make call from software throw land line phone service, in my office we have 8 phone lines, so i want to select line before call, i want to use headphone and mic in place of phone instrument.

how to connect phone lines to pc. i have more then 8 phone lines

is it possible ? if yes then how and which hardware i need for this.

share|improve this question

3 Answers

up vote 10 down vote accepted
+50

Have you thought of the Skype API: http://developer.skype.com/public/skypekit or http://www.twilio.com

Get rid of the landlines and use a service. Much easier in my opinion. Then it would be far more scalable as well.

If you want to go down the telephony services path check out this library: http://atapi.codeplex.com/

Hardware for landlines would just include 8 modems and selecting which one to use, before making a call.

I would assume that the atapi library contains functions to select the audio input and output. If not there are plenty of c# libraries for recording audio, in which you could pass the stream through to the library.

Since your level of experience on this seems low I wasn't going to point you down this direction but as per @Saif Khan comment you can use Asterix.

Using Asterix

Step 1 - Get a server install Asterix on it. http://www.asterisk.org. It's open source.

Step 2 - Get supported hardware e.g. http://www.asterisk.org/hardware

Step 3 - Communicate to it with http://sourceforge.net/projects/asterisk-dotnet/ (open source c# to asterisk library.

This maybe overkill for you, I don't know. I suppose I shouldn't assume :)

share|improve this answer
However I feel I just helped someone who is in telemarketing :| – Adam Mar 16 '12 at 7:58
i need more re-search on this, but i want to use local phone lines so i need solutions about this. – Haider Ali Wajihi Mar 16 '12 at 8:23
What is more to research? Look at the functions in the atapi library. I am here to help but no one is going to delve much deeper into this unless they have experience with it already. Is there anything more you actually need to know? – Adam Mar 16 '12 at 8:51
1  
Buy a 56kbps modem e.g. amazon.com/s/… You can have USB or PCI (but if you wanted 8 I would say you need USB) – Adam Mar 16 '12 at 11:32
1  
If the app is installed in individal pcs you will need modems for each. There are modems with 2-4 ports. You will run into problems though as you won't know when a line is in use...remember each port on a modem is tied to a line. It's better of if you look into IP telephony with a PBX library 3CX and Asterisk...or just use a service. – Saif Khan Mar 19 '12 at 6:08
show 4 more comments

Since Google Voice is still free in United States and Canada. You can use this Google Voice API in C#.

http://sourceforge.net/projects/gvoicedotnet/

share|improve this answer

Doesnt want to sound like a noob, but did you try out Windows Dialer? You will need x number of 56k dialup voice modem depending on the no. of connections you have and you want to use.

It should work just fine. Test it out, and if it works well, you can get your app synced with your existing software to export the number to the dialer upon calling. (There is no such fucntions on the dialer app yet.)

share|improve this answer
thnx for asnwer, i will try your solution, then after i will call you for help. – Haider Ali Wajihi Mar 24 '12 at 8:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.