Hello all,
is it possible to invoke a voice call with the method mentioned, without the user needing to confirm the phone actually dialling? Could this be arranged via signing perhaps? Or specifiing this in the url?
any help appreciated,
Santos
Hello all,
is it possible to invoke a voice call with the method mentioned, without the user needing to confirm the phone actually dialling? Could this be arranged via signing perhaps? Or specifiing this in the url?
any help appreciated,
Santos
Hi Santos,
have u tried this:
private void call(String number) {
try {
platformRequest("tel:" + number);
} catch (ConnectionNotFoundException ex) {
// TODO: Exception handling
}
}
Regards,
Harsha
"without the user needing to confirm the phone actually dialling" or the silent calling from the App is not possible in J2me, even after getting your built signed by any 3rd party certifying agency like verisign etc.
One workaround would be fire a key programatically using form.keypressed(keyCode) just when you need to make a call. And handle the key event by calling the platform request.
Regards,
Harsha