JCOP 2.4.1 APPLET loading and updating

Does anybody know whether JCOP 2.4.1 can load a APPLET signed with a RSA private key ? Can the CARD MANAGER verify the RSA key ? Can the CARD MANAGER update an APPLET RSA digitally signed in the field ?
Thanks

Hi,
MarcioCampos wrote:
Does anybody has a document that explains DAP and the security mechanism for JCOP 2.4.1.The GP card spec defines the DAP process. Version 2.1.1 has this in section 7.5 with further information throughout the document. The card spec is freely available from the GP website.
Cheers,
Shane

Similar Messages

  • I tried to update my nephew iphone 4 version 4.3.4 (8k2), I did back-up everything before attempting to update and the result when I click down-load and update, it does not update instead it says,  itunes could not contact the iphone software update etc.

    Hi to all,
    I tried to update my nephew iphone 4 version 4.3.4 (8k2), I did back-up everything before attempting to update and the result when I click down-load and update, it does not update instead it says,  itunes could not contact the iphone software update server because you are not connected to the internet. I did check my wire-less connections and the connection from my PC to wire-less is hundred percent okay. I did search using google.com to confirm and my connections is good. Is there any problem regardings my firewalls or any help will be appreciated. Thanks

    Hi bosefire,
    Thanks for visiting Apple Support Communities.
    You can use the steps in this article to troubleshoot your iTunes connection:
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    Regards,
    Jeremy

  • Applet loading and using ttf font

    Hello,
    I'd like my applet to load a TTF file from the server (or from a provided jar file) and
    use it to render text, or use it with GUI elements like TextArea.
    Here the significant part of my code:
            URL fontURL=applet2.class.getClassLoader().getResource("my.ttf");
            try { fontStream = fontURL.openStream(); } catch (Exception e) {
                str=str+"Error 1\n";
                e.printStackTrace();
            str=str+"Step 1\n";
    // also tried this way instead, as well as including the ttf in a jar or as separate file on the server
    //      fontStream = getClass().getResourceAsStream("my.ttf");
            try { font = Font.createFont(Font.TRUETYPE_FONT, fontStream); } catch (Exception e) {
                str=str+"Error 2\n";
                e.printStackTrace();
            str=str+"Step 2\n";
            try { fontStream.close();} catch (Exception e) {
                str=str+"Error 3\n";
                e.printStackTrace();
            str=str+"Step 3\n";
            big_font=font.deriveFont(40f);
            text_out_main = new TextArea(str,4,40,TextArea.SCROLLBARS_NONE);
            text_out_main.setFont(big_font);the funny thing is, that this works on several Linux installations I tried (all UTF8/Unicode based ones).
    And I tried several WinXP/Win2k FF/IE/Safari combinations and none of them works! The Windows
    machines all show a standard font but with the size 40f, I cant see any exceptions, the strings "Step 1"
    to "Step 3" are nicely attached to the main string and not a single "Error x" string appears.
    All systems use the latest jre 1.6 plugins.
    Any hints are appreciated.
    Thanks,
    Leander
    Edited by: Leander2000 on Jun 7, 2008 5:55 AM

    Meanwhile I found out that the TextArea (or probably any other awt gui element)
    did not use the font when running on Windows, when drawing to a Graphic or using
    it with a JTextArea everything is ok.
    Regards,
    Leander

  • Applet load and memory leak

    what are some methods to load an applet faster that is on the local machine? also, are there any applications to test for memory leaks? and are there ways to invoke garbage collection with code? thanx in advance.

    Applet on the local machine will load faster because file is already there
    use System.gc() to do a garbage collection

  • After connecting to itune to down load and update my 3gs iphone it is now telling me "no sim card" How can I get round this?, after connecting to itune to down load and update my 3gs iphone it is now telling me "no sim card" How can I get round this?

    After connecting my 3gs phone to itune last night to download items and to get new updates my phone will not work, it says to add a sims card to phone but the sims is already in it.  How can I get my phone to work?

    Sounds like your iPhone was previously hacked/modified/jailbroken
    and the update has relocked it to the original wireless carrier. If that
    is the case, only the wireless carrier to which the iPhone is now locked
    can unlock it.
    Does the app Cydia appear on your iPhone?
    What does it say when you look at Settings=>General=>Carrier?
    What wireless provider do you normally use?

  • API for loading and updating Workplans into Projects

    Hi Projects Gurus,
    Is there any API that can load workplan into Project Accounting module?
    Thanks,

    Dear,
    I Assume when you say project accounting module means oracle project management module.
    As per my understanding there is no API for the same but I guess you can use Microsoft project plan integration with oracle projects and create the workplan in oracle project management.
    Thanks
    :-)

  • Repetitive Applet Loading

    Hi,
    I have written a [signed applet|http://code.google.com/p/jzebra/] that sends special raw data to a printer. This applet loads and works well by specifying printer parameters as applet param tags.
    The applet is an open source project and has gained some momentum from a few web developers.
    Since this applet is designated for printing, it's loaded and unloaded a multitude of times (possibly hundreds) per day as the applet appears on the "print page" of the web sites that use it. (Think of a bar-code print page for example). This loading and unloading seems like a redundant step that could benefit by having the applet always running instead.
    In terms of functionality, I'm getting great feedback from users, but one complaint seems to be the load time of the applet for each successive load of the print page (our company uses the applet in a similar fashion).
    Is there a way to keep the applet "always loaded" page-wide or site-wide and have it simply "listen" for the print jobs? (Or perhaps is our web page design just wrong?)
    Suppose a pop-up or new web page loads that needs to use the applet, can the applet be residual in that fashion? It smells like a client-server relationship, but I doubt a server-side solution would work since the printers are attached locally to the workstations. I'm a fluent java developer but only know basic web development. Any help is appreciated.
    Thanks!
    -Tres

    FBL wrote:
    If this applet is deployed in a 1.6.0_10+ JREOur organization has flexibility on JRE versions, so requiring update 10 shouldn't be too large of a hurdle. In fact, the stations with internet access receive it automatically so we're lucky in that regard.
    it is possible to configure it via JWS (even while still embedded in the web page). JWS would provide more reliable caching behaviour, and might even allow you to provide the applet sandboxed, by using the JNLP API's PrintService. When you say "webstart" and "sandboxed", I assume you mean it will be a web start application that appears to be running as an applet within the page. >Just a slight clarification. To me, web start means a way of launching, sand-boxed means as opposed to j2ee-application-client-permissions or all-permissions, and embedded in a web page means as opposed to free floating (like a JFrame).
    It has been possible to launch applets using web start since Java 1.2 that become free floating. Since 1.6.0_10, it has become possible to configure an embedded applet using web start.
    All security levels are available to any application or applet launched(/configured) using web start. But a 'normal' (not configured by JNLP) signed applet has one of two security levels, either sand-boxed (the user refused the digitally signed code) or all-permissions (code OK'd).
    To use the web start services from the sand box, the code does not need to be digitally signed (one of the main benefits), but to get the code elevated to j2ee-application-client-permissions or all-permissions, it needs to be signed.
    >
    ..Although the built-in PrintService makes me wonder if you're hinting into going application-less and doing the logic in php/JavaScript. The only reason it actually shows in the page, is because it was the conservative applet approach.
    Having the applet outside the browser, or even "invisible" to the end-users is usually desired so as long as it's controlled through other means if necessary.
    Thank you for the response and the link. I launched the PrintService demo and received the security dialogs. Is that the primary purpose of the demos? >Basically. If you want to continue to deploy as trusted, then that 'query at time of print' prompt would disappear.
    >
    ...I didn't expect it to actually print anything. So, naturally I'll need to read more.
    I'm marking this thread as answered, but I'm very interested in learning more about use Java Web Start to exploit this applet. I guess I'm still a bit undereducated on the applet -- vs -- application aspect of JWS and how to bind and exploit the api through a web page.>All the services mentioned in the [JNLP API page|http://pscode.org/jws/api.html] are available to applets deployed via web start, though some of them (file associations, single instance service..) do not make much sense for applets. But the main reason I mentioned it, as that it takes control of the class caching from the browser, and makes it more reliable. Check out the [Java Web Start|http://java.sun.com/javase/technologies/desktop/javawebstart/index.jsp] pages at Sun, but keep in mind that the embedded web start applets are fairly new, and the Sun pages probably do not mention them yet (shrugs).
    It occured to me that if you are configuring the applet parameters for different products(/whatever) then you are actively generating the parameters? One slight complication is that configuring applets can be done via JS or a server side solution, whereas deployment using web start would require a unique (for each set of parameters) JNLP file that must be generated on the server side.

  • Strange (for me) applet loading error.

    I�m developing an applet on an embedded server and I have been experienced the following error. When I load it from a 100 mbits LAN the applet loads and works well.
    But, If I try to open it through 10mBits switch, the applet refuses to work and a lot class of class not found errors appears. (The same from a location outside my LAN)
    Can it be a speed related problem?
    here is a copy of my htm (myClass is stored inside cab3.cab)
    <HTML>
    <HEAD>
    </HEAD>
    <BODY BGCOLOR="FFFF82">
    <CENTER>
    <APPLET
         codebase = "."
         archive = "cab2.cab, cab3.cab, cab4.cab, cab5.cab"
         code = "myClass.class"
         width = "760"
         height     = "420"
         >
    </APPLET>
    </CENTER>
    </BODY>
    </HTML>
    Thanks in advance.

    A Full trace might help us out:
    http://forum.java.sun.com/thread.jspa?threadID=656028

  • Java Applet Load Issues

    For some applets, well, nothing happens. Im not sure what the problem is, but certain applets load, and other applets just make a gray frame and generate an error. Even my own applets I compile dont run. Everything works properly on my applets, because I can run them in the appletviewer, just not in the browser (which is kinda essential for running other peoples applets on the web, ya know). Odd thing is I can run them on my other comp, and practically the only difference is that it doesnt have the SDK on it.
    Computer specs are: WinME with JDK and JRE v 1.4.1_01, and the JVM on it.
    An excerpt of the error it generates every time a problematic applet is run (from my javalog.txt file):
    Error loading class: <AppletName>
    java.lang.NoClassDefFoundError
    java.lang.ClassNotFoundException: <AppletName>
         at com/ms/vm/loader/URLClassLoader.loadClass
         at com/ms/vm/loader/URLClassLoader.loadClass
         at com/ms/applet/AppletPanel.securedClassLoad
         at com/ms/applet/AppletPanel.processSentEvent
         at com/ms/applet/AppletPanel.processSentEvent
         at com/ms/applet/AppletPanel.run
         at java/lang/Thread.run
    I have no idea what any of that mess is, or why its so painful. If anyone can give a hand, Ill be checking here every 10 seconds until the time that it gets fixed, or you can email me at [email protected], thanks.

    Can you find a "Sun Java Console" entry on IE's Tools menu? If not, the Sun jvm isn't installed in a manner that IE can access.
    The messages that you posted in your original post are from the MS jvm. If the Sun jvm is operating, you shouldn't be seeing those messages.
    If the Sun jvm is being invoked by IE, then a red/blue icon of a steaming cup of coffee will be in the Systray area of the Start bar - at the far right. If it's there, a rightclick will allow you to open the Sun java console, which will report any problems or errors encountered.
    Check it out.

  • Applet loading fails: ClassNotFound exception onlyyyy on linux

    Hello,
    I have a server on my embedded device with WinCE, and this server has the jar files and html files. connecting with Windows is working fine and Java applet loads and runs perfectlly.
    The problem is with linux clients, I can't load the applet.
    I expected to havesomething wrong with the plugin, But I tried with the test applets on www.sun.com and they are working fine.
    The error is ClassNotFoundException and http connection failed, although when I take the URL copy/paste from the Java console to the address bar of the firefox it downloads the class file. so the path is OK.
    Also I can run with the appletviewer and it works perfect like the case with windows. The problem is with the browser, It can'T load the applet from a remote machine.
    Also I made an empty applet with a button on it to check may be I should compile on linux!! but also this failed, I could load this applet locally (the html and class files on desktop) and when I places them on the server in the directory configured to be the www public directory It is not loaded. And again this test applet laoded on windows machines.
    I use the same JRE version on linux and windows and the same JDK.
    I use on windows Opera/ Firefox/ explorer and all are working, on linux I use Firefox/ Konqurer/ Epiphany and all are not working.
    Any Idea?????
    Thanks in Advance

    Hello,
    I have a server on my embedded device with WinCE, and this server has the jar files and html files. connecting with Windows is working fine and Java applet loads and runs perfectlly.
    The problem is with linux clients, I can't load the applet.
    I expected to havesomething wrong with the plugin, But I tried with the test applets on www.sun.com and they are working fine.
    The error is ClassNotFoundException and http connection failed, although when I take the URL copy/paste from the Java console to the address bar of the firefox it downloads the class file. so the path is OK.
    Also I can run with the appletviewer and it works perfect like the case with windows. The problem is with the browser, It can'T load the applet from a remote machine.
    Also I made an empty applet with a button on it to check may be I should compile on linux!! but also this failed, I could load this applet locally (the html and class files on desktop) and when I places them on the server in the directory configured to be the www public directory It is not loaded. And again this test applet laoded on windows machines.
    I use the same JRE version on linux and windows and the same JDK.
    I use on windows Opera/ Firefox/ explorer and all are working, on linux I use Firefox/ Konqurer/ Epiphany and all are not working.
    Any Idea?????
    Thanks in Advance

  • Is it possible to LOAD and INSTALL applet during pre-personalization?

    Hi Friends..
    Currently, i use JCOP card
    I want to know the other way to LOAD and INSTALL applet not through CardManager..
    I mean, is it possible to LOAD and INSTALL applet during pre-personalization time?.
    Thanks in advance

    Hi,
    i want to LOAD and INSTALL Applets while pre-personalization phase..
    No, i don't want to defer the LOAD and INSTALL..In the past, we have used the pre-personalisation phase to load KDC keys onto a card and remove the ISK and set issuer specific identifiers (IIN and CIN) etc. You could also load your applet at this time if you wish. You can also load the applets at personalisation.
    How do you plan on doing the personalisation phase? If you were to use a GP scripting environment for example, the CAP files are embedded as a part of the install scripts and only loaded onto a card when you begin executing your personalisation scripts. Since I assume you will be using the small desktop printers mentioned in a different thread, you may be better off integrating the applet loading into your personalisation code (printer integration) so you do not need to double handle cards.
    Actually, is it possible to LOAD and INSTALL applet if we don't authenticate to the CardManager?..There are ways to load and install an applet without explicitly calling INIT UPDATE and EXTERNAL AUTH, but you still need to be authenticated to the card manager, otherwise anyone could manage card content. You can use install tokens and delegated management (which are all outlined in the GO Card Spec).
    Cheers,
    Shane

  • Loading part of a applet first and init

    Hi,
    I'm developing a applet and currently the size of it quite large. so i want to divide applet into two parts and hope to load one part of applet first and second part is downloading while first part is running.
    the main problem here is, this applet should be run on MS VM (jdk 1.1.8). i have some idea to copy second jar file to local machine classpath and then access it on demand. in this case, seems jar is need to copy local machine before applet is loaded.
    please help me to resolve this problem......
    Janath

    Hi,
    1.Please make sure the update deployment is show up on the Deployment tab(Assets and Compliance -> Overview -> Devices -> the specific client properties)
    2.Check PolicyAgent.log on the client to see whether the specific client have received the deployment policy. If not, try to run the Actions about software updates on the Configuration Manager Properties from the client.
    3.Examine UpdatesDeployment.log, UpdatesHandler.log. UpdatesStore.log on the client.
    Best Regards,
    Joyce Li
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • When i try to open week cal it loads and then closes after a few seconds...I have checked for updates, turned the phone off then on, closed out of the app and then opened it again...nothing works!  Any suggestions?

    When i try to open week cal it loads and then closes after a few seconds...I have checked for updates, turned the phone off then on, closed out of the app and then opened it again...nothing works!  I have thought about deleting the app from my phone and then reloading it again but I worry that it will delete all my calendar info???  Any suggestions?

    To reset, press and hold the Home and power buttons until the silver apple appears.
    I would delete the app, reset the phone and then download the app again. Your calendar information should be stored on the phone as Week Cal uses the Calendar app information.
    Best of luck.

  • I attempted to load Itunes update and it will not start and faults out

    I attempted to load an update to I Tunes and it has now faluted out and will not start and it gives me an error message

    Hey lljmustang,
    Thanks for the question. I understand you are experiencing issues with iTunes for Windows. Let’s troubleshoot the iTunes installation by completely removing and reinstalling iTunes and all related components (it is important to remove all components in the order listed).
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    http://support.apple.com/kb/HT1923
    Additional Information:
    How to restart the Apple Mobile Device Service (AMDS) on Windows
    http://support.apple.com/kb/TS1567
    Issues installing iTunes or QuickTime for Windows
    http://support.apple.com/kb/HT1926
    Thanks,
    Matt M.

  • Safari won't load and I can't update my software, ie., I get an error message.  What can I do to fix this?

    Safari won't load and I can't update my software, ie., I get an error message.  What can I do to fix this?

    You can't install Safari 3 on your 10.3.9 OS.
    You must use the DVD installer to re-install the older version of Safari found on it.
    You can update your operating system buy purchasing Tiger (10.4) and get a more modern version of Safari.

Maybe you are looking for

  • About Mac Messanger 8.0?, I Did Not Know Where To Put This Thread?

    I Know Everyone Here Hates Microsoft, But I Had a Question I Like to Ask Everyone About Mac Messanger 8.0, I Wanted To Know When Will It Be Available To Use Completely? Right Now It's in Beta, & i'm Sure Maybe Some Apple Fan's Must Use Mac Messanger

  • Computer will not boot up.   a circle with a line thru it appears.

    All of a sudden my computer will not boot up and a circle with a line thru it comes up.  What is the problem and what can I do to fix it?

  • How to create a New user group for AD-HOC

    when i select a work area for ad-hoc i dont find any exisitng user groups... i get a blank screen with an error saying no usergroup is there a possibility to copy these across clients? pls advise thanks

  • In-app purchase final testing

    Hi, I've developed Windows (Phone) Store app with in-app purchases and now I am going to release it. I just wanted to ask, whether is there any last possibility to test the IAPs. App is now hidden on the store, and I can download it to a device, and

  • Firefox 3.6.13 ajax setRequestHeader('User-Agent', '...') don't work

    I did a javascript and in new Firefox version (3.6.13) don't overwrite the "User-Agent" Header in XMLHttpRequest. Is this a new security feature? :S The code: <pre><nowiki>jQuery.ajax({ beforeSend: function(xhr){xhr.setRequestHeader('User-Agent', '..