Vote here for decreasing cold start time...

Please vote or add a comment here if you would like the option of preloading the JVM to decrease cold start times for applets and applications:
http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6346341
Thank you.
Dennis Klotz

Pre-loading the JVM will increase the boot time of my
machine.
Can't you think of a workaround yourself? If you have
your machine run a small Java application at boot
time, it will already load the JVM.The RFE states that this will be an "option".
So in your case you would never turn the option on....
But to answer your question, this isn't a single user running into a problem. If it was then your solution would make perfect sense. In our case we are talking about a product that goes out to customers and I need a solution that is a bit more professional. :)
-Dennis

Similar Messages

  • Splitting JARs for faster applet start time

    Hi.
    I have a remote web client downloading an applet (packaged in a single JAR) from the server.
    Problem: JAR file is 3.5MB and takes quite a time to get server->client over dial-ups.
    Need: Some way of reducing initial startup time for the applet so the user doesn't have to wait 10min before seeing anything.
    Here are the options I see so far...
    Option 1
    Split the JAR file into smaller JARs, the 'main JAR' has the applet GUI stuff and the 'extension JARs' have the applications launched from applet.
    Option 2
    Some way of 'dynamically loading' the classes from server either 'as needed' or automatically in the background, after the main applet GUI is loaded.
    Option 1 I have tried but it seems that the applet actually does NOT start until ALL the JARs have been downloaded. Which doesn't really help reduce anything.
    Option 2 I need a way of implementing?
    Any help would be appreciated.
    Taha
    [email protected]

    3.5mb jar?????
    What you are packing into the file?
    You should look into using Java WebStart -- it will download the applet and keep it locally for the subsequent use (doing away with having to keep downloading it).
    ;o)
    V.V.

  • Vote here for native Twitter app from Nokia

    Maybe this helps
    Reply if u want, like me, a high-quality Twitter application from Nokia on all our Nokia's (especially E series !

    Well,
    Gravity costs money. And currently i think Nokia's biggest challenge is SOFTWARE. Nokia's software offering is fragmented and poor (Ovi store is a nice improvement, but it's filled with too much useless content right now).And i really hate the fact that sometimes new features are only added on new phones .. and not backwards implemented. Lifecycle of hardware and software support is too short. 
    I want a phone with some nice usefull pre-installed software on it .. that is inspired by the web as it is today.

  • Having program wait for a period of time

    I have a program that I am creating that will need to paint something to the panel every few seconds. I have some code like so:
    public void paintBar(Graphics g, Graphics2D g2)
              for(int i = 0; i < 325; i++)
                   //draw a rectangle
                   double leftX = 36;
                   double topY = 76;
                   double width = i;
                   double height = 48;
                   double test = 100;
                   Rectangle2D rect = new Rectangle2D.Double(leftX, topY, width, height);
                   g2.setPaint(Color.yellow);
                   g2.fill(rect); //fill rectangle with color
                   g2.setPaint(new Color(204, 204, 153)); //change paint to background color for erase
                   eraseMessage(g);
                   calculatePercentage(i);
                   g2.setPaint(Color.black); //change paint color back to black for message
                   printMessage(g);
    //NEED TO WAIT HERE FOR A PERIOD OF TIME
    //THEN CONTINUE WITH LOOP.
    The problem that I am having is that I tried to use different wait() meathods and it seems to get to the wait meathod and just freeze. The painting is never done until the wait command is complete and then the all of the painting is totally finished. I never see it progressing.
    Any ideas?
    Thanks

    You could use a scheduled event...
    public void run() {
         Timer timer = new Timer(false);          // Create Timer
         class Refresh extends java.util.TimerTask {     
              // Create repaint event
              public void run(){repaint();}
         timer.schedule(new Refresh(),0,10);     // Schedule repaint
    }Call this when you run your program, and place all your paint and update methods into a paint(graphics g) method.
    Then, the timer will continuously run repaint repeatedly.
    You can then insert a single event timer (i don't know how off hand, but they are in the API under Timer events), that kills the origional event timer after X ammount of time.

  • OMS Start Time

    Hi,
    I wonder if there is a way, either on the OMS server or at the backend repository database, to find out the last time that OMS was started. When I use emctl status oms -details it does not give the timestamp at which the current OMS was started. But when you do for an agent (emctl status agent) you do get such information for the agent start time.
    OMS Status:
    >./emctl status oms -details
    Oracle Enterprise Manager Cloud Control 12c Release 2
    Copyright (c) 1996, 2012 Oracle Corporation.  All rights reserved.
    Enter Enterprise Manager Root (SYSMAN) Password :
    Console Server Host        : omsserver.mycompany.com
    HTTP Console Port          : 7778
    HTTPS Console Port         : 4444
    HTTP Upload Port           : 4889
    HTTPS Upload Port          : 1159
    EM Instance Home           : /u01/app/oracle/product/MiddleWare/gc_inst/em/EMGC_OMS1
    OMS Log Directory Location : /u01/app/oracle/product/MiddleWare/gc_inst/em/EMGC_OMS1/sysman/log
    OMS is not configured with SLB or virtual hostname
    Agent Upload is unlocked.
    OMS Console is unlocked.
    Active CA ID: 1
    Console URL: https://omsserver.mycompany.com:4444/em
    Upload URL: https://omsserver.mycompany.com:1159/empbs/upload
    WLS Domain Information
    Domain Name      : GCDomain
    Admin Server Host: omsserver.mycompany.com
    Agent Status:
    >./emctl status agent
    Oracle Enterprise Manager Cloud Control 12c Release 2
    Copyright (c) 1996, 2012 Oracle Corporation.  All rights reserved.
    Agent Version     : 12.1.0.2.0
    OMS Version       : 12.1.0.2.0
    Protocol Version  : 12.1.0.1.0
    Agent Home        : /u01/app/oracle/product/agent12c/agent_inst
    Agent Binaries    : /u01/app/oracle/product/agent12c/core/12.1.0.2.0
    Agent Process ID  : 11230
    Parent Process ID : 11013
    Agent URL         : https://agentserver.mycompany.com:1831/emd/main/
    Repository URL    : https://hlcnwoemp01.mycompany.com:1159/empbs/upload
    Started at        : 2013-08-31 12:45:55                                                            <===== Start time
    Started by user   : oracle
    Last Reload       : (none)
    Last successful upload                       : 2013-11-25 15:08:10
    Last attempted upload                        : 2013-11-25 15:08:10
    Total Megabytes of XML files uploaded so far : 552.38
    Number of XML files pending upload           : 0
    Size of XML files pending upload(MB)         : 0
    Available disk space on upload filesystem    : 47.17%
    Collection Status                            : Collections enabled
    Heartbeat Status                             : Ok
    Last attempted heartbeat to OMS              : 2013-11-25 15:07:46
    Last successful heartbeat to OMS             : 2013-11-25 15:07:46
    Next scheduled heartbeat to OMS              : 2013-11-25 15:08:46
    Agent is Running and Ready
    Thanks!

    Console > Setup > Manage Cloud Control > Management Services
    In the table click the name of the management service
    Oracle Management Service (Drop-Down) > Monitoring > Status History
    General section has got information about since when the OMS is up

  • My G4 desktop won't  cold start. I have to plug in to the outlet for about 15 minutes every time. Can anyone explain why?

    My G4 desktop won't cold start. I have to plug in to the outlet for about 15 minutes every time. Can anyone explain why? Otherwise, the desktop runs fine.
    The battery is new, and I zapped the little button on the main board once. I've noticed that the power supply plug is a little longer than the usual one for G4, and the AGP slot has an extra slot, which is black and about half inch long.

    Hi Ursula,
    the AGP slot has an extra slot, which is black and about half inch long.
    I believe that is for ADC Monitor power if you had one, or a card with ADC, like the little tab on this one...
    I think your startup problem is bad capacitors in the power supply or on the logic board, and the need to bleed off their charge before they work right to start.

  • Mail asked for a password each time it starts

    I've used gmail (IMAP) for several months with no problems, until recently. Now Mail asks for a password each time it starts, then again when I try to send a mail. Despite re-entering the password and checking the box for the password to be stored, I'm prompted again the next time I re-start Mail.
    I've tried several remedies described here in support discussions including:
    1. delete the imap.gmail.com and smtp.gmail.com entries in the keychain then re-enter the password via Mail.
    2. run keychain first aid.
    3. manually enter the passwords in keychain
    4. use disk utility to repair all permissions
    None of the above remedies have worked for me.
    With some trial and error, I've discovered that setting Access Control for the two Keychain items (imap.gmail.com and smtp.gmail.com) to "Allow all applications" (rather than the default "Confirm before allowing" with "Mail" as the listed application) does work.
    So it appears that Keychain allows Mail to store the passwords but then does not allow Mail access to retrieve the stored passwords once Mail is restarted when "Confirm before allowing" is set.
    Although now I have a "Work-around", does anyone have an idea of what's broken and how to fix it? Thanks.

    OK. I tried the "Keychain Reset" and it did not work. The reset created a blank keychain file. I entered the mail passwords after starting Mail.app, then quit Mail. When I restarted Mail.app, it prompted again for the previously entered password. No change.
    The clue to the problem is the current "work around". If I set "Allow All Applications" the Keychain allows Mail.app to use the stored passwords. Of course this defeats part of the security.
    So Far...:
    I've tried several remedies described here in support discussions including:
    1. delete the imap.gmail.com and smtp.gmail.com entries in the keychain then re-enter the password via Mail.
    2. run keychain first aid.
    3. manually enter the passwords in keychain
    4. use disk utility to repair all permissions
    5. reset Keychain Access.
    None of the above remedies have worked for me.

  • Takes long time for songs to start playing

    I have window 7. I have problems when i try to play a song it takes a long time and it displays on the screen " loading URL". Why does it take so long. I have trie itunes versions 8-10.5. The only itunes that it doesn't happen in is itunes 7. Itunes also freezes up sometimes. Thanks in advance.

    Hi,
    To troubleshooting this issue, please install Windows Performance Tools (WPT) Kit. The Windows Performance Tools (WPT) Kit contains performance analysis tools, and is designed for analysis of a wide range of performance problems including application start
    times, boot issues, deferred procedure calls and interrupt activity (DPCs and ISRs), system responsiveness issues, application resource usage, and interrupt storms.
    To get the installer, you have to install the Windows 7 SDK.
    Microsoft Windows SDK for Windows 7 and .NET Framework 3.5 SP1
    http://www.microsoft.com/en-us/download/details.aspx?id=3138
    For shutdown tracing:
    Run command:
    xbootmgr -trace shutdown -noPrepReboot -traceFlags BASE+CSWITCH+DRIVERS+POWER -resultPath C:\TEMP
    Collect logs and post them for further troubleshooting.
    For more information please refer to following MS articles:
    Long Shutdown Time on Windows 7 Ultimate x64
    http://social.technet.microsoft.com/Forums/en/w7itproperf/thread/11a42a93-efd2-4184-9ce8-bbc1438b7ea6
    Long shutdown time on Windows 7 64 bit laptop
    http://social.technet.microsoft.com/Forums/en-US/w7itproperf/thread/4440fc6e-c81e-440c-9183-9b7e176729d2
    Lawrence
    TechNet Community Support

  • If I have manually set "Start Time" and "Stop Time" for songs, and my hard drive is backed up in Time Machine, when files/songs are transferred on new hard drive, will my "Start Time" "Stop Time" options be there?

    My Macbook Pro will be going in for reimaging and my hard drive will be wiped, I want to know if all my iTunes preferences will be copied if I have backed them up on Time Machine. Specifically, if I have set certain "Start Time" and "Stop Time" for my songs, and I copy my iTunes library, will these "Start Time" and "Stop Time" options remain or will I have to manually set them one by one once again? I need a reply ASAP! Thanks so much!

    As far as I'm aware the start & stop times are stored in the library database, not the media files. If you backup/restore/transfer the whole library then the settings are included. If you create a complete copy of your iTunes folder on another drive you can connect to that copy by holding down option/alt as you start iTunes so you can check that everything is working properly before you send the Macbook away.
    tt2

  • Does anyone know how to set the starting time for an audio book?

    I am trying to restart a burn in iTunes that failed for an audiobook. I need to set the start time so it will not have to reburn the disks that were already completed. I cannot find out how to do that in version 11 if the book consists of more than one file. Anyone have an idea how to do this? Apple wants me to pay $20 for something that should be in the help menu.

    UCCX 5.0(2)SR02 is the version
    I attached a screenshot of what I am trying to use but I am not sure what to put as the value?  I tried using "now" and "null" but no success.

  • My lap top is extremly slow. It studders. It kind of sounds like there is a fan inside and it constantly stopping and starting. And, it takes a really long time for it too start up. Whats wrong with it?

    My lap top is extremly slow. It studders. It kind of sounds like there is a fan inside and it constantly stopping and starting. And, it takes a really long time for it too start up. Whats wrong with it?

    Do you have current backups?
    Those symptoms could indicate a failing Hard drive. If it dies, all your documents go with it unless you have Backups.
    I have had very good luck with physical and battery problem diagnosis at the Genius Bar. Those guys put their hands (and their ears) to these machines, all day every day, and they know immediately what all those sounds mean.
    Your appointment for an evaluation is FREE, in warranty or out.

  • How to Set A Default Start Time For New Events In Calendar?

    How to Set A Default Start Time For New Events In Calendar?

    John,
    Thanks for that suggestion - could not get it to work. However, I did manage a different approach. I finally determined the sequence of events in terms of how the various events and listeners fire (I think).
    Basically, the CalendarActivityListener fires, followed by the listener associated with the Calendar object's Create facet, followed finally by the CalendarEventListener - the final is where the TriggerEvent is available and then finally, control is passed to the popup/dialog in the Create facet. So, my approach of trying to set/get the TriggerDate in the user's HTTP session was doomed to failure because it was being get before it had been set :(
    Anyway, I ended up adding a bit of code to the CalendarEvent listener - it grabs the current BindingContext, navigates through the DCBindingContainer to derive an Iterator for the ViewObject which drives the calendar and then grabs the currently active row. I then do a few tests to make sure we're working with a "new" row because I don't want to alter start & end dates associated with an existing calendar entry and then I define the Start and End dates to be the Trigger Date.
    Works just fine. Snippet from the listener follows
    BindingContext bindingContext = BindingContext.getCurrent();+
    *if ( bindingContext != null )    {*+
    DCBindingContainer dcBindings = (DCBindingContainer) bindingContext.getCurrentBindingsEntry();+
    DCIteratorBinding iterator = dcBindings.findIteratorBinding("EventsView1Iterator");+
    Row currentRow = iterator.getCurrentRow();+
    if ( currentRow.getAttribute("StartDate") == null)+
    currentRow.setAttribute("StartDate", calendarEvent.getTriggerDate());+
    if (currentRow.getAttribute("EndDate")==null)+
    currentRow.setAttribute("EndDate", calendarEvent.getTriggerDate());+
    *}*

  • Function Module for Start time and End time

    Hi Experts,
    I need a function module for getting particular Work schedule rule start time and endtime and further details by passing personnel number and day.
    Thanks in advance.
    Sunil

    FYI - https://forums.sdn.sap.com/click.jspa?searchID=-1&messageID=5338428
    Thanks,
    SK

  • Delaying start time for Nokia 925 Aps?

    Is  it possible,  delaying start time for Nokia 925 Aps? For. egzample, Night watsch (uses a lot of batteries).
    I need to be visible from 5:00. Is it possible, make it automatic startup 5:00?

    hi mate, sorry to hear about your experience. in this case, the fault may lie with the Nokia Care point's handling of your device. in this case you will need to persist with them until they either fix it or issue you with a replacement. else if they are not being conducive to the matter, then you will need to take up the issue with head office of Nokia in your region.

  • Why are the options for "When Firefox starts" NOT clickable in Firefox 5? I want to choose "Windows and tabs that where opened last time you accessed the net" but Firefox won't let me.

    In the previous version of Firefox one could choose to save tabs so that when Firefox opened, all the tabs from the previous sessions appeared. This was done in Settings > Options > General > Startup. In the menu for the "When Firefox Starts" one had the option for "Windows and tabs that where opened last time you accessed the net." in Firefox 5.0, this menu is gray and not clickable. Help, please?

    ''Why are the options for "When Firefox starts" NOT clickable in Firefox 5?"
    Possibly you are not saving your "browsing history" which is what the session history is tied into.
    '''Not saving History''' -- check your settings for '''Tools > options > Privacy'''', make sure you are not clearing more than just cache in "Settings for Clearing History"
    * http://img232.imageshack.us/img232/4928/clearcachew.png
    * clearing your history at end of session, cache is the only one you would want to clear at end of session, if you don't want to lose things
    There are several things that are related to private browsing and not saving History
    * Private Browsing Ctrl+Shift+P
    * You selected "Never remember history" in first drop-down of Tools > Options Privacy and all of the check marks disappear (See picture above)
    * "Permanent private browsing mode" was check-marked under "Use custom settings for history" in the first drop-down of Tools > options > Privacy (see picture above)

Maybe you are looking for

  • TS1906 How do I delete a calendar in iCal?

    I no longer own a Mac 4G tower as the product info suggests but am using and iMac with Lion. I can't seem to delete unneeded calendars and can't print a birthday calendar with only birthday info including. I am becomimg increasingly frustrated with t

  • Unable to repair failed Vista installation

    I have an Acer desktop PC running Vista Home Premium which is refusing to boot with the following symptoms: When I try to boot normally I get as far as the Windows loading screen with the moving bar, after that the screen goes black apart from the po

  • Af:treeTable: how build tree that displays multiple columns?

    I only find a default single column behavior in the dev guide regarding af:treetable. Perhaps some of you might have already tried this out, I'm trying to build a master detail using a treetable with multiple columns. After establishing the ViewLink

  • How do I download adobe flash player for ipad

    How do I download adobe flash player for ipad?

  • Dealing with Popup messages in webdynpro in ECC 6.0

    THe backend R/3 has lots of custom popup box ( in user exits ) requesting the user to make a decision. This popup alerts ends up in dumping java error while executing transactions in Portal webdynpro transactions ( create expense report ) Any idea ho