how to give a miss call using j2me?

Hi All, I know that we can use platformRequest() method for making a voice call in j2me . Just wanted to know whether this method is a blocking or nonblocking method?can i use use platformRequest and Threads together to give a miss call to a mobile numberThanks sagar
[295 byte] By [sagar123a] at [2007-11-27 4:38:42]
# 1

http://developers.sun.com/techtopics/mobility/midp/ttips/platformRequest/index.html

PlatformRequest is a non blocking method.

You can do a miss call by hang down the call on the called phone.

CALLER: make a platformRequest

CALLER: enter in sleep mode (Thread.sleep(xxxxxx))

CALLED: hang down the caller

CALLER: after sleep make a resumeRequest.

is the only way. the limit is that the called phone "must" close the call without answering

PeppeMEa at 2007-7-12 9:49:10 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 2
ThanksBut plz can u elaborate ur answer can u provide with the snipplet of code? soory but what is "hang down" does it mean not accept a callThankssagar
sagar123a at 2007-7-12 9:49:10 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 3

Sorry for my bad English!

I try to explain..

For hang down I want to say

disconnect a call without answering (without any billing).

refuse the call by the called.

Is the only way to make a miss call because when you make a platform request in j2me delegate the system to make call then the call is out of j2me code control

PeppeMEa at 2007-7-12 9:49:10 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 4
If platformRequest method is for making a call programmatically that is not under the control of j2me code .I want to know is there any method to end a call programatically
sagar123a at 2007-7-12 9:49:10 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 5
There isn't
PeppeMEa at 2007-7-12 9:49:10 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 6
Hi All,i have heard about JSR 253 Mobile Telephony Api (MTA) so just wanted to know is it possible to use this api? for making a call and ending a call in j2methanks Sagar
sagar123a at 2007-7-12 9:49:10 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 7
Have you search how many phone implement this jsr?!I search one month ago and I didn't find it.
PeppeMEa at 2007-7-12 9:49:10 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 8
ok does any one know where can i download this JSR 253 documents and packages? and does any mobile at present support this jsr?plz replyThanks Sagar
sagar123a at 2007-7-12 9:49:10 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 9

Documentation is here:

http://jcp.org/en/jsr/detail?id=253

Package:

You can't download packages because the implementation must be present in the phone when you buy it. You can't install a new jsr in the phone(is possible only if a vendor distribuite a new firmware version with that jsr implementation).

Phone that support jsr 253:

I don't find.

PeppeMEa at 2007-7-12 9:49:10 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 10
Thanks a PeppeME for all the help u provided finally i think i cant give a miss call using j2meThanksSagar
sagar123a at 2007-7-12 9:49:10 > top of Java-index,Java Mobility Forums,Java ME Technologies...