Any Telephony API available in J2ME ?????

hi,
anybody tell me that any telephony api available in j2me???, b'cz i want to block incomings calls using j2me...........

yes jsr_253 is for this task. But jsr_253 is under developement or released?

Similar Messages

  • Adding 2 byte arrays (6 bytes each ) -any specific API available

    hi friends
    I m fixed up with a problem .
    i want to add to arrays of six bytes each .
    how can i go for this .
    is there any specific API available for the same.
    current method i m using is an function which add first bytes of 2 arrays and then check out if the added value is more then FF its incerments the previous bytes and then start adding the second bytes .
    but its a very time consuming way .
    is there any specific API available ...... to solve out this problem in a much easier way

    i want to add to arrays of six bytes each .Looks like you want to add two 48bit numbers, right?
    how can i go for this .
    is there any specific API available for the same.No. only 8bit and 16bit number operations are supported (and theoretical 32bit operations).
    current method i m using is an function which add
    first bytes of 2 arrays and then check out if the
    added value is more then FF its incerments the
    previous bytes and then start adding the second
    bytes .Sounds like the paper & pencil addition method.
    but its a very time consuming way.That is a common problem when building "large number arithmetic" functions by using 8bit operations.
    From my point of view the only possibility for speeding up your algorithm is using nytes instead of shorts as usually the JavaCard processors are 8bit processors and therefore short/16bit operations are already decomposed into several 8bit operations. The only problem can be that java does not have a carry bit or an number overflow error for detecting if a number gets greater than 0xFF.
    Jan

  • Is there any java API available to make call to 11g Composite Service?

    Hi All,
    How can I make a call to 11g Composite from java? Is there any java client API available for this?
    Thanks,
    Vidya

    Sure there is a way.
    Here is a documentation link:
    Link: [http://download.oracle.com/docs/cd/E15523_01/integration.1111/e10224/invocapi.htm#CHDBBBBC]
    Adam

  • Is there any java api available to get the process identifier ?

    Hai,
    I am in need to get the process identifier of a running process.
    Is there any API available or any shell script which can be used in exec command
    to get it.
    Thanks in Advance.
    Kavitha M.

    Hint: Don't use the exec command! This would spawn off a new shell with a different PID. You might want to look at JNI (Java Native Interface) to attach a piece of C code to your Java application that can find out the PID.

  • Any Java API available for character recognition.. Please help

    Hi,
    I am wondering if there are any Java API for identifying the character encoding of a text content. I came across NGramJ but not enough documentation to integrate with my application. Any help would be appreciated.
    Thanks.

    I used this but the CharsetToolKit identifies only among UTF-8, UTF-16LE and UTF-16 not any other encodings like TIS-620 etc. I am new to this as well, so not sure whether I am doing it right. Please advise.
    Also, if any samples of chardet would be appreciated.
    One thing not sure, is when I send a message has Thai characters from Hotmail having my browser setting to Thai encoding(TIS-620) but my Hotmail account language is English and sent to one of my exchange accounts. In the outlook, the message looks gibbrish.
    So I need the charset encoding detector to let me know what type of encoding is done on the content (as if you choose English as the language option, the Hotmail server doesn't have charset parameter in the content-type header) so that I can decode and re-encode to UTF-8.
    Any immediate response would be appreciated.

  • Is any Public API available to create the rpd file programatically

    Hi:
    In general is there any public API's that can be used to create the rpd file programatically?
    I know that there is a discoverer migration tool to convert to rpd file is present in the latest version. But how to do it for the hyperion reports?
    Searching for any API's that may be present to create the rpd file programatically.
    Thanks & Regards
    Sridhar D

    You can use UDML to make changes to the RPD. However it is not supported by Oracle so you will be by yourself in anything goes wrong. You can also easily see the UDML code if you copy any objects from Administration tool into Notepad. This post will teach you the basics: http://oraclebizint.wordpress.com/2008/04/04/oracle-bi-ee-101332-udml-to-automate-repository-updates-migration-of-repositories-from-development-to-testproduction-environment/

  • Any gpg/pgp java api available

    Is there any java api available for GPG/PGP encryption without using the command line ?

    Thanks for the immediate response , Actually I need
    an api which doesn't use the command line.As I said - www.bouncycastle.org

  • Is there any String format class available in J2ME?

    Hello,
    I am looking for a Formating class which should format a string. For example ( This is Java SE code):
    int num = 999;
                String str = " is my lucky number.";
                String s = String.Format("The Number : %d %s", num, str);I could not find any formatter class nor any direct api from String/StringBuffer class to format a string.
    Any suggestion on this is highly appreciated.
    Thank You.
    Regards,
    DK

    sojourner_jdk wrote:
    Hi DarrylBurke,
    You are right. Its not "Format". String has "format" function ..
    String s = String.format("The Number : %d %s", num, str);Is there such class/api in J2ME?
    Thanks,
    Regards,
    -DKIn J2ME MIDP, [String has no "format" function|http://java.sun.com/javame/reference/apis/jsr118/java/lang/String.html|javadoc].

  • Is there any API available to read drm files in ios devices?

    Hi,
    I am ios developer and trying to read DRM files using my app.
    I want to know is there any API available for the same.
    Thanks in Advance.

    Hi Prathap,
    No, there is no Java API specific for RDF functionality available. However, Java client applications can use JDBC to access the RDF store. A partially relevant post is at How do you query Oracle RDF database using Java program? . The JDBC documentation will have detailed documentation on using JDBC.
    Code snippets for one way of accessing SDO_RDF_MATCH through Java is below:
    <..........>
    sbStmt.append("select * from TABLE( ")
    .append(" SDO_RDF_MATCH('(?S ?P ?O)',")
    .append(" SDO_RDF_Models('")
    .append( <model_name> )
    .append("'),")
    .append("null,null,null))")
    .append(" where rownum <= ")
    .append(iNumRows)
    ResultSet rs = stmt.executeQuery(sbStmt.toString());
    while (rs.next()) {
    System.out.print("\n");
    System.out.print(rs.getString("S"));
    System.out.print(" (");
    System.out.print(rs.getString("S$RDFVTYP"));
    System.out.print(") ");
    System.out.print(", ");
    System.out.print(rs.getString("P"));
    System.out.print(" (");
    System.out.print(rs.getString("P$RDFVTYP"));
    System.out.print(") ");
    System.out.print(", ");
    System.out.print(rs.getString("O"));
    System.out.print(" (");
    System.out.print(rs.getString("O$RDFVTYP"));
    System.out.print(") ");
    <............>
    <...... handling CLOB values that are returned ....>
    // read CLOB if applicable
    Reader reader = null;
    try {
    CLOB clob = ((OracleResultSet) rs).getCLOB("O$RDFCLOB");
    if (clob == null) {
    System.out.print("not a long literal ");
    else {
    reader = clob.getCharacterStream();
    char[] buffer = new char[1024];
    // reading 1K at a time (just a demo)
    int iLength = reader.read(buffer);
    for (int i = 0; i < iLength; i++) {
    System.out.print(buffer);
    System.out.print(" ...");
    finally {
    if (reader != null) reader.close();
    <..........>

  • Is there any "Tesseract OCR API" available for "IOS SDK 7.0" ??

    I want to make an application in IOS SDK 7.0 with Xcode 5 that required "Tesseract OCR API". So, Is there any "Tesseract OCR API" available for "IOS SDK 7.0" ? if any, please post the download link.
    Thanks

    I went on with the instructions and it worked properly with whitebackground image with black colored texts and it provide garbage value results with colored images. However when I try to run it on XCode 5.1 it shows "Caanot initialize an object of type 'Tesseract *' with rvalue 'BOOL' in the  "
    (id)initWithDataPath:(NSString *)dataPath
                  language:(NSString *)language
             ocrEngineMode:(NSString *)mode
           configFilenames:(NSArray*)configFilenames
                 variables:(NSDictionary*)variables
    setOnlyNonDebugParams:(BOOL)setOnlyNonDebugParams" method.
    And when I try to modify it then it display many linker errors.

  • Is there any Adobe Presenter 8 sdk / api available?

    Is there any Adobe Presenter 8 sdk / api available?
    I wasn't able to find any think on Adobe homepage.

    Thank you for the reply.
    I need to interact with the content when it is "played/executed" in Adobe Connect.
    I need to know which slide is currently shown, total number of slides and end of presentation information,
    such that I can use ExternalInterface to do some stuff when terminating the presentation.

  • IsJRockit Memory leak detector API available ?

    I would like to write up a JAVA client to gather heap information, things like number of instances and memory size of given object(s). These info can be displayed by memory leak detector, so there has to be an interface. my question is that is this API available for me to use? what kind of license if any I need to purchase if I intend to use my client in production?
    thanks in advance.

    Yes, JVMTI is a native interface and requires a non-java library. It's probably not a good idea to try to monitor a Java application by running more Java code in the same JVM because of the interference you create.
    Regards,
    /Staffan

  • How to call an API available in C++ dll?

    Can we make a call to an API available in C++ dll(COM or non-COM)?
    If so, can you point me to a sample?
    Thanks in advance?

    Java Native Interface (JNI) is the most complex solution, you have to make a wrapper as a library in C/C++.
    JNA (Java Native Acess) is an extension of JNI which consist of rewritting in java the native functions in the lib.
    In any cases the big workaround is the linking at java side, two solutions:
    Integrate your natives libs correctly in a jnlp file and jar (see runtime jnlp as an exemple)
    Extract manaualy at runtime the content of the lib in the root path.
    In conclusion, for java/javaFX & C/C++, JNA and dependency walker are your friends.
    Ask me if you need more details.
    NB: be carrefull with 32 / 64 bit

  • Is there any Public API that calls CSP_SHIP_TO_ADDRESS_PVT.ship_to_address_handler()

    Does any body know if there is any public API that calls this CSP_SHIP_TO_ADDRESS_PVT.ship_to_address_handler()?? I have a requirement to create a Resource Address real time for which i am looking for any public WSDL available in Integrated SOA Gateway for this package that i can use.
    Any help is appreciated.
    Thanks,
    Harika.

        Hello jmcamaross, Congrats on your iPhone 6 Plus Pre-Order! We're all very excited about the new phone so I know the importance of ensuring the address is correct. Options for changing the shipping address would be to cancel your original pre-order and place a new order. When this is done, your shipping date would change to a later date as you would lose your current "place in line". Please let us know if this is a good option for you.
    TanishaS1_VZW
    Follow us on Twitter @VZWSupport.

  • Any Java API - access for Form Manager forms

    Hi All,
    I have designed the forms using Adobe designer. Then I have deployed the forms in Form Server.
    I want open/view that forms in separate jsp/java application instead using Form Manager.
    Any Java API is available for viewing forms?
    Please help me.
    Thanks,
    Sara

    Hi Howard,
    Thanks for your reply. As per developer_guide, I have creatd one jsp and tested in jboss application. I have faced one problem.
    Please help me....
    my jsp code:
    String sFormQuery = "LeaveRequestForm.xdp";
    String sFormPreference = "MSDHTML";
    String sContentRootURI = "http://localhost:8080/LeaveRequest/forms";
    String sTargetURL = "http://localhost:8080/LeaveRequest/LeaveRequestForm";
    String sApplicationWebRoot = "http://localhost:8080/LeaveRequest";
    try
    EJBClient formServer = new EJBClient();
    Hashtable props = new Hashtable();
    props.put("INITIAL_CONTEXT_FACTORY","org.jnp.interfaces.NamingContextFactory");
    props.put("URL_PKG_PREFIXES","org.jboss.naming");
    props.put("PROVIDER_URL", "localhost:8080");
    InitialContext initialContext = new InitialContext(props);
    formServer.setInitialContext(initialContext);
    com.adobe.formServer.interfaces.IOutputContext myOutputContext = (com.adobe.formServer.interfaces.IOutputContext)formServer.renderForm(sFormQuery,sFormPre ference, null, "CacheEnabled=false",
    null, sApplicationWebRoot, sTargetURL, sContentRootURI, null );
    ServletOutputStream oOutput = response.getOutputStream();
    response.setContentType(myOutputContext.getContentType());
    byte[] cContent = myOutputContext.getOutputContent();
    oOutput.write(cContent);
    catch(Exception e)
    out.println(e);
    Error Message:
    com.adobe.formServer.interfaces.RenderFormException: java.lang.ClassCastException

Maybe you are looking for

  • What was going on in db at a given time ??

    Hi All, I am on 11.2 on Linux. I want to find out (ideally) which SQLs were running on my database between 21:00 and 21:15 last night? How can I do that? AWR has 1 hour snapshot interval, can it still generate report for 15 minutes interval? What els

  • IPod touch 4th Gen is recognized as digital camera, not in iTunes

    I'm using a Windows XP computer with the newest version of iTunes and my iPod touch 4 won't pop up in iTunes, it's a digital camera according to my pc. I have tried really EVERYTHING: update iTunes, downgrade iTunes, reinstall iTunes and all other ap

  • HELP  Regarding Problem Found during transportation

    Hi Experts I was transported my request from DEV  to PROD When i am Importing my Objects in Producton server System is throwing this Error. --Start of the after-import method for object type R3TR UPDR (Activation Mode) Info object VV00B is not availa

  • USB keyboard not working on new Mac Pro with Mavericks

    I just bought the new Mac Pro and my apple USB keyboard won't work. I have a very old apple USB keyboard that is working but I want to use my newer one. The newer keyboard is a full one also, including the number pad. Thanks

  • When downloading os x mountain lion unknown error occurred

    I have purchased OS X Mountain Lion yeterday through App store. But I am receiving unknown error{no error code appeared} scree and it stop downloading the os. The specific error received by me after completing download up to 2.99 / 3.05 gb. Omkar