Displaying progress indicator during signature validation of jar files

Hi,
I have a question concerning the launch of a web start application. After starting a wab start, a splash screen is shown first, which we have configured in the jnlp file. The splash screen appears for some seconds, then it disappears and it sometimes takes one or two minutes where nothing happens until the application is getting started. I mean there is no indicator which tells the user, what is going on (this is our problem). In the background you can see that first of all the jar files are getting updated (a progress indictor is shown) and then the validation of the jar file signatures starts. I would either like to accelerate the signature validation somehow or show a progress indicator during this process.
Or is it something else what can slow down the launch of a web start?
Thanks,
Ari
Edited by: java-ari on Jul 20, 2010 9:15 AM

man pacman.conf

Similar Messages

  • Display Progress Indicator in the Run Time

    Hi All,
    How do display Progress Indicator in the Run Time for a JSF Page using ADF components?
    Regards
    Santosh

    I have similar problem.
    Basically my page do search in the database which takes some time. so when search starts I would like to display the progress indicator or some thing which will show some processging is going on in background. Once it completes the background processing, the same page displays the result. At this time I want to hide the progress indicator.
    Is there any way to do this. I am using EA17 with JDev.

  • Display progress bar during silent install?

    Hello everybody,
    as the silent installation takes up to several minutes, it would be useful to display a progress bar during the installation. Is there a parameter which allows to enable such a progess window during the installation?
    Thanks for any ideas.

    The progress bar means the system is Auto booting to Safe Mode, not a good sign.
    The reasons it is Auto Booting into Safe mode can vary but more then likely it is either a hard drive problem, failing hard drive, or a corrupted hard drive. I would save all your personal files, data, to an external drive and start over by erasing the complete drive and reinstalling the OS and all your programs. Then copy your data back to the drive. If it happens again then it means the drive is starting to fail and needs to be replaced.

  • Display Progress Indicator in Module-pool Screen

    Hi,
    I want to draw a Progress Indicator (fixed progress bar) in my own module pool screen. (It will be a little graphic, that will represent total percentage of the work that has been done till date.)
    I tried to take reference from the existing programs:
    GFW_PROG_PIE
    GFW_DEMO_PRES1
    GFW_PROG_BAR
    DEMO_GFW_PRES_SHOW u2026
    -but these programs can draw only charts (pie, bar etc).
    Looking for your help!!!
    Thanks,
    Tushar

    Hi,
    you can use Function Module SAPGUI_PROGRESS_INDICATOR.
    Hope this helps!
    Regards
    Mark-André

  • How to remove Jar signature in BouncyCastle jar file

    My problem is: When I expand bcprov.jar (Bouncycastle) and then I pack it into a one jar file with my application and other expanded jar files, I getting an error about the signature of Bouncycastle).
    I am using Ant to expand and create my jar file.
    Any Ideas , I would like to remove the signature of the bouncycastle jar file.
    thx in advance
    espinraf

    It's actually not easy to do it. There are various regexp ways of doing it. If you search you'll find them. But they are only partial solutions. What you really need to do is write an HTML parser, perhaps using Java's built-in HTML parser. That's the only way to really and truly extract text from HTML. It's a bit of an advanced programming task, though.

  • VeriSign SSL signature used in JAR file?

    Can the security key used for SSL be imported into Java to sign a JAR file?

    Nope. You need a "code signing" certificate for java.

  • Refreshing Progress Indicator during calculation loop (WD ABAP)

    Hi everybody,
    I want to use the ProgressIndicator UI Element on one of my Views. But when setting a new percent value during my calculation this does not lead to a refresh of the indicator on the screen, hence I can only see the 0% and 100% state after finishing the calculation but nothin in between. Is there an elegant way to refresh the view or is the only way to trigger the inbound plug after each calculation step ?
    Thanks for any hints & best regards,
    Michael

    Hello. 
    You must increment the percentage like:
    CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
      EXPORTING
       text       = 'Searching data ...'.
    CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
      EXPORTING
        percentage = '0.25'
        text       = 'Calculating ...'.
    CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
      EXPORTING
        percentage = '0.50'
        text       = 'Preparing output ...'.
    Until it get's value 1.
    However, if it's too fast you cannot see!
    Regards.
    Valter Oliveira.

  • Any progress indicator when pacman is downloading many files?

    Is there any way we can know the progress when a large number of files are being downloaded by pacman during updates etc.  Only progress of each file is shown. Gross idea is obtained by noting if core/extra/community packages are being downloaded.
    A simple <filenumber> of <totalfiles> being downloaded message would be very helpful. I could not find any reference to this in the excellent wiki page:
    https://wiki.archlinux.org/index.php/Pacman
    Nor is there any mention in 'man pacman'.

    man pacman.conf

  • Progress Indicator in ALV report

    Hi All,
    Can any body please help me by providing  code for displaying progress indicator in  ALV report?
    Thanks in advance.
    Tamal Roy

    Hi Biswajit,
    U need to use  this function module  'SAPGUI_PROGRESS_INDICATOR'
    Please check this code
    DATA: A LIKE SY-UCOMM.
    DO 100 TIMES.
      DO 300 TIMES.
        GET TIME.
      ENDDO.
      A(3) = SY-INDEX.A+3 = '%'.
      CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
           EXPORTING
                PERCENTAGE = SY-INDEX
                TEXT       = A.
    ENDDO.
    Best regards,
    raam

  • Progress indicator for installing missing SCCM 2012 R2 updates

    Hi Everyone!  I've put together a simple powershell script to install missing SCCM updates and it works well but doesn't output anything to the console when its running.
    How could I include a write-progress indicator during the While loop is running?
    I'm thinking I could insert Write-Progress for the While (($CMInstallPendingUpdates.Count -ne 0) but I'm just not too familiar with the syntax required.  -Thanks!
    # Get the number of missing updates
    [System.Management.ManagementObject[]] $CMMissingUpdates = @(GWMI -ComputerName $server -query "SELECT * FROM CCM_SoftwareUpdate WHERE ComplianceState = '0'" -namespace "ROOT\ccm\ClientSDK") #End Get update count.
    $result.UpdateCountBefore = "The number of missing updates is $($CMMissingUpdates.count)"
    #Install missing updates.
    If ($CMMissingUpdates.count) {
    $result.UpdateCountBefore = "The number of missing updates is $($CMMissingUpdates.count)"
    $CMInstallMissingUpdates = (GWMI -ComputerName $server -Namespace "root\ccm\clientsdk" -Class "CCM_SoftwareUpdatesManager" -List).InstallUpdates($CMMissingUpdates)
    Do {
    Start-Sleep -Seconds 15
    [array]$CMInstallPendingUpdates = @(GWMI -ComputerName $server -query "SELECT * FROM CCM_SoftwareUpdate WHERE EvaluationState = 6 or EvaluationState = 7" -namespace "ROOT\ccm\ClientSDK")
    #Not 100% sure $result.UpdateCountBefore is needed below.
    $result.UpdateCountBefore = "The number of pending updates for installation is: $($CMInstallPendingUpdates.count)"
    } While (($CMInstallPendingUpdates.count -ne 0) -and ((New-TimeSpan -Start $StartTime -End $(Get-Date)) -lt "00:45:00"))
    } ELSE {
    $result.UpdateCountAfter = "There are no missing updates."}

    # Get the number of missing updates
    [System.Management.ManagementObject[]] $CMMissingUpdates = @(GWMI -ComputerName $server -query "SELECT * FROM CCM_SoftwareUpdate WHERE ComplianceState = '0'" -namespace "ROOT\ccm\ClientSDK") #End Get update count.
    $result.UpdateCountBefore = "The number of missing updates is $($CMMissingUpdates.count)"
    #Install missing updates.
    If ($CMMissingUpdates.count) {
    $result.UpdateCountBefore = "The number of missing updates is $($CMMissingUpdates.count)"
    $CMInstallMissingUpdates = (GWMI -ComputerName $server -Namespace "root\ccm\clientsdk" -Class "CCM_SoftwareUpdatesManager" -List).InstallUpdates($CMMissingUpdates)
    $Increment = 100 / $CMInstallMissingUpdate.Count $Percent = 0 Do {
    Start-Sleep -Seconds 15
    [array]$CMInstallPendingUpdates = @(GWMI -ComputerName $server -query "SELECT * FROM CCM_SoftwareUpdate WHERE EvaluationState = 6 or EvaluationState = 7" -namespace "ROOT\ccm\ClientSDK")
    #Not 100% sure $result.UpdateCountBefore is needed below.
    $result.UpdateCountBefore = "The number of pending updates for installation is: $($CMInstallPendingUpdates.count)"       Write-Progress -Activity "Installing updates" -PercentComplete $Percent -Status "Working ..."
    $Percent = $Percent + $Increment
    } While (($CMInstallPendingUpdates.count -ne 0) -and ((New-TimeSpan -Start $StartTime -End $(Get-Date)) -lt "00:45:00")) Write-Progress -Activity "Updates installed" -Status "Done" -Completed} ELSE {
    $result.UpdateCountAfter = "There are no missing updates."}

  • Splash screen with progress bar and multiple jar files to load

    Hello,
    I have been looking to the new features in java 6 for splash screens. I haven't implemented this never before and i was wondering how i could do the following with java 1.5 or 6:
    I would like to see a splash screen with a progress bar that "grows" when every jar file has been read.
    At this time i call my application like this from a shell script:
    exec "$JAVA_BIN" -Djava.library.path=$LIBRARIES_J3D -classpath xxxx.jar yyyy.jar zzzz.jar ...
    where xxx.jar, yyy.jar and zzz.jar are very heavy jars.
    So i would like to see in the progress bar 33% 66% and 100% when they are loaded.
    I do not know if this is the right forum to ask for this. If no, please point me which would be the ideal one.
    Any help will be very useful. Thanks to all!

    Am 10.07.2015 um 07:17 schrieb Lalit Solanki:
    > Hi friend,
    >
    > I am create pure eclipse E4 application and trying to splash screen with progress bar and message.
    >
    >
    >
    >
    > but above image in only support eclipse E3 application so pleas help me how to add progress bar and message in eclipse E4 application
    >
    Hi Lalit,
    there's a Bug entry: https://bugs.eclipse.org/bugs/show_bug.cgi?id=382224
    Meanwhile you can use this solution:
    https://www.eclipse.org/forums/index.php/t/328812/5ceed4bcaa683a94d65efb161bffd217/
    Regards,
    Ralf.

  • How to keep my jar file from being downloaded?

    hi,
    problem:
    i turned a java app into an applet, put it on yahoo's server and was able to view the applet in a browser. but the html source tells where the applet's jar file is and so a user can download it. to prevent this, i put the jar file into a password protected folder. but this requires the user to enter a password before the applet is displayed.
    question:
    how can i use the jar file without protecting it with a password and keep it from being viewed or downloaded?
    this is a learning experience, the jar file simply prints the current time.

    If you want a client to run anything at all, it needs to be public. If people can't download it, their browsers can't as well.
    All you can do is run your code through an obfuscator to somewhat protect it from being copied.

  • Progress Indicator not displaying

    Hello,
    We have an existing web application built using older version of Crystal Viewer control that doesn't display any progress indicator when the report starts running. However I see with CR 2008, it's possible to display a progress indicator.
    I have migrated the application to work against CR 2008, however I am unable to display the progress indicator. I added the following configuration entries but with no difference.
    <businessObjects>
        <crystalReports>
          <crystalReportViewer>
            <add key="resourceURI" value="/crystalreportviewers12" />
            <add key="processingIndicatorDelay" value="5"/>
            <add key="processingIndicatorText" value="Thank you for waiting."/>
          </crystalReportViewer>
        </crystalReports>
      </businessObjects>
    Has anybody experienced this problem?
    Please assist.

    I don't know if you are using the below, but if not, add it;
    <configSections>
        <sectionGroup name="businessObjects">
          <sectionGroup name="crystalReports">
            <section name="crystalReportViewer" type="System.Configuration.NameValueSectionHandler"; />
          </sectionGroup>
        </sectionGroup>
      </configSections>
    Also, use this code:
      <businessObjects>
        <crystalReports>
          <crystalReportViewer>
            <add key="processingIndicatorText" value="Thank you for waiting."/>
            <add key="processingIndicatorDelay" value="20"/>
          </crystalReportViewer>
        </crystalReports>
      </businessObjects>
    Finally, make sure you have applied SP 1;
    https://smpdl.sap-ag.de/~sapidp/012002523100006555792009E/cr2008win_sp1.exe
    Or SP2:
    https://smpdl.sap-ag.de/~sapidp/012002523100009038092009E/cr2008win_sp2.exe
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup

  • Getting the TOC progress indicator w/o displaying the TOC?

    Hi,
    I want to display the progress indicator (that is, the 00:30 / 06:00 Minutes widget that comes with the TOC) in my Captivate output, but I do not want the TOC. Is there any way to display this type of progress indicator without the TOC (in Captivate 4 or 5)?
    Thanks!

    Abhishek,
    The goods movement will not be allowed without system status release.
    But with user status you can block goods movement even if the system status is "Released".
    Regards
    Kannan G

  • The progress indicator in version 11.0.1.2 does not appear when a song or podcast starts. It may or may not appear during play.

    The progress indicator in version 11.0.1.2 does not appear when a song or podcast starts. It may or may not appear during play. How do I make it appear so I can start a podcast in the middle of the program?

    No errors in error console. No effect using *. I tried using the dns name of my localhost both in the Firefox URL and in the javascript and I get exactly the same. I have spent a huge amount of time looking into this issue.
    One thing I noticed is that if I use the examples on the internet (http://arunranga.com/examples/access-control/preflightInvocation.html or http://saltybeagle.com/cors/) they work in the same browser. These examples however, are accessed through HTTP proxies.
    I am wondering if the issue has to do with using the same hostname just with different ports.

Maybe you are looking for

  • HP laptop won't work

    Hi all you tech savvy people out there I really need help!!! My HP laptop with Windows Vista won't start and has the following message and I don't understand what it means. Boot Device Not Found Please install an operating system on your hard disk Ha

  • Safari not responding when HTTPS connections are unavailable

    I'm using a 13" MBP with 10.7.2 installed, which is setup to sync calendar, address and bookmarks with iCloud. Since last week I've constantly encounter a problem that my Safari 5.1.1 would keep crashing, and I had to delete the ~/Library/Safari/exte

  • Can't get transitions and text in 16:9

    Hi all you helpful! I've edited a project shot in 16:9 and all video looks perfect. However as soon as I try to impose a title, a transition or text iMovie changes the aspect ratio to 4:3 for that particular clip. The same happens when I use still ph

  • Updated to iOS 7.1 and my location arrow won't turn off. It used to. Any ideas?

    Updated to iOS 7.1 and my location arrow won't turn off. It used to. Any ideas? Help would be appreciated!

  • How to implement wait activity in OWB process flows?

    Hi, I am using OWB 10G R1. There is no wait activity in process flows. My scenario is, whenver a trigger file is created, I want to proceed with the process flow. If the trigger file doesnot exist, then I want to put the process flow in a wait state,