SunRay issue with Beehive Online web page display

I've noticed that when accessing the [Beehive Online web pages| https://beehiveonline.oracle.com/index.html] from a SunRay often results in loss of some of the page formatting and/or a problem loading page error:
"The connection was reset
The connection to the server was reset while the page was loading.
The site could be temporarily unavailable or too busy. Try again in a few
moments.
If you are unable to load any pages, check your computer's network
connection.
If your computer or network is protected by a firewall or proxy, make sure
that Firefox is permitted to access the Web."
<Try Again>
Clicking the 'Try Again' button usually never works - a shift/reload of the page and/or clearing the cache is usually what it takes to get the page to display again. The loss of background formatting happens more often, and again only is fixed by shift/reloading the page.
In doing a test before posting this thread, after receiving the 'problem loading page error', I did a shift/reload to display the page. But then every link I clicked on from the https://beehiveonline.oracle.com/index.html navigation resulted in the same error, forcing me to do the shift/reload on every page! I could only get this behavior to quite by going into preferences and clearing my cache. Then I started seeing the loss of the background formatting!
This problem appears to be only from a SunRay (using FF 6.0.2, but this also occurred using FF 3.6). I pulled up FF 3.6.18 as well as IE 9 on my Oracle laptop (Windows XP), and clicked through the various Beehive Online pages multiple times, and did not experience any format loss or page load problem.
Is there a fix for these issues on SunRay?
Thanks,
Marjie

Still seeing this issue on SunRay. I posted a couple of screenshots in my public documents folder on our team BOL workspace - hopefully you can view them for an examples of what I'm talking about:
loss of formatting
connection reset error
Edited by: MWake on Oct 10, 2011 8:08 AM

Similar Messages

  • Hi, I'm having problems with viewing a web page created with Adobe Muse CC latest release, I followed the various guides provided by Adobe, but the problem persists. The problem especially concerns the distorted display (the contents do not fit on the pag

    Hi, I'm having problems with viewing a web page created with Adobe Muse CC latest release, I followed the various guides provided by Adobe, but the problem persists. The problem especially concerns the distorted display (the contents do not fit on the page, so it suits size automatically) to a mobile web page to be displayed not on a normal browser, but in a WebView.

    Hi, I'm having problems with viewing a web page created with Adobe Muse CC latest release, I followed the various guides provided by Adobe, but the problem persists. The problem especially concerns the distorted display (the contents do not fit on the page, so it suits size automatically) to a mobile web page to be displayed not on a normal browser, but in a WebView.

  • I'm experimenting some issues uploading barclays bank web page with safari

    I'm experimenting some issues uploading barclays bank web page with safari

    What issues are you having, and with which OS X & Safari version ?. Do provide a link to a page that causes problems.

  • Printing from web pages is excruciatingly slow with most recent upgrades of Firefox .Use an iMac and an HP officejet printer. Printer works fine with Safari and woodprocessed files, but not with Firefox and web pages.

    Printing from web pages is excruciatingly slow since downloading most recent upgrades of Firefox Mozilla. I have a desktop iMac, OS 10.6.8, and an HP officejet printer 4500 G510n. The printer works fine with the Safari Browser and with woodprocessed files, but not with Firefox and web pages. Help please! It used to print fast with earlier versions of Firefox.

    Hello and welcome to the Apple Discussions Forum.
    I have hardly any experience with HP printers but since your posting has not been replied to yet I thought I'd offer some assistance.
    With the printer status and ink levels working, it shows that you have a connection to the printer. So I would look at the issue being with the protocol being used for the print queue on the Mac.
    Since you have XP and Vista working, I would check the printer queue configuration on either box. In XP, go to the Properties and select Ports. Click the Configure Port tab to view the connection. If you are using RAW, then this is known as HP Jetdirect-Socket on OS X. So if you are not sure what protocol was used before I would create another printer queue, this time selecting IP > HP Jetdirect-Socket. Then enter your IP address and select the K5400dn from the Print Using menu.
    If this still fails to print then please reply. There may be limitations with adding the HP driver this way that I am not aware of. There may also be other driver options you can look at, such as HPIJS. If Greg Sahli reads this posting he has expert knowledge on this matter and will be able to offer some guidance.
    PaHu

  • How to publish a web page displaying a JFX app ?

    Hello (again '-_-) !
    I'd like to create a web page displaying a JavaFX application.
    When I launch the html file generated by NetBeans in the dist folder, It works perfectly, but when I put the same files (.html and .jar) on a webserver, the app never starts... I only get the Java image-loading spinner.
    Is there something else to do to plubish a web page displaying a JFX application ?
    Best regards,
    Cereal.

    Ok, so i read the "10 minutes tutorial" and i think that my files are ok :
    DemoFFE_browser.jnlp :
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+" codebase="http://xxx.xxx.xxx.xxx/camera/ffe/" href="DemoFFE_browser.jnlp">
        <information>
            <title>DemoFFE</title>
            <vendor>fjeannet</vendor>
            <homepage href="http://xxx.xxx.xxx.xxx/camera/ffe/"/>
            <description>DemoFFE</description>
            <offline-allowed/>
            <shortcut>
                <desktop/>
            </shortcut>
        </information>
        <resources>
            <j2se version="1.5+"/>
            <extension name="JavaFX Runtime" href="http://dl.javafx.com/javafx-rt.jnlp"/>
            <jar href="DemoFFE.jar" main="true"/>
        </resources>
        <applet-desc name="DemoFFE" main-class="com.sun.javafx.runtime.adapter.Applet" width="176" height="144">
            <param name="MainJavaFXScript" value="demoffe.Main">
        </applet-desc>
    </jnlp>DemoFFE.html :
    <html>
    <head>
    <title>DemoFFE</title>
    </head>
    <body>
    <script src="http://dl.javafx.com/dtfx.js"></script>
    <script>
        javafx(
                  archive: "DemoFFE.jar",
                  draggable: true,
                  width: 176,
                  height: 144,
                  code: "demoffe.Main",
                  name: "DemoFFE"
    </script>
    </body>
    </html>The java console still displays this message
    exception : null.
    java.io.FileNotFoundException: JNLP not available: DemoFFE_browser.jnlp
         at sun.plugin2.applet.JNLP2Manager.loadJarFiles(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Exception : java.io.FileNotFoundException: JNLP not available: DemoFFE_browser.jnlpAll my files (DemoFFE.jar, DemoFFE_browser.jnlp and DemoFFE.html) are in the same directory.
    Does somenoe know where to set the path of DemoFFE_browser.jnlp ?

  • How do i set firefox to open a new tab with a specified web page..?

    Ive just installed firefox 5, and when i open a new tab, it open with a blank page. My previous version of firefox opened with my most visited pages as thumbnails. Can i revert to this setup, or can i set firefox 5 to open a new tab with a specified web page e.g google news...?

    No this isnt the problem. I want it to open a new tab with Google Search page and not with the big showcase of all my other pages.

  • Whenever I open firefox a add ons screen comes up with the yahoo web page behind it. . I just want the Yahoo web page and do not want to close the add ons page every time I use my computer.

    Whenever I open firefox a add ons screen comes up with the yahoo web page behind it. . I just want the Yahoo web page and do not want to close the add ons page every time I use my computer.
    I don't know what else to say about this. It is a screen that comes up in its own window everytime I open Firefox

    Please check your home page setting and see if about:addons is listed. If it is, please remove it
    https://support.mozilla.com/en-US/kb/How+to+set+the+home+page

  • Photoshop batch production - issues with 'save for web'

    Hi,
    I'm having an issue with 'save for web' on a batch. I've just spent the last 2 hours searching the web and this forum and although the issue gets touched upon, the threads either suddenly head off in another direction, end, or i just struggle to make sense of the answers given.
    I have 350 images that i want to resize to thumbnails and then save for web. 2 hours ago this seemed like a 5 minute job.
    I creat an action called 'batch_thumbnail' and press 'Record'.
    I then select 'File' > 'Open' and select an image to open using the dialog box.
    I then select 'Image' > 'Image Size' and resize the image to the thumbnail size (200 x 125) and press 'OK'.
    I then select 'File' > 'Save for Web and Devices', set my optimisation settings and press 'save'.
    Using the dialog box that pops up, i navigate to a pre-created directory called 'thumbs' and press 'save'.
    I then select 'File' > 'Close' and on the dialog box that pops up i select 'Don't Save'.
    I then stop the action from recording.
    So far so good.
    I then select 'File' > 'Automate' > 'Batch...' and the dialog box appears.
    I select my action in the 'Action' drop down menu.
    In 'Source' i set the drop down menu to 'Folder', select 'Choose' and select the target directory with my 350 images in.
    In 'Destination' i set the drop down menu to 'Folder', select 'Choose' and select the target directory (thumbs), where i wish to save the thumbs.
    In 'File Naming' i leave the first box as 'document name', set the second to '_thumb' and have the third as 'extension'.
    I then click 'OK'.
    And this is where the problem begins. Everything works fine till it trys to save the second image. I can see what's happening, as the directory path and image name that are used whilst setting up the SFW part of the action, are getting hardcoded into the action. So every resulting image is being saved as the same file, instead of being overriden by the settings in 'File Naming'.
    I've tried selecting 'Override action 'Save' command', but it doesn't make any difference. Is it actually possible to batch produce files using 'Save for Web and Devices'?
    Cheers,
    James

    I have written a couple of Save For Web batch processors, they may be of use to you?
    They can both resize and run an action if required.
    CS2-CS3 http://www.ps-scripts.com/bb/viewtopic.php?t=2374
    CS4 http://www.ps-scripts.com/bb/viewtopic.php?t=2276 (This handles metadata)

  • Issue with Master Detail OAF Page

    Hi Friends,
    I have an issue with the Master-Detaiil Page.
    I have developed a Master-detail form in OAF similar to the one in Oracle Forms. The master details are appearing fine. I have created a transient variable selectFlag that represents if the master record is selected. I am also able to see the detailed records after I have written the code in CO to populate the details table when a master is chosen.
    But in the detail table I am seeing all the records. I should be able to see only the records that are children for the master record.
    I have created the ViewLink as well. How can I pass the id of the master record to the detail table.
    Any ideas. Kindly help.
    Thanks

    Hi,
    Are u using partialAction on master form for this ?
    You can add parameters from property inspector and put some unique attribute from VO and later filter the details record based on that.
    --Sushant                                                                                                                                                                                                                                                                                                                                                                                                                               

  • RDP Users seeing display issues with SharePoint Online Template

    I originally posted this in the SharePoint Online forums, but they referred me to the RDP forums as it appears to be an issue with RDP, not SharePoint Online: Original
    Post
    I've been able to verify this only happens in RDP when opening a Word Template with embedded Excel table  from SharePoint Online within the local Word 2010 application.

    Amy,
    Thank you for the input.  Its rather odd, but it appears the users who are seeing this problem are connecting via RDP on laptops with widescreens, with screen resolution set much higher than the 1290x1084 we use on the terminal servers.  Turning
    the resolution down on the laptops did keep the table from becoming oversized and most of it running off edge of document.
    However, it appears even turning down the resolution of the client machine still affects how the font is displayed in the document. The font size and type are different than the template document, they get saved that way and appear that way to other users
    who do have their screen resolution set correctly.   It seems there is something else going on here, thoughts?

  • Im having a problem with Firefox opening web pages that i have set as my home page such as Google also will not open Yahoo but will open most bookmarked pages

    After starting Firefox the Firefox homepage comes up with the google search, but if i enter anything in the search bar, nothing happens it just says done. Also my homepage is Google, imported from Internet Explorer, but doesn't come up when i start Firefox, And Also at the top on the tab it just says untitled. Now with that being said if i enter in yahoo or yahoo.com in the search tab or even enter in the actual web address, it still doesn't open it just says done at the bottom of the page and nothing happens, But if i go to the Bookmarks also imported from Internet Explorer it will open or display most all of the web pages it just seems to be having problems with search engines such as Google, and Yahoo. Now if i enter Ask.com in the web address search tab it will open that page but if i enter Google.com or Yahoo.com nothing. Also like i said most all bookmarks will open but yahoo or my yahoo that is saved in Bookmarks will not. and nothing happens with any entry made into the Google search displayed on the the Firefox Start Page.

    Hi,
    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

  • Embedding Crystal Reports with parameters in web page

    Hi,
    I have created a sample report file and configured it with a parameter field. On embedding this report file in the web page, as expected I am prompted to enter value for the parameter. After entering value and clicking OK, CrystalReportViewerServlet delegates the call to the custom JDBC connector implementation which is the data provider. However, the web page doesnu2019t show the retrieved resultset but shows a page with some text like this:
    {"update":{"children":[{"children":[
    {"args":{"curPage":1,"numPages":"1"},"cons":"bobj.crv.newSelectPageControl"},{"args":{"searchText":""},"cons":"bobj.crv.newSearchTextControl"}
    ],"cons":"bobj.crv.newToolbar"},{"args":{"displayDrilldownTab":true,"initTabIdx":0},"children":[{"args":{"isMainReport":true,"label":"Main Report","viewStateId":"1"},"children":[{"args":{"content":"\r\n 
    On debugging I could see, that the parameter value from the prompt is correctly passed from the CrystalReportViewerServlet to the custom Connector (i.e., the sql query is updated with the parameter value) and the connector fetches the data also.
    I also tried embedding another .rpt file with few parameter fields configured (where user input values are just passed to the details section of the report for display). However on running this web page also I get the same error.
    Report files with no parameter fields configured are working fine when embedded in web page.
    Any thoughts would be appreciated.
    Regards,
    Ria

    I would take a look at running our simple [sample application |http://www.sdn.sap.com/irj/boc/index?rid=/library/uuid/307224d2-3d11-2c10-fe86-d87bab901bee&overridelayout=true]that views reports to see if you have the issue there.

  • Help with using a web page from disk after saved from web

    Hi, I almost forgot the little I learned about web page development, so, I'm a total noob when it comes to this and I need your help.
    I saved as a complete web page on my hard disk this web page but when I open it in Firefox or IE, it doesn't display as much as I need it. I'm mostly interested  in displaying the logo images as they appear on the original web page. The browsers just show them briefly when refreshing but hide them right away. I can see the image files downloaded to my hard drive and if I open the page in Dreamweaver it displays these images  in the preview pane but I can't make them show in the browsers. From Dreamweaver I saved the page as in the folder where the images are and this also updated the code with the relative image links but the browsers still don't show them.
    I will greatly appreciate your help with this.

    I'm sorry, but your post is very confusing
    I saved as a complete web page on my hard disk this web page
    Does this include site definitions?
    when I open it in Firefox or IE, it doesn't display as much as I need it.
    I dont know what this means...are there images that are not being displayed?  Is there styling that is not being rendered?
    . I'm mostly interested  in displaying the logo images as they appear on the original web page. The browsers just show them briefly when refreshing but hide them right away.
    Again, I dont know what this means?
    I can see the image files downloaded to my hard drive and if I open the page in Dreamweaver it displays these images  in the preview pane but I can't make them show in the browsers. From Dreamweaver I saved the page as in the folder where the images are and this also updated the code with the relative image links but the browsers still don't show them.I will greatly appreciate your help with this.
    Do you have a link to the page, and perhaps some explanation that is more clear as to what your issue is.
    Gary

  • Iphone 6 won't load certain web pages displays hyperlink 'GO' and nothing else

    II've just upgraded to an iPhone 6 although I had the same issue with my iPhone 5 just before I changed phones.
    WHen I am connected to wifi, my phone will not open certain weblinks within Facebook app and displays a blank white screen with the word 'go' and nothing else. When I click 'go' nothing happens.
    Also within my Guardian app, the banner adverts display the same (blank with the word GO)
    I'm not very technical but it seems to have a problem with shortened weblinks.
    ALso the phone is slow to load web pages when I'm on wifi and I often have to reload and reload to get anywhere in Safari.
    I don't seem to have the same problem when I'm using 3G.
    Thanks for any advice in advance.

    My wifi is through Sky but it can't be that as it doesn't happen on my iPad or on my husband's iPhone.
    When I look it is redirecting to the page anrdoezr.net rather than the page I want.

  • Web pages displayed like documents

    All web pages in Safari look like the above.  I see images, text, etc.  Just not correctly.  Pages are displayed very quickly, I'm using various public DNS, and I'm on a high speed connection.
    I have deleted every plug in in the Library, deleted all extensions, reset cache, reset safari, downloaded safari again and reinstalled, but nothing has made a change.
    Ideas?

    Read this whole message before doing anything.
    Back up all data.
    Quit Safari if it’s running. Then select
     ▹ Force Quit…
    from the menu bar. A small window will open with a list of running applications. Safari may appear in that list, even though you quit it. If so, select it and press return. Close the window.
    Step 1
    In the Finder, press the key combination shift-command-A to open the Applications folder. Select the Safari icon in that folder and press the key combination command-I to open the Info window. There’s a checkbox in the Info window labeled Open in 32-bit mode. Uncheck it, if checked. Close the Info window and the Applications folder.
    If Adobe Flash Player is installed, select
     ▹ System Preferences ▹ Flash Player ▹ Advanced
    and click Delete All. Close the preference pane.
    Hold down the option key and select
    Go ▹ Library
    from the Finder menu bar. Delete the following items from the Library folder (some may not exist):
    Caches/com.apple.Safari
    Caches/com.apple.WebKit.PluginProcess
    Caches/Metadata/Safari
    Preferences/com.apple.WebKit.PluginHost.plist
    Preferences/com.apple.WebKit.PluginProcess.plist
    Saved Application State/com.apple.Safari.savedState
    Leave the Library folder open. Try Safari again. If it works now, stop here. Close the Library folder. If you still have problems, continue.
    Step 2
    Triple-click anywhere in the line below to select it:
    open $TMPDIR../C
    Copy the selected text to the Clipboard (command-C).
    Quit Safari again. Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window (command-V). A folder should open. If there's a subfolder with the name "com.apple.Safari", delete it, even if it's empty. Quit Terminal. Close the folder. Launch Safari and test.
    Step 3
    If Safari still doesn’t work right, quit, go back to the Finder and move the following items from the open Library folder to the Desktop (some may not exist):
    Cookies/Cookies.binarycookies
    Internet Plug-Ins
    Preferences/com.apple.Safari.LSSharedFileList.plist
    Preferences/com.apple.Safari.plist
    Preferences/com.apple.Safari.RSS.plist
    Preferences/com.apple.WebFoundation.plist
    PubSub/Database
    Safari
    (Note: you are not moving the Safari application. You’re moving a folder named “Safari.”)
    Try again. This time Safari should perform normally, but your settings and bookmarks will be lost. The default set of bookmarks will be restored. Delete them all.
    If the issue is still not resolved, quit Safari again and put all the items you moved to the Desktop back where they were, overwriting the newer ones that may have been created in their place. You don’t need to replace the files you deleted in step 1. Stop here and post again.
    If Safari is now working normally (apart from the lost settings), look inside the “Safari” folder on the Desktop for a file named “Bookmarks.plist”. Select
    File ▹ Import Bookmarks
    from the Safari menu bar. Import from that file. Recreate the rest of your Safari settings. You can then delete the items you moved to the Desktop.
    Note: This step will remove your Safari Extensions, if any, and their settings. If you choose to restore them, do so one at a time, testing after each step to make sure you haven’t restored the problem.
    If you don’t like the results of step 3, you can undo it completely by quitting Safari and restoring the items you moved or deleted in that step from your backup, overwriting any that were created in their place.

Maybe you are looking for