call phone with j2me

Login to reply to this topic.
Wed, 2005-06-08 08:20
Joined: 2005-06-08
Forum posts: 1
Hello for all,

I am newbie in J2ME and I am a one problem.
My problem is that I have make an aplicacion that it call a mobile Phone. This aplicacion is in J2ME.
You can say me that I need for to make this aplicacion ?
You help me to find any example?

Thank you very much

Fran

Wed, 2005-06-08 20:35
Joined: 2005-01-22
Forum posts: 60
Re: call phone with j2me
i suspect you need to use JTAPI, Java Telephony, which phone you want to use? i don't know any phone's which actually support JTAPI..

algis

Thu, 2005-06-09 06:42
Joined: 2005-01-31
Forum posts: 122
Re: call phone with j2me
Yeah even I don't think that it's possible using J2ME........(but not sure on this)
JTAPI is not for mobiles either......it's targetted more on exchanges like PBX.........
You can use Java Phone API for this but it ain't free.

Regards
kurtrips
Tue, 2005-08-16 07:21
Joined: 2005-08-16
Forum posts: 5
Re: call phone with j2me
try this

class TelephoneCall extends MIDlet
{

   public void startApp(){
       try{
           platformRequest("tel:+966504812912");
       }catch(IOException e){
           e.printStackTrace();
       }
   }
}:

from
http://www.arabteam2000-forum.com/index.php?showtopic=63447
Thu, 2005-09-08 07:19
Joined: 2005-08-29
Forum posts: 30
Re: call phone with j2me
you can use JTAPI on system application like for call center call control system.
in J2ME call controll is the typical for java api and j2me api communication application.
  • Login to reply to this topic.