IE progress bar continues after Request is completed

I have an iPlanet J2EE Struts web application running in a 6.0.280 IE Browser. I have a JSP page that when submitted, the request is 100% successfully completed. I get the standard "Done" message on the browser bar, the IE globe is not active, and the web page properly displays the expected results. However, the IE progress bar continues to increase up to a point, indicating that more processing is expected or still waiting for a response. That�s the issue. There are 2 JSP�s that make-up this web page. One is an outer page which contains links and filtering options and the other is an inner frame which contains the data on which the submit will act. Although it may not be enough to illustrate this issue, below is a snippet of the both JSP�s. Any suggestions would be appreciated:
Segment of Main JSP code:
( The Javascript method submitDoUpdate() is invoked when the user clicks a �submit� link.)
This method resides in the outer page(main frame/page)
* Submit update
function submitDoUpdate(){
top.main_frame.innerFrame.document.myForm.submit();
The submit will POST the form using the following from the InnerPage(innerFrame/page) and invoke the Struts Action listed.
<FORM NAME=" myForm " action="myAction.do" method="POST">

maybe it's doing something else? are there images in your page?

Similar Messages

  • Progress Bar freeze after 4.2.1 Update - any news?

    Hey Guys,
    any news on the progress par freeze after the installation of 4.2.1 on the iPad?
    After a horrible 8 hours(!) Backup phase, my iPad 3G 32 Gigabyte freezes after the progress bar reaches 80%. I tried to do a hard reset but it would just stuck at the same stage again after rebooting. My iPhone 4 synced just fine (5min. Backup-Phase to the max) and runs 4.2.1 without any hiccups. But the iPad, being once the love of my life, drives me MAD!!!!!
    What did you do? Try to sync it again or just wait some days until the progress bar advances? I`m fed up with OS Updates for now... HEEEELLLLPPP!

    Well, that didn't work. But in the process I cleaned up the folders that house my iTunes movies and music get rid of dupes, stuff I didn't want, and so on. However, I did find that I forgot to uninstall WiFi Sync before trying the upgrade. I downloaded the uninstaller and ran it, rebooted, and did the upgrade. Now my iPad is back. I hadn't realized that I had to uninstall WiFi Sync to upgrade the iPad.....

  • How to monitor (progress bar) a DB request ?

    Hi,
    I developped an application that requests a sybase database.
    I would like to monitor (for instance with a progress bar) the time a request takes, in order to inform the user of the application.
    Does someone have an idea ?
    Thanks in advance, Fred.

    As long as you cannot break down the request into several pieces (an execute them separately), there is probably no way to do this.

  • HT201263 My ipod keeps getting stuck while restoring. There has been no progress on the progress bar even after hours of waiting. Help!

    My ipod touch is having trouble restoring. Ive followed all the steps that have been suggested for restoring trouble shooting.
    I have the latest itunes, tried restoring it on different computers, but it always seems to get stuck when itunes is restoring the ipod.
    The apple icon shows up with the progress bar, but hours later there is still no progress and change in the status. Itunes says waiting for ipod and nothing changes. Im frustrated that nothing seems to help. I really just want to restore it to factory settings so it can work again, I dont even care anymore whether i get any of my old music or photos back. Does anyone have any helpful suggestions? Or know how long it should take to restore?

    Try placing the iPod in recovery mode and then restoreing.
    Next try DFU mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    Last, make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar

  • Blinking Orange Light Continues After Synch Is Complete

    The manual says that when the orange light is blinking "when blinking do not disconnect"
    the blinking orange light stays on continuously after synch with Itunes.
    Is this an issue?

    When you set it to +manage manually+, iTunes keeps the iPod (as a storage device) mounted. Therefore, +enable disk use+ is also checked because that is the setting where you have to formally eject the iPod before disconnecting it.
    If you have it set to sync (uncheck the +manage manually+ setting), iTunes automatically un-mounts the iPod (as a storage device) when iTunes is not syncing. Therefore, you are allowed to disconnect the iPod without clicking on eject first. But if you want to use the iPod as a storage device, you have the option to +enable disk use+ (and use the sync setting)

  • I have a mac book pro still running mountain lion.I haven't powered it on in a few months. now when i try to turn it on all i get is the apple logo and the progress  bar after a few mins. of trying to load my laptop just turns off.can anyone help me

    I have a mac book pro with retina,I haven't turned it on in a couple of months.no problems then, now when I try to turn it on i only get apple logo and progress  bar. After a few mins the laptop just turns off and nothing eles.any help would be appreciated  thanks

    I linked to it above, but here is another link.
    http://support.apple.com/en-us/HT201262

  • Progress Bar after typing in password. OS X Yosemite

    I just updated to OS X Yosemite and it seems to be working fine but is any one else experiencing a progress bar appearing after entering in their password to access their computer?
    it seems like this progress bar should show when the apple logo appears and not after typing in password
    is it supposed to be like this?
    MacBook Pro with Retina Display, OS X Yosemite (10.10)

    After further investigation, it is not the displaying of "Today" files that is the issue.  It appears that Finder / Favorites / All My Files is not correctly finding & displaying files when using the View / Arrange By / Date Last Opened criteria.  If I switch the criteria to / Date Modified, it finds & displays the file correctly.  See attached screen shots.  (It is possible that this problem existed before Yosemite, as I don't recall which criteria Finder was using before the upgrade.)

  • Problem with the progress bar in swings

    Hi all,
    I need to show a progress bar till another window opens up in swings.Below is the code i used to show the progress bar.My problem is i am able to get the dialog box where i have set the progress bar but i cldnt get the progress bar.But after the specified delay,another window gets loaded.
    Plz tell me how to show a progress bar till another window loads.Any help is greatly appreciated :-)
                    //Show the progress bar till the AJScreens loads.
                    // Create a dialog that will display the progress.
                    final JDialog dlg = new JDialog(this, "Progress Dialog", true);
                    JProgressBar dpb = new JProgressBar();
                    dpb.setVisible(true);
                    dpb.setStringPainted(true);
                    dpb.setBounds(70,60,150,10);
                    dlg.getContentPane().setLayout(new BorderLayout());
                    dlg.getContentPane().add(BorderLayout.CENTER, dpb);
                    dlg.getContentPane().add(BorderLayout.NORTH, new JLabel("Progress..."));
                    dlg.setDefaultCloseOperation(JDialog.DO_NOTHING_ON_CLOSE);
                    dlg.setSize(300, 75);
                    dlg.setLocationRelativeTo(this);
                    // Create a new thread and call show within the thread.
                    Thread t = new Thread(new Runnable(){
                        public void run() {
    System.out.println("atleast comes here --->");
                            dlg.show();
                    // Start the thread so that the dialog will show.
    System.out.println("Gonna start the thread --> ");
                    t.start();
    System.out.println("Thread started --> ");
                    // Perform computation. Since the modal dialogs show() was called in
                    // a thread, the main thread is not blocked. We can continue with computation
                    // in the main thread.
                    for(int i =0; i<=100; i++) {
                        // Set the value that the dialog will display on the progressbar.
    System.out.println("i ----------> "+i);
                        dpb.setVisible(true);
                        dpb.setValue(i);
                        try {
                            Thread.sleep(25);
                        } catch (InterruptedException e) {
                            e.printStackTrace();
                    // Finished computation. Now hide the dialog. This will also stop the
                    // thread since the "run" method will return.
                    dlg.hide();regards,
    kani.

    Yeah i have tried that also.But no hope.
    My problem is am able to get the dialog box but not the progressbar,after the specified delay the dialog box goess off and the new window loads up.
    the progress bar is not getting displayed..that is my problem..
    can u plz help me out.

  • Mac OS Mountain Lion Shuts down at Apple logo with a progress bar appearing under it.

    Last Night there were two updates available which i downloaded and after that it asked for a restart, when i restarted the Mac, it gave me a progress bar for the updates at the middle of which it said, Installation of Updates can not be Completed and My mac book froze. After that i Shutdown my Macbook Pro by holding the Shutdown button for a little while.
    When i restarted the Macbook Pro, it gave remained at apple logo for a while then a progress bar appeared after which it shut down itself and it is doing the same since then.
    I have got windows over Boot Camp in my Macbook Pro and i can boot into Windows which is running fine and i can access all the data on my Main Partition through Windows as well but i am unable to boot into Mac os Mountain Lion.
    I have tried Repairing the Partition by going into Recovey and it Fails, I have tried Resetting the PRAM and that hasn't worked either, i have tried re-installing the Mac os Mountain Lion from Recovery but that says that all my Partitions are Locked.
    I haven't got any backup of my data through Time Machine so i was thinking as i can boot into Windows and access the data and as all this is because of the Installation of Updates Failure so there should be some way to manually edit the Boot Files to trick the Mac book into thinking that there weren't any updates or to simply clear the data from Updates.
    Can anyone please help me if you have any better suggestions.

    If it's still under warranty or with AppleCare (even if it isn't, really) take it in to an Apple store.  If you can get at your personal files from Windows, copy them to an external drive first.  That includes anything you have in Windows that you need to keep.  Sounds like the drive is going south and if it has to be replaced, you'll lose everything if you don't have it backed up.

  • Progress Bar visibility issue

    I'm a bit of a newbie when it comes to components, but I'm
    hoping there's an easy answer that I'm simply missing.
    I have 4 nested files, the first and third of which are files
    that contain sections of loadable content (menu pages,
    essentially). I've followed some simple tutorials about how to make
    the progress bars disappear once a file completely loads and all
    seemed to be working fine when I previewed the third file (a
    sub-menu) in the chain, but when I previewed the first file (the
    main menu), the progress bars that were working as they should the
    third file are still visible once its respective files load.
    The error only seems to take place in the first file and only
    in relaton to the progress bars in the third file, although the
    parameters and actionscript for all the progress bars follow the
    same formula. Is there a reason why a progress bar that disappears
    in one file remains visible in a file further up the chain and if
    so, is there any way to correct this?

    Do While Me.txtProgress.Width <> FullLength
        Me.txtProgress.Width = Me.txtProgress.Width + 25
        PercentComplete = (Me.txtProgress.Width / FullLength) * 100
        Me.txtStatus.Caption = PercentComplete & " % Complete"
        Call Pause(Timing)
    Loop
    If Me.txtProgress.Width = FullLength Then
        Me.CmdClose.Enabled = True
    End If
        retval = SysCmd(acSysCmdSetStatus, "Connecting to previous Database")
    For Each tdf In dbs.TableDefs
        If tdf.Connect <> "" Then
        tdf.Connect = ";DATABASE=" & strDatabaseName & (";PWD=zujan")
        tdf.RefreshLink
    End If
        Next tdf
    Screen.MousePointer = 0
    Hi Anuj,
    What I see in your code is that you first have your progress bar run from 0 to 100%, and after that step through the TableDefs to connect.
    I assume you want to increase the progress bar during the connecting process. So you have to merge the two loops. First you count the total number of TableDefs (your 100%), and then increment Me.txtProgress.Width for each tdf in equal steps.
    Instead of building the progress bar on "each" form, you could also make a dedicated progress bar form. At the start of a loop you open the form, and assign the form to an variable of type form (e.g. progr_form):  Set progr_form = Forms("Progress_form").
    This form has the control txtProgress to display the progress bar, a (hidden) control with the maximum number of steps, and a (hidden) control with the current number of executed steps. After the update of this latter control (e.g. progr_form!CurrentCount
    = x), the width of the progress bars is recalculated. After finishing the loop, the form is closed.
    The advantage of a dedicated progress bar form is that you can use the same form for quite different progress displays, under quite different circumstances.
    Imb.

  • Gray progress bar on boot twice now

    I've experienced a gray bar on boot twice now. I upgraded to a 2011 MBP and transferred my 500 GB Toshiba SSD from last year's MBP into the new model, into the SuperDrive slot using a MCE OptiBay (I put the existing SSD into the OptiBay since the SuperDrive's SATA channel is 3Gbps and the Vertex III I have on order is 6Gbps and will use the system's primary SATA channel). The drive has worked flawlessly for a year, and Disk Utility reports no errors, but Googling the issue indicates that the gray progress bar appears when fschk is checking the drive. I've noticed that my wallpaper has been slow to appear on both occasions, defaulting to the OS X default for a few moments after I log in.
    I'm concerned that my drive is going bad, but cannot find any indication that this is the case beyond the intermittent gray progress bar on boot. At least one time after boot the progress bar occurred after a Software Update (Security and Safari). My system's logs also give me no indication what the problem might me. Here is one boot log that resulted in a gray progress bar - https://gist.github.com/922265.
    I'd appreciate any help on the matter. Thanks!

    I would expect either issue to produce a slow boot either time if either package were the problem. Both packages have been installed for a couple of yours without issue. Also, both apps produce these errors on normal boots as well. I wonder if the errors have to do with the fact that the applications weren't installed on the OS, rather they were already present after I put the old HD in the new system and "upgraded" the OS in place using the system disc that came with the new laptop in order to have the Sandy Bridge drivers installed.
    I was hoping you or someone might spot something slightly more definitive in the logs. The time gaps are definitely interesting to me. I think I'll see if I can turn on verbose logging and get any more telling information. Thanks for your help!

  • Dynamic Progress Bar

    I'm creating a page-turning module. Throughout the module
    there is a progress bar that updates both visually and by
    percentage how much of the module has been completed. I'm not sure
    how to program this and help is appreciated. As you can see by the
    mockup I have so far ( below) I've got the progress bar drawn and
    the percentage completed as well as a dynamic text f ield. What I'm
    wondering is how to make it update as the user goes forward (the
    only direction they can go) through the frames.
    http://distance.uaf.edu/mockup/FERPA-mockup-1.html
    thanks!
    sage

    well, you could get the percentage by dividing current pages
    they have been through by the total quantity of pages in the doc
    and multiply by 100. And if this is more dynamic (pages get added
    or taken out) but it's based on 'one frame per page' then you could
    use the _currentframe and _totalframes, within the same type of
    formula to derive the progress percentage.
    you can then advance the 'bar' by: first drawing a bar that
    fills the whole area, at 100%, make it a moive clip, then using the
    calculation you decide on to obtain the percentage, you can use the
    _xscale property, on the 'bar' to scale it to the current
    percentage of progress (set it to 0 at the start).

  • Safari 6 progress bar doesn't include images

    I've noticed this behavoiur on several forums. HTML is loaded and when it ends the blue progress bar beneath url is gone, Safari jumps the the anchor, but the images on page are still loading. I may look like the page is all set so I start scrolling but again when the images stop loading Safari jump again to the anchor which is extremly anoying. I've noticed this behaviour on Mountain Lion. On my mini at work, where I have Lion, everything is fine, so progress bar vanishes after loading whole page with images. Anyone noticed such a behaviour ? Any fix ?

    Carolyn Samit wrote:
    Quit Safari then open the Finder.
    From the Finder menu bar top of your screen click Go > Go to Folder
    Type or copy / paste:   ~/LIbrary/Caches/com.apple.Safari
    Click Go then move the Cache.db file from the com.apple.Safari folder to the Trash.
    Relaunch Safari to test.
    That didn't fix it. Have you experienced my problem or did you just offer a common solution to any Safari problem?

  • Macintosh HD greyed out and shut down after progress bar complets

    Hello everyone, after i manually closed my macbook by holding the shut down button for 5secs due to an application crush, my macbook pro doesnt seem to be able to boot anymore. It executes the progress bar under the apple  icon on the screen (trying to repair my hd) and after it completes the process, it shuts down. When i press cmd+R, i can see from disk utilities the 500GB hard drive and the macintosh hd. The 500GB total hard drive is normal (even with no problems to fix after running verify and repair) but the Macintosh HD-part is greyed out and verify/repair fail with an error when i click on them. What should i do? i dont think its a hard drive failure. At least, how can i back up my system or some files? from disk utilities the new image function should be executed for the macintosh hd partition and not for the parent 500GB hard disk in order to make a backup, right?

    1) In a Finder window, select the Macintosh HD. Can you see the contents? If yes, you can select to drag over files.
    2) Download SuperDuper (free) When it opens does it recognize the internal drive in the popup? If yes, you will need to make a second portion on your external drive for the clone of your internal drive.
    3) If you can't see the contents or the drive in Finder or SuperDuper then you will need to download and run Mavericks over the internal drive.

  • TS1884 How do you cope with a system that shuts itself down after a safe boot progress bar is completed?

    How do you resolve a problem with a system that shuts itself down after a safe reboot and when the progress bar is completed? Thanks.

    Thanks for you response - the honest answer is I don't know, not being particularly IT literate. I do know however that I'm running Maverick if that is of any help?
    I also tried the Command R route, along with holding some other keys as per the Apple troubleshooting guide, but no luck. My wife pointed out though that the system was running slowly over the last few days and we had quite a lot of the 'spinning beach ball' before being able to undertake tasks.
    Lastly, I inserted my start up disk bit as the system is unable to start I'm now unable to retrieve it. All-in-all a real pain.
    Appreciate any advice. Many thanks.
    Philip

Maybe you are looking for