My sms calls are working, although when trying to place a call..I receive no indication of an error..however no call is ever placed.
I'm simply using this..
public static void callNumber(String originNumber, String destinationNumber, String type){
try {
Voice voice = new Voice(userName, pass);
voice.call(originNumber, destinationNumber, type);
} catch (IOException e) {
System.out.println("IO error creating voice! - "+e.getLocalizedMessage());
System.out.println("Goodbye.");
System.exit(1);
e.printStackTrace();
}
Here's the response from Eclipse..
Any help is appreciated.