Upload Applet

Hi,
After I wrote my applet, compiled and converted it into .cap file with java card development kit, how can I upload it into the card?
Is there any simple tool, opensource, for doing this?
Thanks
@ggabey

If you have a GlobalPlatform compliant card you could use a variety of tools. One open source tool you will find in the muscle card project:
http://sourceforge.net/projects/globalplatform/

Similar Messages

  • File Upload applet not opening in Query Mode

    File Upload Applet is opening in Query Mode in Siebel 7.5, where as in Siebel 7.8 its not opening in Query Mode.
    Should anything be changed in CFG? or siebel restricted this?

    Hi,
    There is a property called "Auto Query Mode" in the applet. Check whether this has been set to "New Query" in 7.5. If so the applet will be opening in Query Mode automatically. If this property is blank, in 7.8, the applet will not be opening in Query mode. Check and let me know.
    Regards,
    Joseph

  • Multiple File Upload Applet

    I am attempting to code a JavaBean wrapped by an applet that will upload multiple files to a web server via the multipart/form-data mime-type.
    I have moved a number of files to the web server with limited success.
    I cannot move more than roughly 30Mbs of files in any configuration without causing a fatal exception.
    I am confident that it is a limitation of the client's VM and the memory allocated to the applet.
    I have seen several commercial grade applets that claim they can move any number of files even totalling 180Mbs.
    My applet is very simple. It opens a JFileChooser dialog box, allowing the user to select multiple files and communicates directly to a server side component that accepts multipart/form-data.
    I am navigating the protocol just fine. It seems to be a memory problem on the client side. Does anyone know how I can defeat this restriction and pass a reasonably high number of files (100-200) ranging from 50Mbs to 180+Mbs?
    Secondly, why does this happen: when I put my files onto the output stream, no files move accros the stream until I call .close(). How can I write the code to begin transferring bytes as soon as I call outputstream.write(xxx)?

    i am also developing multiple file upload applet and i transferred 1,4gb of data (2 files a 700MB) successfully.
    also, i just transferred a few hundred files with total size of 900mb to my localhost webserver (~5000kb/s)
    1) open file
    2) read a few kilobytes into buffer
    3) send them to the server
    4) flush the outputstream (!!)
    5) clear buffer and goto 2)
    6) if end-of-file, close the file and flush again.
    the outputstream is flushed every few kilobytes, so it will be sent over the socket to the server and not buffered until dawn.
    i don't know how the server-side is working, but i used apache/php script.
    you can try out my applet under
    http://www.haller-systemservice.net/jupload/

  • Upload Friendly (Multiple File Upload Applet)

    Title : Upload Friendly (Multiple File Upload Applet)
    Description : UploadFriendly is an easy to use Java Applet that will allow multiple file
    uploads on a web server in a web page. The control supports file filtering, limits and more.
    Samples available in the following languages: ASP, ASP.NET, PHP, Coldfusion and JSP
    Link: http://www.uploadfriendly.com/
    Type: Commercial (30 days Trial)

    Hi shiil,
    To move the documents between site collection, content organizer rules would be a recommended method, you can activate Content Organizer features to enable content organizer rules on the site, to root the document to another site collection.
    Also, for this issue, as Prasath suggested, you can check out the document in the ItemAdded event, then add ItemCheckedout event, in the ItemCheckedout event, delete the document. Or as content organizer rule does, you can create your own timer job to move
    the document.
    More information, Content Organizer Feature Overview for SharePoint Server 2010 Developers (ECM):
    http://msdn.microsoft.com/en-us/library/office/ee558288(v=office.14).aspx
    Thanks,
    Qiao Wei
    TechNet Community Support

  • Uploading applets to a JCOP card

    Hi everyone,
    I have a little problem. Is it possible to upload an applet to a JCOP card with JCSDK only? no JCOP framework... thanx for any help.
    BR
    erno

    sect0r1 wrote:
    Thanx for you answer and sorry for confusion with terms "downloading" and "uploading". I would like to download applets using only JavaCard SDK from Sun. Is this possible. I have the JCOP framework as well but I would like to learn this process completely independent from frameworks, IDEs etc. The problem with GPShell is that, it is not the part of JCSDK as I know. Thanks.
    BR
    ernoUnfortunately it is not possible to use only JCSDK, because there aren't any tools to connect to card acceptance devices: you can only run your applets in the emulators provided with the SDK. So, for real JCOP cards, you have two options left:
    - using JCOP Tools (if you have them, I don't because NXP does not make them available)
    - using GPShell
    Hope this helps
    Alberto

  • File upload applet without browsing

    hi all,
    i m a php developer, i need a java applet to be embedded in html, that contains a button (upload), on clicking that all text files from a predefined location, without browsing, in the clients computer could be uploaded to server.
    help me from the scratch.
    thankyou

    Applets are a PITA. Applets that deal with the local file system need to have 'full trust' and that is a complete PITA, especially with the Vista UAC problem that restricts even trusted applets to a particular set of sub-directories (in user.home, AFAIR).
    A better strategy might exist if you can..
    a) write to a ZIP archive from PHP? (which can reduce all the reports to being contained in a single file*).
    b) Invoke 'shell commands' from PHP, as you might from the command line interface, the Windows Command Prompt?
    If both those answers are 'yes', I would recommend dumping the applet for a JWS launched application that uses the JNLP API's [file service|http://pscode.org/jws/api.html#fs].
    Try especially the sandboxed version of the demo.
    Using webstart, this might all be achieved 'sandboxed'.
    It would work like this.
    The PHP script writes all the reports to a single zip archive with file extension '.reportarchive' instead of '.zip'.
    After the reports are prepared and stored, two shell commands are required.
    javaws -import -association -silent http://www.our.com/upload.jnlp
    ..and..
    javaws -open C:/the/path/the.reportarchive http://www.our.com/upload.jnlp
    The first installs the uploader application to the user cache, while the second tells webstart to open the uploader app. with the reportarchive file name as the runtime argument.
    Once the user has OK'd the access to the reportarchive, the rest (uploading it) can be done automatically (with a progress bar).
    * Note that if you cannot easily write a Zip using PHP (shrugs) that .reportarchive file type might instead be a .reportlist which simply contains the path/names of the other report files.
    If the user fails to select the 'always allow' option for the file list, they will be prompted for each file (until they do). The advantage of the archive is that the user is only ever asked once.
    And as an aside, how exactly is the PHP script invoked to run?
    Note that a good way to indicate interest in a solution is to add [Duke stars|http://wikis.sun.com/display/SunForums/Duke+Stars+Program+Overview] to match that interest.

  • File upload applet recommendations

    Greetings,
    We are building a large-scale extranet that will heavily
    involve user uploads of various files, including potentially large
    videos. In the past we've just used file fields and handled the
    stream with cffile and cfftp. However, we are thinking that we need
    a java applet for two reasons:
    1. to allow multiple files at once (this is not critical)
    2. to be able to check file size on the client (this would be
    extremely helpful), and stop the upload if it's too large.
    At launch, users will all be on Macs and Firefox--however, as
    things do this could always change; it is assured though that we
    will never be able to specify all-windows, so I assume that activex
    is "right out". As with any of our assumptions, please set us
    straight!
    Once any files are uploaded, we will need to database the
    file information (it will be placed into a kind of cms), so it's
    going to have to be more than "dump into a folder". Ideally the
    applet could "hand off" to a CF process that would do this; I
    suppose that we could also set up a kind of listener for the upload
    directory but this seems less then ideal. Again, ideas on how this
    might work would be welcome.
    Related to the process: we've used various image-manipulation
    server-side programs with CF, but don't know of any for video.
    Anything that might be able to manipulate video we'd love to hear
    about, even if it's some monster server/package.
    Thanks,
    Rick

    Hi,
    There is a property called "Auto Query Mode" in the applet. Check whether this has been set to "New Query" in 7.5. If so the applet will be opening in Query Mode automatically. If this property is blank, in 7.8, the applet will not be opening in Query mode. Check and let me know.
    Regards,
    Joseph

  • Searching for simple upload applet

    I hope this is the right forum for this query
    I need an "upload any size file" applet. Most of the commercial ones are way overblown in features that you can't turn off. All I need is the ability to upload a file of any size, browse for the file to upload, and pass parameters with each file.
    are there any simple applets like that available?
    thanks for you time and thoughts
    --- eric

    Ha ha.
    How about telling us what's supposed to accept the
    upload? Technically, simple HTML is sufficient. The
    other end of the line defines what you need.sorry for the new id, the forum lost my old one.
    well the code I've seen elsewhere dictated a server side solution for me. ;-)
    my expectation? since browsers fail to upload more than 90mb at a time (give or take), I expect that the file would be uploaded in chunks or slices. I expect to write a cgi program that would stich together those chunks based on cgi parameters uploaded with the file chunk.
    another alternative for the applet is to stream the file to a file transfer server server with authentication via server generated auth tokens. Or something...
    and no, ssh/ftp and the like are not acceptable for a varity of reasons unless I can write anon write only and can tell the server side app when the xfr is done.
    thanks

  • Help! ... file upload applet

    Hey
    I am searching the net for a couple of days now ... I need to find a solution for uploading files without the user browsing for them.
    I can't use the <input type="file"> so I turned to activex and applets...
    I would like to build an applet which throught javascript specify a path for it and then the applet will send the files one by one to the server.
    I tried to read the files as binary with the activex adodb.stream with no luck!
    I don't know what else to do ! ... please please help me!
    I am willing to try anything to solve this problem
    Thanks a lot!!

    You can do it with an outputstream and an inputstream....
    in the applet (put this in a thread):
    URL url = new URL("www.abc.com/yourservleturl");
    URLConnection urlConnection = url.openConnection();
    urlConnection.setDoOutput(true);
    urlConnection.connect();
    OutputStream out = urlConnection.getOutputStream()
    BufferedOutputStream bos = new BufferedOutputStream(out);
    File file = new File("your local file");
    InputStream in = new FileInputStream(file);
    BufferedInputStream bis = new BufferedInputStream(in);
    int i = 0;
    while((i = bis.read()) != -1) {
        bos.write(i);
    bos.flush();in the Servlet:
    BufferedInputStream bis = new BufferedInputStream(request.getInputStream());
    bis.read(); // here you get your file........ do whatever you want........

  • Problem uploading applet on nokia 6131

    Hi All,
    I am using NXP Jcop tools 3.2.7
    While trying to upload a simple empty applet on the Nokia 6131 I am having problem in the upload cmd,
    upload -b 250 "C:\Workspaces\JavaWorkspace\JCOP3.2.7\Test\bin\com\javacard\demo.cap"
    The entire JCOP Shell trace is below
    cm> /term "SCComm:1"
    --Opening terminal
    /card -a a000000003000000 -c com.ibm.jc.CardManagerresetCard with timeout: 0 (ms)
    --Waiting for card...
    ATR=3B 88 80 01 00 73 C8 40 13 00 90 00 71 ;[email protected]
    IOCTL().
    ATR: T=0, T=1, Hist=0073C84013009000
    => 00 A4 04 00 08 A0 00 00 00 03 00 00 00 00 ..............
    (47447 usec)
    <= 6F 10 84 08 A0 00 00 00 03 00 00 00 A5 04 9F 65 o..............e
    01 FF 90 00 ....
    Status: No Error
    cm> set-key 42/1/DES-ECB/404142434445464748494a4b4c4d4e4f 42/2/DES-ECB/404142434445464748494a4b4c4d4e4f 42/3/DES-ECB/404142434445464748494a4b4c4d4e4f
    cm> init-update 42
    => 80 50 2A 00 08 39 E9 9B 5B 99 36 5D 68 00 .P*..9..[.6]h.
    (118572 usec)
    <= 00 00 71 84 60 6B CB F2 34 21 2A 02 00 02 59 8D ..q.`k..4!*...Y.
    D3 96 1B FD BC DF 8B FB 02 C9 EB A3 90 00 ..............
    Status: No Error
    cm> ext-auth enc
    => 84 82 03 00 10 76 A9 82 6A 67 AE 47 E8 10 BE 86 .....v..jg.G....
    5B BF 39 86 CB [.9..
    (41752 usec)
    <= 90 00 ..
    Status: No Error
    cm> delete -r abcd123456
    => 84 E4 00 80 10 8F 83 2A 59 A6 AB FA 6D 9C A6 7D .......*Y...m..}
    3D 07 9A 92 7B 00 =...{.
    (53942 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 -b 250 "C:\Workspaces\JavaWorkspace\JCOP3.2.7\Test\bin\com\javacard\demo.cap"
    => 84 E6 02 00 20 9E 74 0C 6F B4 1B 11 2D CA E3 08 .... .t.o...-...
    52 35 6A 41 3E AF 6E 32 B8 BE AA 6B 42 A4 A9 FA R5jA>.n2...kB...
    A2 24 53 F5 F1 00 .$S...
    (146155 usec)
    <= 00 90 00 ...
    Status: No Error
    => 84 E8 80 00 F8 8C 2E 60 75 A8 90 30 3A 4F 4B FA .......`u..0:OK.
    1D C7 0F D0 EE CC 61 CC 85 35 10 6D 41 97 A4 45 ......a..5.mA..E
    9F 8E 45 87 31 D1 5C 83 46 82 23 8D AF 40 77 FC ..E.1.\.F.#..@w.
    10 0E F3 2A 79 D3 C3 5D 7E 88 E8 09 C2 4F E5 43 ...*y..]~....O.C
    F0 BD 91 4D 20 5F D6 FE 35 65 98 E9 3C 36 E5 E6 ...M _..5e..<6..
    C3 60 34 9D 4F EB CF 2E C0 2C 88 40 83 F9 7A E6 .`4.O....,[email protected].
    5B 43 36 2A 07 D9 A9 55 09 79 C5 62 5E CB 62 17 [C6*...U.y.b^.b.
    A7 60 F5 2B 7B DF 6E A2 2D E5 FD 84 D1 35 A1 74 .`.+{.n.-....5.t
    C3 9B 6E F3 8B 15 79 CD B5 41 3F D5 03 D4 75 DD ..n...y..A?...u.
    9F 16 F5 A6 B8 20 B5 33 2C CA 40 A6 44 0D 84 9B ..... .3,[email protected]...
    49 63 2B 06 16 A7 6D 19 8A AD 89 93 2E 1A 5E 26 Ic+...m.......^&
    1C 9F 50 61 0C 8D 50 F0 84 08 90 F6 41 6E 98 29 ..Pa..P.....An.)
    9D E4 9A 83 82 2D C0 97 C1 25 FA 42 3B 3E CB 08 .....-...%.B;>..
    ED 63 E0 F3 D5 92 A5 FA D1 BA 57 7E 68 54 60 9F .c........W~hT`.
    93 6D CF 4E C3 3B C3 15 07 9E 24 22 48 F7 56 5A .m.N.;....$"H.VZ
    08 E2 98 D7 04 33 40 D3 C2 57 E8 CC 28 00 [email protected]..(.
    (799209 usec)
    <= 6A 80 j.
    Status: Wrong data
    jcshell: Error code: 6a80 (Wrong data)
    jcshell: Wrong response APDU: 6A80
    Unexpected error; aborting execution
    cm> /atr
    resetCard with timeout: 0 (ms)
    --Waiting for card...
    ATR=3B 88 80 01 00 73 C8 40 13 00 90 00 71 ;[email protected]
    IOCTL().
    ATR: T=0, T=1, Hist=0073C84013009000
    vercurrent version is 2.0.0.2 [1]
    build timestamp is 06-07-2009 14:01:08
    Please suggest what may be the error,
    Regards,
    Dush.

    Hi Shane,
    My current target version is java card 2.2.2.
    Now I tried installing the appl.cap file present in Nokia SDk ,
    and i was able to upload it to my Nokia 6131,
    the stack trace follows:
    cm> upload -b 250 "C:\Dush\Workspaces\JavaWorkspace\JCOP3.2.7\Test\bin\com\javacard\appl.cap"
    => 84 E6 02 00 28 3A 91 77 DA 93 DA C0 3E 83 27 A7 ....(:.w....>.'.
    8E 89 DC 4B 81 41 1E D3 F2 D5 E4 71 EE B1 93 22 ...K.A.....q..."
    0B 1A 17 65 1F 00 B7 71 40 8A C4 CD BC 00 ...e...q@.....
    (150255 usec)
    <= 00 90 00 ...
    Status: No Error
    => 84 E8 00 00 F8 24 A7 57 21 47 F0 6C 9B 91 66 50 .....$.W!G.l..fP
    EB 4D E1 64 D5 E6 6A 0F C4 A8 C8 D5 B5 E6 42 39 .M.d..j.......B9
    2F F8 36 8F 21 50 3E 2A BF 81 8B A7 18 47 2C 3D /.6.!P>*.....G,=
    85 BA 3A DA 18 8C 78 C4 23 C3 89 DF C3 0E E2 DE ..:...x.#.......
    AB 51 49 D1 48 B5 6A 86 E2 DE 54 30 41 DF 20 DE .QI.H.j...T0A. .
    93 97 82 E3 53 30 01 62 DA EC 6F 07 9E E7 BA BC ....S0.b..o.....
    85 FC CE 91 CF 2A F6 BA 59 8B A4 05 0C 80 28 DD .....*..Y.....(.
    97 08 37 C7 2B 3B E3 C8 50 F7 EB 6A FF 2C FE CD ..7.+;..P..j.,..
    C5 65 90 96 8E 93 C9 07 9A 0E D5 ED AF D3 68 E9 .e............h.
    0F 08 15 19 7E 32 D2 5D AF 05 4F 4D 39 F4 78 DD ....~2.]..OM9.x.
    A7 FA D9 DD F1 0E AF B6 00 74 5F F3 18 9F 4B F5 .........t_...K.
    F3 D2 A2 52 19 F4 03 56 10 32 2D 5F 3B 64 7F E9 ...R...V.2-_;d..
    C6 24 A4 74 F9 70 00 58 44 F5 B4 4D 06 25 86 41 .$.t.p.XD..M.%.A
    B0 C2 8F 83 6A DA E9 2D 13 3A 1D DD 5C 1A 14 3E ....j..-.:..\..>
    D4 46 2E DE 95 29 B7 DB B3 77 67 17 B7 D4 AE A0 .F...)...wg.....
    DA 5A 03 D4 E0 2E DB 8E A8 3A 70 4F 3B 00 .Z.......:pO;.
    (393523 usec)
    <= 00 90 00 ...
    Status: No Error
    => 84 E8 80 01 C8 F8 39 80 5E B0 F9 F4 B8 73 4D EC ......9.^....sM.
    B8 C9 E9 28 2D D0 6F 3C 9D D2 6A 37 EB D4 86 0B ...(-.o<..j7....
    2F C1 FB 97 4B A2 A1 D2 67 66 EC 2A 6F EC 7A B8 /...K...gf.*o.z.
    45 DB AA AE D0 36 C4 4B 41 6C 1C F6 67 47 4D 56 E....6.KAl..gGMV
    E6 47 8D BF FA B3 69 A5 F1 15 BD 89 40 BC 3B 4D .G....i.....@.;M
    A9 01 E2 43 6F CF 8A 53 8A 91 49 A2 31 99 2F 6A ...Co..S..I.1./j
    81 B3 76 36 19 C2 F9 3A C4 E3 8B 0F DF E7 67 2F ..v6...:......g/
    17 56 8E 0E 2E 7D 2A 4C 85 AB 98 19 C6 B5 28 8E .V...}*L......(.
    B5 A5 EE 2F D7 DF E5 B2 18 FF 1A EF 7C 16 8B 16 .../........|...
    71 86 9C 88 00 90 41 FB 83 68 EE 77 51 35 05 C8 q.....A..h.wQ5..
    02 A0 03 C3 49 C8 09 A1 31 2A 9B 9A EE E4 F9 52 ....I...1*.....R
    AF 48 50 A4 0C 5F 0E DB 80 0F 8C 52 C4 E8 F4 DD .HP.._.....R....
    0E D7 25 6E 44 29 50 55 82 96 9F 86 49 00 ..%nD)PU....I.
    (842748 usec)
    <= 00 90 00 ...
    Status: No Error
    Load report:
    418 bytes loaded in 1.3 seconds
    effective code size on card:
    + package AID 11
    + applet AIDs 22
    + classes 17
    + methods 158
    + statics 34
    + exports 0
    overall 242 bytes
    cm> card-info
    => 84 F2 80 00 10 15 39 FA 14 0C 7D ED 56 D1 84 B3 ......9...}.V...
    9A 09 0D E2 EF 00 ......
    (51521 usec)
    <= 08 A0 00 00 00 03 00 00 00 0F 9E 90 00 .............
    Status: No Error
    => 84 F2 40 00 10 15 39 FA 14 0C 7D ED 56 E3 81 FF [email protected]...}.V...
    DB B6 87 D6 CD 00 ......
    (59821 usec)
    <= 0C D2 76 00 00 05 AB 05 03 E0 04 01 01 07 10 0C ..v.............
    D2 76 00 00 05 AA 05 03 E0 05 01 01 07 00 90 00 .v..............
    Status: No Error
    => 84 F2 10 00 10 15 39 FA 14 0C 7D ED 56 DB 77 53 ......9...}.V.wS
    8C 67 52 F3 1F 00 .gR...
    (85428 usec)
    <= 6A 81 j.
    Status: Function not supported
    => 84 F2 20 00 10 15 39 FA 14 0C 7D ED 56 0A C3 A1 .. ...9...}.V...
    96 F5 00 C7 69 00 ....i.
    (70632 usec)
    <= 07 A0 00 00 00 03 53 50 01 00 0C D2 76 00 00 05 ......SP....v...
    AA 04 03 60 01 04 10 01 00 0B D2 76 00 00 05 AA ...`.......v....
    05 03 E0 04 01 01 00 0B D2 76 00 00 05 AA 05 03 .........v......
    E0 05 01 01 00 0B 48 65 6C 6C 6F 41 70 70 6C 65 ......HelloApple
    74 01 00 90 00 t....
    Status: No Error
    Card Manager AID : A000000003000000
    Card Manager state : SECURED
    Application: SELECTABLE (---L----) D276000005AB0503E0040101
    Application: SELECTABLE (--------) D276000005AA0503E0050101
    Load File : LOADED (--------) A0000000035350 (Security Domain)
    Load File : LOADED (--------) D276000005AA040360010410
    Load File : LOADED (--------) D276000005AA0503E00401
    Load File : LOADED (--------) D276000005AA0503E00501
    Load File : LOADED (--------) "HelloApplet"
    Ho do I try and now install this appl.cap file.
    thanks,

  • Specifying file location on uploaded applet

    Hi guys, as a test Im trying to get an applet to display an image. I have packed the applet and image file into a jar file. The image file was placed into a folder called images when the jar file was created. I have checked this using the jar tf command, and it clearly shows the file anim1.gif within the directory called images. Within the code of the applet, I find and load the image using:
    ImageIcon icon = null;
    URL iconURL = ClassLoader.getSystemResource("images/anim1.gif");
    if (iconURL != null)
    System.out.println( "found" );
    icon = new ImageIcon( iconURL );
    else
    System.out.println( "not found" );
    However, when i check the java console, i always get the message 'not found'. From reading the tutorials etc...i cannot see what im doing wrong. The image is definatley packed into the folder 'images' within the jar file, and u can see that the code gives this directory to look in. Am i doing something stupidly wrong??
    Any help would be much appreciated!!
    dug \8^D

    Try this way:
    URL picURL1 = getClass().getResource("images/rightArrow.gif");
          if(picURL1 != null && picURL2 != null) {
             icon1 = new ImageIcon(picURL1);

  • Java card, problems uploading applet to Nokia 6131 NFC using Jcop + Eclipse

    Hi, we are trying to load an applet in this mobil phone ( [Nokia 6131 NFC|http://wiki.forum.nokia.com/index.php/Nokia_6131_NFC_-_FAQs] )
    and NXP people has redirect the support to this forum: [JCOP Tools|http://72.5.124.111/thread.jspa?threadID=5199227&tstart=329]
    So;
    This is the complete command sequence:
    >  /term "winscard:4|OMNIKEY CardMan 5x21-CL 0"
    --Opening terminal
    /card -a a000000003000000 -c com.ibm.jc.CardManagerresetCard with timeout: 0 (ms)
    --Waiting for card...
    ATR=3B 8F 80 01 80 4F 0C A0 00 00 03 06 03 00 02 00    ;....O..........
        00 00 00 69                                        ...i
    ATR: T=0, T=1, Hist=804F0CA00000030603000200000000
    => 00 A4 04 00 08 A0 00 00 00 03 00 00 00 00          ..............
    jcshell: Unable to select Card Manager or invalid FCI: Unknown Global Platform Java Card.
    Subsequent commands might fail! Inspection might not be possible!somebody knows something about this error?
    Thanks in advance!

    The same!
    - /terminal pcsc:4
    --Opening terminal
    /atr--Waiting for card...
    ATR=3B 8F 80 01 80 4F 0C A0 00 00 03 06 03 00 02 00    ;....O..........
        00 00 00 69                                        ...i
    T=0, T=1, Hist=804F0CA00000030603000200000000
    /select A00000030603000200000000 => 00 A4 04 00 0C A0 00 00 03 06 03 00 02 00 00 00    ................
        00 00                                              ..
    (0 msec)
    <= 3B 8F 80 01 80 4F 0C A0 00 00 03 06 03 00 02 00    ;....O..........
        00 00 00 69 00 00 00 00 00 00 00 00 00 00 00 00    ...i............
        00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00    ................
        00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00    ................
        00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00    ................
        00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00    ................
        00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00    ................
        00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00    ................
        00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00    ................
        00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00    ................
        00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00    ................
        00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00    ................
        00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00    ................
        00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00    ................
        00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00    ................
        00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00    ................
        00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00    ................
        00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00    ................
        00 00 00 00 00 00 00 00 00 00 00 00                ............
    Status: 0x0000
    Error code:     0 (0x0000)
    Offending APDU: 3B8F8001804F0CA000000306030002000000006900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    Wrong response APDU.

  • Error uploading applet - The system cannot find the file specified

    My install file gp-install.txt is:
    mode_211
    //mudei, originalmente mode_201
    enable_trace
    establish_context
    card_connect -readerNumber 0
    select -AID a0000000030000
    open_sc -security 1 -keyind 0 -keyver 0 -mac_key 404142434445464748494a4b4c4d4e4f -enc_key 404142434445464748494a4b4c4d4e4f // Open secure channel
    //install_for_load -pkgAID a000000000 -nvCodeLimit 16000 -sdAID A000000003000000
    install -file C:\Users\omatyak\Desktop\HandsOnJavaCard\bin\cap\meuapplet\javacard\meuaplet.cap
    // load -file C:\_Projetos\HandsOnJavaCard\cap\br\gov\camara\javacard\camara.cap
    //install_for_install -instParam 00 -priv 02 -AID a00000000001 -pkgAID a000000000 -instAID a00000000001 -nvDataLimit 500
    card_disconnect
    release_context
    But this error is show:
    Response <-- 9000
    [exec] install -file C:\Users\omatyak\Desktop\HandsOnJavaCard\bin\cap\meuapplet\javacard\meuaplet.cap
    [exec] file name C:\Users\omatyak\Desktop\HandsOnJavaCard\bin\cap\meuapplet\javacard\meuaplet.cap
    [exec] read_executable_load_file_parameters() returns 0x00000002 (The system cannot find the file specified.)
    Can someone help me?
    Thanks.

    The convertion is ok, the file C:\Users\omatyak\Desktop\HandsOnJavaCard\bin\cap\meuapplet\javacard\meuaplet.cap exists...

  • What tools other than cardman can upload applet through UBS port?

    The javacard2.2.1 guid says that it supports serial port. But my card reader connect the pc through UBS.
    Currently I use cardman from JCOPTool to communicate with card.
    Could you please tell my other ways to do that? Thanks.

    You can write your own loader as long as you have an interface to the reader. PCSC is the defacto standard to do that and all reader manufacturers support it.
    You can also use a kit provided by any card vendor. I recommend you write your own so you can develop a good understanding of how it all works.

  • Applet not opening in browser  Help needed

    Hi experts,
    I have Java installed in my machine in the path C:\Program Files\Java
    While trying to open the link http://www.radinks.com/upload/applet.php in browser, I am being asked to install the missing plugin and that plugin is java.
    I do not know why this happens and I am stuck with this problem for sometime.
    Any help in this regard will be well appreciated with dukes.
    Thanks in advance,
    Kind Regards,
    Anees

    faheemhameed wrote:
    I have the same issue. But this is on Internet Explorer 8. Firefox is fine.Given the [web page does not validate|http://validator.w3.org/check?uri=http%3A%2F%2Fwww.radinks.com%2Fupload%2Fapplet.php&charset=(detect+automatically)&doctype=Inline&group=0] *(<- link),* I am not surprised it fails in some browsers while working in others. Checking the source of the page itself, I notice the applet is embedded in the page using an OBJECT element only, and that possibly also explains why it works in some browsers but not others.
    The best bet of the author of the web page is to defer writing the applet element to the [deployJava.js|http://java.sun.com/javase/6/docs/technotes/guides/jweb/deployment_advice.html#deplToolkit] *(<- link)* that is provided by Sun.
    Unfortunately there is little that you can do about it, unless you want to attempt creating a page to load off your hard disk, that is valid and workable for IE. I cannot guarantee it will work, but try this variant..
    The altered web page, which can be tested at [http://pscode.org/test/radinks/applet.html].
    <html>
    <body>
    <applet
      code="com.radinks.dnd.DNDAppletPlus"
      archive="dndplus.jar"
      codebase="http://www.radinks.com/upload/"
      width= "290"
      height= "290"
      alt="Java is recognised, but disabled!">
        <param name="url" value = "http://67.131.250.110/upload.php">
        <param name="message" value="http://www.radinks.com/upload/init.html">
        <param name="name" value="Rad Upload Plus">
        <param name="max_upload" value="10000">
        <param name="encode_path" value="yes">
        <param name="translate_path" value="yes">
        <param name="full_path" value="yes">
    This browser does not recognise the Java APPLET element.  Get Java from www.java.com.
    </applet>
    </body>
    </html>

Maybe you are looking for

  • Exposé doesn't show the window I choose

    When I invoke Exposé and click a new window, Exposé ignores what I clicked and returns to the last active window. For example: let's say I'm using Safari and I have Mail open in the background. I invoke Exposé and click on the Mail window to change a

  • HT4942 How do I get the ICloud option to show in Pages? Still no ICloud folder

    I still cannot save Pages documents to ICloud!?!? there is no ICloud folder to save my Pages doc in. Help.

  • CS6 Web and Design will not extract files

    I am attempting to download CS6 (design and web premium package), from the website and once it is downloaded and I attempt to start the extraction/installation I get an error that tells me that the file is corrupt and I should download again, but hav

  • Space added to path when using graphics extension

    Hi, I'm having a strange problem.  I use the 'chart' element of BSP extension 'graphics', but this doesn't show me the generated graph in the portal. I've done some debugging and I've found out that this extension uses the method cl_graph_util=>publi

  • Usb 2.0 not working but 1.1 does??? help me

    I just got a new 80gig 5g and it works fine when connected to usb 1.1 but I just bought a new usb 2.0 card and when I connect it to it it doesn't recognize the ipod but the card is working just not with 2.0 devices any ideas? tried updating drivers b