I am new to java card . I am running the Sample Example given and some.....

I am using the ACR 38 Smart card System
I am running the applet file of ACOS 3
in the First button
ACCOUNT :
what to enter in the Credit,Debit,Certify,Revoke text fields and while clicking those buttons in bottom ,it just focusing on the particular text field is this the case
CREATE FILES:
Why the drop down list of Select Reader is activating after clicking intialize button .How to create files

Hey Carolyn1951,
Thanks for the question. I understand you have a few apps that only display "Waiting". The following is a past discussion that dealt with a similar issue, the answer may help you as well:
App updates won't download on my...: Apple Support Communities
https://discussions.apple.com/thread/4111336
Try tapping the App, so that it changes to Paused instead of Waiting, then tap it again to resume the install.
Make sure you don't have any paused downloads in other apps either, like the App Store or iTunes Store.
If that doesn't do it, try resetting or restoring the iPhone.
via whatheck
Thanks,
Matt M.

Similar Messages

  • New on java Card

    HI all !
    I'm new on java card technology and would like to compil my first cardlet :)
    I'm getting problem while charging my cardlet into my chip, Eclipse does not generate the cap file.
    I'm using Eclipse 3.3.1 and JCop Tools 3.2.7.
    I created a Java card projet and a Java card Applet file and here is my code :
    package pck_calculator;
    import javacard.framework.APDU;
    import javacard.framework.Applet;
    import javacard.framework.ISO7816;
    import javacard.framework.ISOException;
    import javacard.framework.Util;
    public class Calculator extends Applet
         private static final byte[] CALC = { //
         (byte) 0x63, // c
         (byte) 0x61, // a
         (byte) 0x6c, // l
         (byte) 0x63, // c
         (byte) 0x75, // u
         (byte) 0x6c, // l
         (byte) 0x61, // a
         (byte) 0x74, // t
         (byte) 0x72, // r
         (byte) 0x69, // i
         (byte) 0x63, // c
         (byte) 0x65  // e
         }; // Tableau de bytes (code ASCII) qui va être renvoyé si on envoit l'INS 0x00
         //methode d'installation de l'applet dans la carte
         public static void install(byte[] bArray, short bOffset, byte bLength)
              // Enregistrement de l'applet (méthode register()) auprès du JCRE
              // Lors de la création de l'applet (new)
              new Calculator().register(bArray, (short) (bOffset + 1), bArray[bOffset]);
         public void process(APDU apdu)
              //pour verifier que cette applet n'est pas entrain d'être sélectionné
              if (selectingApplet())
                   return;
              //réception de la commande APDU
              byte[] buf = apdu.getBuffer();
              switch (buf[ISO7816.OFFSET_INS])
                   case (byte) 0x00 :
                        Util.arrayCopy(CALC, (short) 0, buf, (short) 0, (short) CALC.length);
                        apdu.setOutgoingAndSend((short) 0, (short) CALC.length);
                        return;
                        // Ici, on copie le tableau (défini en haut) dans le buffer et on l'envoi sur la sortie
                        // En précisant la taille du champ de données
                   case (byte) 0x01 :
                        buf[0] = (byte) (buf[ISO7816.OFFSET_P1] + buf[ISO7816.OFFSET_P2]);
                        // Ici, on additionne P1 et P2
                        break;
                   case (byte) 0x02 :
                        //Soustraction de P1 et P2
                        buf[0] = (byte) (buf[ISO7816.OFFSET_P1] - buf[ISO7816.OFFSET_P2]);
                        break;
                   case (byte) 0x03 :
                        //Multiplication
                        buf[0] = (byte) (buf[ISO7816.OFFSET_P1] * buf[ISO7816.OFFSET_P2]);
                        break;
                   case (byte) 0x04 :
                        //Division
                        if (buf[ISO7816.OFFSET_P2] == 0)
                             //Test de la division par 0
                             ISOException.throwIt(ISO7816.SW_INCORRECT_P1P2);
                             //Envoie de l'exception "mauvais paramètres"
                        buf[0] = (byte) (buf[ISO7816.OFFSET_P1] / buf[ISO7816.OFFSET_P2]);
                        break;
                   case (byte) 0x05 :
                        //Somme du champ de données de la commande APDU
                        short n = (short) (ISO7816.OFFSET_CDATA + apdu.setIncomingAndReceive());
                        byte sum = 0;
                        while (n-- > ISO7816.OFFSET_CDATA)
                             sum += buf[n];
                        buf[0] = sum;
                        break;
                   default :
                        //Envoie de l'exception "mauvais champ INS"
                        ISOException.throwIt(ISO7816.SW_INS_NOT_SUPPORTED);
              //Pour tous les cas la réponse APDU a des données de 1 octet
              //Sauf pour le cas INS = 00
              apdu.setOutgoingAndSend((short) 0, (short) 1);
    }It's a simple calculator :)
    To compile, I use right click on the projet => debug as... => Open debug dialog
    and I set the correct AID of the package and class in the "Package upload".
    Then I start debug and here is the problem :
    The .cap is never created (cm> upload -d -b 250 path/file.cap)
    The comunication with the card is ok because it answers some request like /card-info.
    Do you have any idea about a step I forget or anything else ??
    Thanks a lot :)

    At first, I tried java compiler 5.0 as the over topic and could get a cap file but I think it is not usable.
    I changed to your configuration as compiler 1.3 and class compatibility 1.2 and problem is still the same.
    cm>  /term "tcl:10"
    --Opening terminal
    /card -a a000000003000000 -c com.ibm.jc.CardManagerresetCard with timeout: 0 (ms)
    --Waiting for card...
    ATS=0D 77 80 81 02 00 73 C8 40 13 00 90 00             .w....s.@....
    ATS: FSC=128, DS=1/DR=1 (symmetrical), FWI=8 (FWT=0.077 sec), SFGI=1, NAD=1/CID=0, Hist=0073C84013009000
    => 00 A4 04 00 08 A0 00 00 00 03 00 00 00 00          ..............
    (19856 usec)
    <= 6F 19 84 08 A0 00 00 00 03 00 00 00 A5 0D 9F 6E    o..............n
        06 40 51 42 04 22 00 9F 65 01 FF 90 00             .@QB."..e....
    Status: No Error
    cm>  set-key 255/1/DES-ECB/404142434445464748494a4b4c4d4e4f 255/2/DES-ECB/404142434445464748494a4b4c4d4e4f 255/3/DES-ECB/404142434445464748494a4b4c4d4e4f
    cm>  init-update 255
    => 80 50 00 00 08 CE F3 CB 4A D0 3D 1C 37 00          .P......J.=.7.
    (69487 usec)
    <= 00 00 43 52 00 32 72 90 68 81 FF 02 00 45 46 93    ..CR.2r.h....EF.
        AD C1 8D 1D 50 D5 2C F4 14 89 82 3E 90 00          ....P.,....>..
    Status: No Error
    cm>  ext-auth plain
    => 84 82 00 00 10 E5 7B 57 1A 9D EA 91 DF AD 6E 18    ......{W......n.
        A3 B7 B8 64 73                                     ...ds
    (66179 usec)
    <= 90 00                                              ..
    Status: No Error
    cm>  delete -r 012345678900
    => 80 E4 00 80 08 4F 06 01 23 45 67 89 00 00          .....O..#Eg...
    (22288 usec)
    <= 6A 88                                              j.
    Status: Reference data not found
    jcshell: Error code: 6a88 (Reference data not found)
    jcshell: Wrong response APDU: 6A88
    Ignoring expected error
    cm>  upload -d -b 250 "workspace\calc\bin\pck_calculator\javacard\pck_calculator.cap"
    => 80 E6 02 00 13 06 01 23 45 67 89 00 08 A0 00 00    .......#Eg......
        00 03 00 00 00 00 00 00 00                         .........
    (25722 usec)
    <= 00 90 00                                           ...
    Status: No Error
    => 80 E8 00 00 FA C4 82 01 A1 01 00 1F DE CA FF ED    ................
        02 02 04 00 01 06 01 23 45 67 89 00 0E 70 63 6B    .......#Eg...pck
        5F 63 61 6C 63 75 6C 61 74 6F 72 02 00 21 00 1F    _calculator..!..
        00 21 00 0B 00 0B 00 2E 00 0E 00 C8 00 19 00 13    .!..............
        00 00 00 67 02 69 00 02 00 01 00 0C 01 01 00 04    ...g.i..........
        00 0B 01 03 01 07 A0 00 00 00 62 01 01 03 00 0B    ..........b.....
        01 07 01 23 45 67 89 00 01 00 08 06 00 0E 00 00    ...#Eg..........
        00 80 03 00 FF 00 07 01 00 00 00 1C 07 00 C8 00    ................
        01 10 18 8C 00 09 7A 05 30 8F 00 08 3D 8C 00 0A    ......z.0...=...
        18 1D 04 41 18 1D 25 8B 00 07 7A 05 23 18 8B 00    ...A..%...z.#...
        05 60 03 7A 19 8B 00 01 2D 1A 04 25 73 00 8E 00    .`.z....-..%s...
        00 00 05 00 13 00 2B 00 38 00 45 00 52 00 6A 7B    ......+.8.E.R.j{
        00 03 03 1A 03 7B 00 03 92 8D 00 00 3B 19 03 7B    .....{......;..{
        00 03 92 8B 00 02 7A 1A 03 1A 05 25 1A 06 25 41    ......z....%..%A
        5B 38 70 5E 1A 03 1A 05 25 1A 06 25 43 5B 38 70    [8p^....%..%C[8p
        51 1A 03 1A 05 25 1A 06 25 45 5B 38 70 44 1A 00    Q....%..%E[8pD..
    (1746 msec)
    <= 6A 80                                              j.
    Status: Wrong data
    jcshell: Error code: 6a80 (Wrong data)
    jcshell: Wrong response APDU: 6A80
    Unexpected error; aborting execution
    {code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • I just changed my residence to the US and now I cant register my new US credit card on itunes cause the state list doesnt match to the US states, what should I do?

    I just changed my residence to the US and now I cant register my new US credit card on itunes cause the state list doesnt match to the US states, what should I do?

    Your credit card info, billing address must be the same country as the iTunes store country you registering.
    For example, you can’t have a credit card from a U.S. bank with  a U.S. billing address registered in the iTunes store for China.
    I tried to change my payment information too, but it happened the same, I can change the information but when I get to the state part, it only shows the other country states
    Remove all payment info and save it.
    Then change the iTunes store country to U.S., add a U.S. credit card with a U.S. billing address.
    As previously suggested, if this does not work, contact iTunes store support.
    -> http://www.apple.com/support/itunes/contact/

  • Can I buy a new Micro SIM card in France for my Verizon iPhone 5 and use it while in Paris?  Same for London?

    I am travelling to Paris for a week and then London for a week. Can I purchase a new Micro SIM card for my Verizon iPhone 5 in Paris and London and then use my phone with some sort of prepaid plan while in France and England? 

    I just spoke with Tech Support at Verizon and they said Yes, I can use my iPhone 5 in France and England. No unlocking is needed because the phones come pre-unlocked and ready to go. All I need to do is buy a new Micro SIM card in France/England and pick the pre-paid plan of my choosing and the phone will be good to go. Of course, I need to not lose my original Micro SIM card otherwise I would have quite the headache getting a new one once back in the US. 

  • TS4498 Is it possible to support Logic in 32-bit plug-ins in future updates? How about to make a bridge built in Logic. I would have long ago moved on to a new version of Logic, but I have the equipment (UAD-1 and Liquid Mix), which are not run on the Loq

    Is it possible to support Logic in 32-bit plug-ins in future updates? How about to make a bridge built in Logic. I would have long ago moved on to a new version of Logic, but I have the equipment (UAD-1 and Liquid Mix), which are not run on the Loqic X. So I would suggest to make a bridge in Logic X. As it was in version 9 of the Logic.

    In addition.. Focusrite have stated they will not be releasing a 64bit version of Liquid Mix as they consider it outdated software these days.... even though at one point a limited release beta version had a 64bit AU version included but it was so unstable it was rapidly dropped...
    However the 32bit to 64bit bridge plugin 32 Lives,  states it will handle and 'convert' the Stereo version of Liquid Mix to 64bit but not the Mono version... within LPX
    http://www.soundradix.com/products/32-lives/compatibility
    Finally, like others here, I would be extremely surprised if Apple added 32bit AU support back into LPX..  That '32bit tech' is long dead and gone....in terms of modern DAWs... as it is in other DAWs such as the recent PT versions...

  • Can any one suggest me how to tactile this new technology JAVA CARD

    HI
    I AM C.NAVEEN . I KNOW BASICS OF JAVA. AND STUDIED DOCUMENTATION OF JAVA CARD , AND UNDERSTAND THE CONCEPTS REGARDING THAT. BUT HOW TO CHOOSE A CARD AND A CARD READER .
    AS I AM NEW TO THIS TECHNOLOGY . HOW CAN I MOULD MY SELF TO BE A PROGRAMMER FOR JAVA CARDS .....................
    Thanks
    Naveen.C

    Because the Windows 8 is a client operating system.  To make BI4.1 Server work on windows, you'll have to make sure you install it on versions supported as per the PAM below:
    SAP BusinessObjects BI 4.1 Supported Platforms (PAM)
    Please refer page #3 for server operating system, where you will be installing the server software and for all the client tools - refer page #4.
    Make sure you install the server and the client tools as per the supported OS types and versions respectively.

  • New to Java card

    I want to develop an aplication with java cads, for this porpouse I've chosen the JCOP41, but I have some questions:
    1. Where I can find the JCOP41 appart from http://www.usasmartcard.com (I preffer Europe)
    2. While I'm waiting to JCOP tools can I work with eclipse JCDE plug in. I mean If I can write in the card and simulate with this insted of JCOP tools
    3. If I want to use a token for digital signature wich one do you recomend me?
    Thanks and regards

    Amirali10 wrote:
    Thank you for answer my friend,but I have a studies project about javaCard 3 connected edition,so I hope you could give me a practical example of how I can deploy them in smart cards,so what mean I use to deploy it,should I get smartcard writer or reader,or what should I get and I do?Hi,
    You will not have much luck finding commercially available Java Card 3 cards yet. If you want to be able to deploy to a real card rather than a simulator in the near future you will want to look at Java Card 2.2.1 or 2.2.2. To deploy to a card you will need a PC/SC card reader and software that can authenticate to the card (what this software needs to do is also outlined in the GlobalPlatform card specification). This will give you the ability to write to the card as well. Search the forum for recent posts on card reader vendors.
    Cheers,
    Shane

  • Request information new on java card

    hi,
    i 'd like to developp a smart card , after searchin articles and read them i understand that :
    to developp a java card i should have a smart card ( micro processor) a reader then the computer(with the developpement kits ....).....then u can start codin the applet ...
    let's say that the applet is installed on the java card , and want to give it to a customer ,
    questions :
    where he should insert this card (into a terminal i guess and how this terminal will send the APDU command ?? )
    are the terminals a computers or a special card reader ?? where can i buy one ??
    i heared that it's possible to isntall programms the terminal ??
    thxs for replying
    regards yacine;

    where he should insert this card (into a terminal i guess and how this terminal will send the APDU command ?? )
    If you are doing a desktop solution, the reader will be installed on the desktop. To send APDU commands, use middleware like PCSC.
    are the terminals a computers or a special card reader ?? where can i buy one ?? Just google smart card readers for vendors. Just focus on ISO7816 compliant readers. Commonly used ones are from SCM Micro.
    i heared that it's possible to isntall programms the terminal ?? Some readers like SCM Micro are field upgradeable.

  • I have MTS files imported from a Canon HD cam. They import into I movie and I see them in the Finder folders and they preview fine. I have a new project and some of the clips are freezing and some audio is now gone? Do i need a file converter and convert

    I have MTS video files that import from a Canon Vixia HF S20 HD camera. I imported into I Movie. They converted into MOV files and I see them in the movies folder in finder. They view fine and run through the events folder in Finder. In I Movie, I created a new project and used a "Theme". The project worked fine at first but then some clips started to freeze and some lost audio. The effected clips are the same in the project library and in the event library, meaning they are froze in both places. As I said when i view through finder the MOV files preview and work fine.  Is this inherent to MTS files using in I movie. SHould i consider using a file converter to convert to MOV files prior to importing into I movie.
    I found on Apple support site info that states the MTS files can only be imported through the camera. I am developing my back up procedures and now I am faced with backing up in the original MTS files but not being able to reload if necessary into I movie. Any suggestions?

    I'd like to add that after I import these clips without thumbnails, iMovie does give me an error and say that they could not be imported. No explanation as to why, though. Again, they play fine on my camera.

  • I activated an iTunes gift card, my iPod showed the amount available ($15) and after downloading 2 songs all I had left was $.04.  Any ideas on what happened to my funds or how I can find out where the rest of the money went?

    I activated an iTunes gift card, my iPod showed the amount available ($15) then after downloading 2 songs my balance was $.04.  Any ideas on what happened to the rest of my funds or how I can find out where the rest of my money went?

    - Have youwent to yur iTunes account looked at your puchase history for purchases thant y might have forgotton?
    - Maybe you had an unpaid balance before redeeming the card.
    - Contact iTunes
    Apple - Support - iTunes - Contact Us

  • Java.lang.NoSuchMethodError while running the Application on MI client

    Hi Experts
    During development I run my application through NWDS and worked perfect. But when I  run my application only through MI client. It through error on my programmed methods: java.lang.NoSuchMethodError:
    Any advice is highly appreciated!
    Michal

    Thanks for your reply!
    I use MI 2.5 SP20 and that trace is:
    Internal Servlet Error:
    java.lang.NoSuchMethodError: com.sap.myApp.bean.TableViewBean.setAll(Ljava/lang/String;)V
    Thanks for any advice

  • "Add New Tab" button does not exist in the Window -Customize Toolbar, and not on my Navigator toolbar. Where can I find one to put on my Navigator toolbar, please?

    I see "Add New Window" but..."Add New Tab" button does not exist in the Window -Customize Toolbar any longer, and not on my Navigator toolbar. Where can I find one to put on my Navigator toolbar, please?
    Thanks

    It's the "+" on the Tab bar. You can move it to the Navigation Toolbar if you prefer. When you start Customize, the + moves to the far right end of the Tab bar. You can drag it where you want (see attached image).
    Any luck?

  • Change new cartridge black photo then i got the warning with yellow and magenta ink low

    According the first install of new cartrige in table below :-
    4 normal color were change on 2014-05-21, today after I change the new black photo then I have got the warning in front panel that yellow and magenta are low. what can I do for this problems.
    my email is [edited by Moderator]
    Thanks
      Ink Cartridge:
    Color Supply Zone(PX)            First Installation Date (Y-M-D)         End-of-Warranty Date (Y-M-D) Part Number
      Black                                      2014-05-21                                        2016-06-17                                   HP 564
      Yellow                                    2014-05-21                                        2016-06-17                                   HP 564
      Cyan                                       2014-05-21                                        2016-06-17                                   HP 564
      Magenta                                2014-05-21                                        2016-06-17                                   HP 564
      Photo Black                          2014-05-28                                        2016-06-24                                   HP 564

    Hi @prachayab ,
    Thank you for visiting the HP Support Forums. I'm sorry to inform you that your post has needed some editing to remove personal information such as the email address in your post. From our Rules of Participation:
    Protect privacy - yours and others'. Don't share anything about yourself that you would not want to see on a road-side billboard. Don't post contact or other personal information-your own or anyone else's-or any content that you receive in one-to-one communications without the author's consent. For example, don’t post your computer’s serial # or contact information publicly, and do not allow someone you don’t know to remotely take control of your computer.
    If you need people to contact you directly, either ask them to send you a private message or subscribe to the thread so you will be notified when there are replies. You may also click on your name anywhere in the forum and you will be taken to your profile page, where you can find a list of threads you have participated in.
    Sharing personal email addresses, telephone numbers, and last names is not allowed for your safety. If you have any questions feel free to send me a private message in reply.
    Thank you
    George
    I work for HP

  • Firefox (Mozilla) browser stop working. I cannot download new version (Mozilla 16). I run the application. It tellsme the computer needs to shut down, It shuts

    My FireFox Browser stop working. I deleted old applications and tried unsuccesfully to open new versin (mozilla 16). I safe the application to desktop, run it, it tellsme the computer will turn off, it does, when the computer goes back on Mozilla is NO longer there. Then the cycle continues everytime I tried to download new application.

    Which security software (firewall, anti-virus) do you have?
    Some security software has virtualization features that may cause problems by protecting files in the Firefox program folder.
    Do a clean reinstall and delete the Firefox program folder before reinstalling a fresh copy of Firefox.
    *C:\Program Files\Mozilla Firefox\
    *http://kb.mozillazine.org/Installation_directory
    Download a fresh Firefox copy and save the file to the desktop.
    *Firefox 16.0.x: http://www.mozilla.org/en-US/firefox/all.html
    Uninstall your current Firefox version, if possible, to cleanup the Windows registry and settings in security software.
    *Do NOT remove personal data when you uninstall your current Firefox version, because all profile folders will be removed and you will also lose your personal data like bookmarks and passwords from profiles of other Firefox versions.
    Remove the Firefox program folder before installing that newly downloaded copy of the Firefox installer.
    *It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    *http://kb.mozillazine.org/Uninstalling_Firefox
    Your bookmarks and other profile data are stored in the Firefox Profile Folder and won't be affected by an uninstall and (re)install, but make sure that "remove personal data" is NOT selected when you uninstall Firefox.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/Profile_backup
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

  • How to save data in New Excel Sheet on each time run the VI?

    Hello everyone 
    I am doing my dissertation. In that i have to store the data of load cell in the excel sheet. I have done that.
    Here i have attach the vi , template in which want to save data named My , and output when complete the rn of vi named My Report.
    Now the problem is once i have run the vi , my report is generated but second time when i run the vi the new my report sheet is not generated. and the second problem is i am getting out put as 511, 0,  2.49.  
    I want the when ever i run the vi every time the new excel sheet should be generated and saved with date, time and my report tag. ex. My Report 20/11/13 12:00
    And i want the output 511,2.49,...dont want this 0.
    please hepl me out its urgent
    Attachments:
    COM TO EXCEL WITH EXCEL TOOLKIT.vi ‏44 KB
    MY.xlsx ‏12 KB
    My_Report 1.xlsx ‏12 KB

    You just need to change the settings. Whenever it will write to excel it will display the save as option.
    Then user will confirm the same
    In the excel dispose report.vi passsave change and close report boolean input as TRUE and see
    Kudos are always welcome if you got solution to some extent.
    I need my difficulties because they are necessary to enjoy my success.
    --Ranjeet

Maybe you are looking for