Tracking Progress

I have a servlet that is processing about 60,000 records. The query and the processing takes about 10 minutes. Is there a way to somehow have some sort of progress tracker appear in the browser? I've tried using out.write's in the servlet but those don't appear until the servlet finishes.
Thanks,
Karl

You can use DHTML to do this (using DIV tags). Here is the skeleton code...
<HTML> <HEAD>
<SCRIPT>
     function init () {
     if (document.layers) {
     document.waitpage.visibility = 'hide';
     document.mainpage.visibility = 'show';
     } else {
     if (document.all) {
     document.all.waitpage.style.visibility = 'hidden';
     document.all.mainpage.style.visibility = 'visible';
</SCRIPT>
</HEAD>
<body onLoad="init();">
<DIV ID="waitpage">
<center>
     <h2><font color="red"><i>Loading...Please wait.</i></font></h2>
</center>
</DIV>
<DIV ID="mainpage">
<script language="JavaScript">
location.href=('/jsp/finalPage.jsp');
</script>
</DIV>
</body>
</html>

Similar Messages

  • I want to track progress on my building projects with a tick sheet

    Hi All
    I want to use a ticksheet to track progress on my building projects.
    I have between 10 and 15 projects running simultaniously, I would like to prepopulate the ticksheet and give the tick a value.
    So when waking onto a site i would like to just tick work completed then get a % complete and be able to save/output/print etc. with a date stamp.
    example:
                                  Item value     Total value
    setting out                   =1%          1%
    digging trenches           =2%          3%
    Footing                        =5%          8%
    So I will get a grand total% if all ticks are ticked will be 100% if not all ticked the unticked value will be deducted from 100%.
    Hope this makes sense.
    Thank you

    You may wish to repost in iOS apps section for Numbers. Most of
    what you want seems doable; I am not sure about date stamp but
    it may be doable using presence/absence of tick to make date entry
    in a cell.
    There are some very capable people answering questions in that
    forum who should be able to provide a solution. It will probably
    take some setup on your part; but after the initial work, you should be
    able to touch a few cells to get the results you desire.

  • Applicant track progress of application php mysql

    i have been asked if it is possible to make a track progress bar for customers who have made an application to become a member of a website
    basically the user fills in an application form, they then have access to there user page
    i need either a graphic or text progress status
    showing
    application submitted
    deposit recieved
    room reserved
    reference with underwriters
    confirmation of tenancy
    they can then proceed to their userpage
    ideally the customer wants this to be automated but i dont even think this is possible. if this has to be done with radio or check boxes thats not a problem
    is there anything out there that i can do for this

    Hi,
    could you or someone tell me if ADDT supports protection against these methods you mention:
    Protection from dictionary attacks, rainbow table attacks, brute force attacks, SQL injection attacks and much more??
    And can this system work alongside ADDT?
    thanks again

  • Manual tracks progression in playlists

    Hi everybody,
    i'm italian so sorry for my english.
    The question is: I absolutely need to disable the automatical progression of the tracks in a playlist. I want that at the end of any track the playback stops, and then I want to decide when to restart from the next track.
    In winamp this is possible, actually I left windows for mac OS X (10.6), but I really need this option for my work.
    Hopefully that i'll read a solution quickly (before sunday... I know it's late!!!), i thank everybody

    Remove the check marks beside all the songs in the list. Unchecked songs have to be clicked on individually to play them, checked songs will play one after the other. Hold down the Command key (⌘) and click on the check box beside any song in a list and the check marks will be toggled on or off: iTunes for Mac - Keyboard Shortcuts

  • Tracking progress in Project Server 2013

    Hi,
    What is the difference between the two operations:
    TIMESHEET > Send > Send Progress for Selected Tasks
    and
    TASKS > Send Status >Selected Tasks
    Thanks

    Hi Robert,
    The timesheet will be sent including the administrative time to the timesheet manager of the resource. Depending on your configuration, either the timesheet manager can be picked up from a predefined list of users or it could be an attribute of the resource.
    The task updates will be sent to the status managers who is by default the project plan owner (this can be changed). Approving this update will also update the project plan with the actual work.
    See reference below:
    http://office.microsoft.com/en-us/project-server-help/overview-track-your-time-and-task-progress-HA102897420.aspx
    http://blog.cps.co.uk/2013/07/29/timesheet-managers-in-project-server-2013/
    Hope this helps,
    Guillaume Rouyre, MBA, MCP, MCTS |

  • How do I track progress of uploads to iCloud Drive?

    Hello all,
    I've starting backing up my files to iCloud Drive.
    Is there any way to telling what's been backed up or how many files are left to go?
    Regards,
    Simon

    You will see progress bars behind each file or folder that still is syncing, when you browse the iCloud drive folder. Other than that, there is no indication of the upload.
    iCloud Drive FAQ

  • Volume and track progress bar

    So my ipod nano was fine one day but then the next day i plug it in to update songs and now the track status bar and the volume bar at the bottom of the screen are just 5 dots. I can still scan forawrd and backward and change the volume, its just that there is no graphic for either. did i accidentally turn those off? or is it another problem? i would like those bars back. thanks for the help!

    Hi,
    Welcome to Apple Discussions
    Looks like you've got it set on the ratings screen.
    Just press the centre button repeatedly to cycle through the nano display screens.
    Regards,
    Colin R.

  • Track progress when sending or receiving large email

    Hello
    I try to figure out how to get retrieve progress information when sending large smtp emails (to display in a progress bar in Swing). Does anybody know how that works? Every email programm has a progress bar, so should it be possible in java as well.
    Thank for every hint and don't hit me when I overread something in the documentation....
    Yves

    Did you already try to reset your network settings in Settings/General/Reset?

  • Tracking Progress of movie clip

    I have a movie clip playing on the main timeline. I want to
    begin playing a second movie clip when the first one is complete.
    The trick is, I only want to do this using actionscript in the root
    timeline, NOT the first movie clip's timeline.
    Any suggestions?

    start a loop that continually compares your movieclip's
    _currentframe against its _totalframes.

  • Tracking progress of long running scripts

    Hi,
    I have a script that runs for more than an hour. It is a sequential list of queries/counts that produces an output.
    I am finding that I only get the result if the whole script finishes.
    If, for some reason, I have to abort the script, I can not see the results of the queries the script managed to finish.
    I've tried using these methods:
    1) (in a linux shell script)
    sqlplus -s user@database/password @myscript.sql >> mylogfile.txt
    2) (in myscript.sql)
    spool mylogfile.txt
    query1
    query2
    queryX
    spool off
    Is there a way for a list of queries to "pause" and save/commit the output to a logfile and continue with the rest of the script and append the rest of the results?
    I hope someone can help me out.
    Thanks,
    Ian

    Welcome to the forums!
    Based on my experience you should be able to read a spooled SQL*Plus file while it's being written to. Maybe there is some oddity in your particular environment that is preventing that from happening.
    An alternative would be to wrap each SQL statement using spool so you have one result per file. Then if you need to you can concatenate all the files together at the end.

  • LSO - Tracking external learning progress XI

    Hi All,
    I was wondering if anyone had any experience on how to invoke the tracking progress web service for external WBT training in LSO via XI. Currently the client is using multiple external vendors that host external content for training. These vendors do not carry meta data (progress data) on their servers but somehow they are able to communicate with the current LMS system (Which is being replaced by LSO) while the content is playing through the external content player to track their progress. All content is AICC and SCORM compliant content.
    Is there some way in which an external content player can trigger the "Track progress" XI web service?
    Any help or examples of how it was done by you would be very helpful.
    Thanks,
    Max

    Hi Max,
       Kindly let me know whether you got any solution about how to invoke the tracking progress web service for external WBT training in LSO via XI.  if so please share the details.
    Thanks in advance.

  • LSO: Tracking Course progress for SCORM Courses

    How does SAP track progress/placeholders for SCORM-enabled published Captivate projects, that is, if a learner stops playing content part way through, is the learner placed back where they left off when they return?

    Hi Harshal,
    I'm not a Captivate super-user nor a content expert, but it's always important to ensure that the publishing settings are refined to pass the data that is important to the customer (it sounds like you need 'location' in this instance) and that the settings align with the instructional intent of the content.  In other words, help them determine what data they need for functionality and reporting and publish the content to reflect that - not less and also not more, to ensure the optimal amount of data is passed to the LMS. 
    Good luck,
    Sharon

  • Tracking student progress - No LMS

    I am looking for a way to set up a main menu, each of which
    will point to a
    separate captivate swf file ... and when the student finishes
    that module
    and returns to the main menu, something on the main menu will
    change
    indicating that they finished that module.
    So, for example, my main menu will point to modules 1, 2, 3
    and 4. Once I
    complete module 1, and return to the main menu, I will see a
    check mark or
    something next to module 1. If I leave and come back
    tomorrow, I will still
    see that I completed module 1.
    And, if I can do that ... is there a way that I can require
    the students to
    complete the modules in order. So they can't even open module
    2 until module
    1 has been completed?
    I'm used to working in Flash, where I could use the shared
    objects, which
    were stored on the student's computer, to track progress like
    this. But this
    was done using the Actionscript. And I don't know that
    Captivate has
    anything that compares to Actionscript.
    Thanks in advance for any help.
    Marge

    Thanks. I was afraid that was going to be the answer.
    I'm actually capable of doing this in Flash. I've got a Flash
    shell of my
    own that I developed for creating Flash based CBTs. But I
    have a client who
    wants a project done in Captivate, without an LMS. They have
    heard that
    Captivate is a "rapid" elearning tool, while Flash
    development takes more
    time.
    Figuring out how to make Captivate do all the things that I
    can already do
    in Flash is taking the "rapid" out of this for me ... but I
    figure that it's
    a tool I should learn to use.
    Thanks again.
    Marge
    "Erik L. **Community Expert**"
    <[email protected]> wrote in
    message news:[email protected]...
    > To add a little to what John provided...
    > You could 'hack' the SCORM javascript code to redirect
    output to a
    > database, instead of an LMS, and use your menu to query
    that database to
    > find out when to show a checkmark and when to unlock the
    next lesson.
    > However, that's not going to be easy and would require
    some pretty
    > in-depth javascript, html, and database understanding.
    >
    > What we do for such requirements is load the published
    CP files (as .swf)
    > into a Flash-based 'shell' which has the main menu,
    navigation, etc and
    > loads each SWF as a new 'page'. This Flash shell handles
    the progress
    > tracking, unlocking, etc.
    > So that's a possible approach for you as well, though it
    would require
    > just as much Flash knowledge as the first option would
    require JS/etc
    > know-how.
    >
    > We do license our shell so if interested, drop me a line
    at erik at
    > capemedia dot net. There are other such 'Flash-based
    shell' programs out
    > there as well that may provide the functionality you
    need for free! Or
    > perhaps a tool like Rapid Intake's FlashForm would work
    well.
    >
    > Overall, it's either going to require programming
    knowledge, finding a
    > free tool (flash shell or free LMS), or buying a product
    (flash shell,
    > non-free LMS).
    > Erik
    >
    >
    > forums.macromedia.com wrote:
    >> I am looking for a way to set up a main menu, each
    of which will point to
    >> a separate captivate swf file ... and when the
    student finishes that
    >> module and returns to the main menu, something on
    the main menu will
    >> change indicating that they finished that module.
    >
    > --
    > Erik Lord
    >
    http://www.capemedia.net
    > Adobe Community Expert - eLearning
    >
    http://www.adobe.com/communities/experts/
    >
    >
    http://www.awaretips.net -
    Authorware Tips!

  • Trying to Unoptimize a Dedup Volume - Progress stays at 0%

    For various reasons, I'm trying to rehydrate my dedup volumes on a recently deployed File Server 2012 R2.  There's 5 volumes with dedup turned on - savings ranging from 28% to 49%, and the sizes range from 200GB to 2TB.
    I'm running the powershell command: 
    start-dedupjob -volume "I:" -type unoptimization -priority high
    However, after a day, the result of "get-dedupjob" is that the unoptimization type is still running, but shows 0% progress.  Shouldn't there be some indications that the job is running?  I know the job is going to take awhile, but even
    the small volumes aren't moving.
    I also ran "get-dedupstats" and compared the before and after "optimizedfiles" category, and that is unchanged as well.
    Any ideas?
    (Sidenote: prior to running the command, I put the volume folders in the "excluded" folder list so they wouldn't reoptimize after the job was done.  Is this right?)
    There's no error in the event logs, and in the Dedup log files, it shows that the job has started, and requested memory space, but nothing after that.

    I'm seeing this same behavior when running an Unoptimization job - 0% progress made, even though Get-DedupeStatus shows a decreasing number of OptimizedFiles and a decrease in SavedSapce. I thought the job was "broken" when I saw it at first, so
    I stopped the job and ran it again. It seems like Get-DedupStatus is a half decent method of tracking progress, but this job seems to take a VERY long time to complete.
    Just posting this to stay informed of any future updates on the issue, if any... not trying to piggy-back on the post requesting help.

  • Unable to play any tracks from AC/DC in Windows player (currently running 1.0.9.133)

    When I play any track by AC/DC, Spotify comes to a screeching halt. No crash, no hang...just silence. The track progress indicator at the bottom of the screen never moves (like it can't start the track). Despite the play indicator showing that a song is playing, click on it several times to switch back & forth between play & pause changes but it never plays the track(s). If the song is part of a playlist with other artists, my only recourse is to skip the track--and assuming that it's another artist, the music resumes. Going to the AC/DC artist page produces no sounds from my speakers (just lots of mumbling & cursing from me). I am a premium subscriber so I tried playing an AC/DC track from the same playlist on my Android phone. Holy crap, it plays the song from the Android client! Jumping back over to my Windows player...no go :-( So it's not something I've done--at least not obviously...but it seems to remain a problem with ONLY the Windows player! The problem has existed for me ever since AC/DC (finally, yes!) has come on to Spotify & only occurs when playing any of their songs. If there is any additional information that I can provide, I'd be glad to do so. Thank you for the help! --L

    I'm in the US. UPDATE: I figured out what the hell the problem was! When I got home last night, I tried playing AC/DC tracks on my laptop running the Spotify Linux client. It wouldn't play either, however, with the older build it was attempting to reference MP3 files that I used to have locally--it was trying to play files that weren't there! (Slight rant: pre-1.0 releases are better in visually representing which tracks are local & which ones are streamed.) Once I cleaned up the list of what Spotify thought I had locally though, the sweet sounds of AC/DC came out of my laptop :-) So now back on my Windows box, I had to go through a few technical gymnastics to get it to properly update the list of local files that are actually there, but much like the experience on my laptop, AC/DC trans now play properly! tl;dr: Spotify was confused & trying to play missing local MP3s instead of streaming from their servers. Forcing the client to reimport my local files solved the problem.

Maybe you are looking for