dialing

How to tell if Cocoa Touch device can make calls?

I'm writing an iPhone application that provides a button to call a phone number. I'm using code like the following to dial the number using a tel: URL in the usual way: NSURL* contactTelURL = [NSURL URLWithString:[NSString stringWithFormat:@"tel:%@", ...

Java program to auto dial a calling card phone number, problem with entering card number

I wrote a Java program to mimic the sounds to dial phone numbers, it works fine except when it comes to phone cards, it needs to dial a local number first (no problem, it successfully connects to a local number), then it needs to enter the card number, problem is the other end won't accept the generated sounds for the card numbers, it on...

International Assist on iPhone

Does anyone know if the International Assist feature on the iPhone works when dialing a number using the tel:// URL scheme from an application? For those unfamiliar, IA automatically prefixes the "+1" to US numbers when using the iPhone internationally. I know that this works when dialing from either the built-in Contacts or Phone apps, ...

Dealing with international phone numbers on iPhone

I have an app which uses contact data in the following ways: To send an SMS from the client To send an SMS from our server To upload a user's phone number to a database where others can match against it This works fine in the U.S. but internationalizing has a set of issues. These are my assumptions for making it work: #1 - Sending a...

How to send a dial string from the computer to asterisks to call a phone?

Hello all! I've been trying to figure out how to send a dial string to the asterisks server which should then handle a call to the phone with that extension. I know there are programs like X-Lite and such but I don't want to manually dial it. I want to pass a string instead. Is there any way? Any help or tip would be very much appreciat...

Dialing a number

I read some reference about how to make a call programmatically on the iPhone, so I put this in my code : UIApplication *app = [UIApplication sharedApplication]; NSString *urlString = [NSString stringWithFormat:@"tel:0225225657"]; NSURL *url = [NSURL URLWithString:urlString]; [app openURL:url]; is that correct? If yes, how can I know ...

Call a computer with another computer (Dial up Modem)

Hi. is it possible to call Computer A with Computer B in Same Country via theirs dial up modems? i mean use computer as telephone (with Dial Up modem) i no need transferring voice just : 1) Computer A Dialing Computer B (with the Phone number) 2) Computer B is see that computer A is calling. 3) Computer B Answer. please putting sample c...

DTMF # and * workaround in iOS4?

Hello all. I have read all the posts about DTMF and iPhone. I know that the characters "#" and "*" are disallowed by the SDK for security reasons. I have tried the stringByAddingPercentEscapesUsingEncoding: and the FURLCreateStringByAddingPercentEscapes workarounds. It is not possible, in my case, to generate the DTMF tones as one pos...

Manage two voice modems in C#

Hi I need information how to link two voice modems to each other. From modem 1 I dial and play a .wav file then I dial modem 2 and link them to allow them speak. What do I need to link two modems in C#, is it technically possible? Thanks. ...