HTTP POST and Internet Explorer

Sorry for the cross post, but after reading through this newsgroup, it
          seems that this audience is better suited to answer this question...
          ===========================
          We're running across a very strange bug that is happening only in
          Internet Explorer and only when posting form data. Netscape works
          completely fine every single time.
          The user experience is this:
          Using IE, I get to a JSP that's got a form. I click a button on said
          form that performs either a "Save" or a "Cancel" action and am
          immediately hit with the wonderful "This page cannot be displayed(Cannot
          find server or DNS Error)" IE error message.
          What happens on the server side is this:
          User posts a form to a JSP. The JSP does any processing that it needs
          to, which in the case of "Cancel" is nothing, and issues these commands:
          response.sendRedirect("/some/page.jsp");
          return; //exit program immediately!
          I've verified that the server is executing as expected, sending the
          response and returning out of the program. That's where things seem to
          go awry in Internet Explorer. It's as if IE is not interpreting the
          HTTP response header correctly and just dies not knowing where to go.
          The even stranger thing is that, when running WLS on our internal
          network, this does not happen unless your dialed up. However, when
          hitting our servers that are colocated, this happens on a regular basis.
          One more thing to note is that this does not happen every time. It
          happens more than 90% of the time, but not every time, which is why it's
          very hard for me to recreate.
          Another strange thing is that this error seems to depend on the content
          of the form
          variables, for instance I can have a form with check boxes that errors
          out when the
          check boxes are unchecked, but is fine when the boxes are checked, and
          in both
          cases I'm not doing anything at all with the data that is getting
          posted.
          I've tried everything from changing the http headers to changing the
          post to be
          multipart encoded, and nothing works.
          If you've got a clue or a hint or any suggestions where I should be
          looking, then please let me know. I've got a few more things to check
          out, but I'm running out of ideas.
          Our platform:
          - RedHat Linux 6.0
          - WebLogic Server 4.5.1 Service Pack 5
          - JDK 1.2.2 (Sun/Blackdown)
          These JSPs:
          - Are posting form data ("GET" works for some reason)
          - Are not using any JavaScript
          

Hi Chris/All,
          Following on from this I contacted WebLogic support (Frederic). They
          suggested I downgrade from 4.5.1 sp8 to 4.5.1 sp7. They also suggested I
          use HttpResponse.encodeURL()...
          This did not solve my problem but I went on to discover the following...
          Hi Frederic,
          We tried with sp7
          I thought HttpResponse.encodeURL just encoded session data where no cookie
          support was in the browser, but I tried it anyway.
          Also tried the following to the page I'm redirecting back to (to prevent
          browser cacheing)
          resp.setHeader("Cache-Control","no-cache"); file://HTTP 1.1
          resp.setHeader("Pragma","no-cache"); file://HTTP 1.0
          resp.setDateHeader ("Expires", 0); file://prevents caching at the proxy
          server
          Also added the following to override the standard implementation
          protected long getLastModified(HttpServletRequest req)
          System.out.println("ServletA.getLastModified"); // ensure lastModified is
          always in the future requiring a reload
          return Long.MAX_VALUE;
          The only way I've been able to force this to work is a bit of a cludge and
          is as follows...
          // add time to queryString to fool IE5 into thinking this is a new web page.
          String parentURL = HttpUtils.getRequestURL(req) + "?" + req.getQueryString()
          + "&t=" + System.currentTimeMillis();
          The following is also of interest
          http://forum.java.sun.com/forum?14@@.787c19c1
          HTH, Let me know
          Thanks, Gary
          Gary <[email protected]> wrote in message
          news:[email protected]...
          > This sounds similar to a problem I'm having with straight Servlets.
          >
          > I have a servlet (ServletA) that has a link to another servlet via <a
          href>
          > tags (ServletB). ServletB does some processing and calls ServletA with
          > original parameters to show the user the changed details. This is done as
          > follows...
          >
          > respose.sendRedirect(ServletA?params);
          > return;
          >
          > Once again this is fine in Netscape 4.07 but only works on IE5 machine
          here
          > to date (which unfortunately happens to be mine, leading to my late
          > discovery of this problem).
          >
          > My IE version is 5.00.2314.1003 if that helps.
          >
          >
          > Chris Fraser <[email protected]> wrote in message
          > news:[email protected]...
          > > Sorry for the cross post, but after reading through this newsgroup, it
          > > seems that this audience is better suited to answer this question...
          > > ===========================
          > > We're running across a very strange bug that is happening only in
          > > Internet Explorer and only when posting form data. Netscape works
          > > completely fine every single time.
          > >
          > > The user experience is this:
          > > Using IE, I get to a JSP that's got a form. I click a button on said
          > > form that performs either a "Save" or a "Cancel" action and am
          > > immediately hit with the wonderful "This page cannot be displayed(Cannot
          > >
          > > find server or DNS Error)" IE error message.
          > >
          > > What happens on the server side is this:
          > > User posts a form to a JSP. The JSP does any processing that it needs
          > > to, which in the case of "Cancel" is nothing, and issues these commands:
          > >
          > > response.sendRedirect("/some/page.jsp");
          > > return; file://exit program immediately!
          > >
          > > I've verified that the server is executing as expected, sending the
          > > response and returning out of the program. That's where things seem to
          > > go awry in Internet Explorer. It's as if IE is not interpreting the
          > > HTTP response header correctly and just dies not knowing where to go.
          > >
          > > The even stranger thing is that, when running WLS on our internal
          > > network, this does not happen unless your dialed up. However, when
          > > hitting our servers that are colocated, this happens on a regular basis.
          > >
          > > One more thing to note is that this does not happen every time. It
          > > happens more than 90% of the time, but not every time, which is why it's
          > >
          > > very hard for me to recreate.
          > >
          > > Another strange thing is that this error seems to depend on the content
          > > of the form
          > > variables, for instance I can have a form with check boxes that errors
          > > out when the
          > > check boxes are unchecked, but is fine when the boxes are checked, and
          > > in both
          > > cases I'm not doing anything at all with the data that is getting
          > > posted.
          > >
          > > I've tried everything from changing the http headers to changing the
          > > post to be
          > > multipart encoded, and nothing works.
          > >
          > > If you've got a clue or a hint or any suggestions where I should be
          > > looking, then please let me know. I've got a few more things to check
          > > out, but I'm running out of ideas.
          > >
          > > Our platform:
          > > - RedHat Linux 6.0
          > > - WebLogic Server 4.5.1 Service Pack 5
          > > - JDK 1.2.2 (Sun/Blackdown)
          > >
          > > These JSPs:
          > > - Are posting form data ("GET" works for some reason)
          > > - Are not using any JavaScript
          > >
          >
          >
          

Similar Messages

  • Firefox has suddenly gone wrong. I was successfully running both Firefox and Internet Explorer 8 on Windows 7. I auto-accept upgrades including the most recent Firefox upgrade and the suggested upgrade to Adobe Flash 10.1. But after this, Firefox stopped

    Firefox has suddenly gone wrong. I was successfully running both Firefox and Internet Explorer 8 on Windows 7. My laptop is new and has plenty of RAM and HDD. I auto-accept upgrades including the most recent Firefox upgrade and the suggested upgrade to Adobe Flash 10.1. But after this, Firefox stopped working and does not work when I re-load Firefox 3.6. Also IE8 now works very slowly and does not locate major websites like Microsoft without a 'can't find the website message' and having to pressing Return a second time. When I do get to the Mozilla website and click on the button to try to download Firefox 3.6.6, I get this message "Oops! Internet Explorer could not find mozilla3.snt.utwente.nl". Can you help with what has gone wrong? As it stands, I can't use Firefox at all. Note: because Firefox did not work after the upgrade, I've downloaded the IE8 version of the Adobe Flash 10.1. What I really want is to be able to use both Firefox and IE8. But is this possible if they use different versions of Adobe Flash?
    == This happened ==
    Every time Firefox opened
    == About 2-3 days ago ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6.5; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0; .NET4.0C)

    I have been having the same problem as the original poster. After upgrading to Ffx 3.6.6, the program asks you to upgrade to Flash Player Plugin 10.1. I download and installed 10.1 only to find videos weren't loading.
    In my case, the problem is the previous installation of Flash Player (9.0.47) was somehow messing things up. To fix this, because I already had Flash plugin 10.1 installed I had to uninstall 10.1 using the uninstaller from adobe and then manually remove any files related the old flash player plugin 9.0.47
    Here is a run-down of my process:
    0. To check if you have a previous installation of the Flash Plugin lurking around, in Firefox go to Tools -> Add-ons -> Plugins (tab). At this point you may seen both Flash plugins.
    1. Proceed to uninstall Flash Plugin 10.1. Adobe provides an uninstaller here: http://kb2.adobe.com/cps/141/tn_14157.html
    ( you have to make sure you have nothing running when you execute the installer).
    2. On my Mac (sorry I don't know what it is in Windows) I searched the hard drive for any files/folders with "Shockwave". I found a folder called "Shockwave 10". It wasn't removed by Adobe's uninstaller. For safety I deleted it and then emptied the trash.
    3. I then went to My HD -> Library -> Internet Plugins.
    Remove the file and folder named "Flash player.old"
    4. Restarted; ran the Adobe Flash Player 10.1 installer. Restarted again.
    5. Opened up ffx and double checked the plugins list (see step 1). Version 10.1 is installed and available. Went to problem sites to test it out and Success!
    Hope this helps.

  • Dynamic faces and Internet Explorer

    Thanks for taking a second to read my post, i hope you can help. I am almost complete with my web app using Netbeans VWP and Dynamic Faces. I have come across a simple application that i can not get working in Internet Explorer and as simple as it is I am surprised that it is not working. I cant believe that the Dynamic Faces team would just ignore compatability with IE altogether. Basically i am trying to get AJAX interaction going on by adding text into a textbox and adding a new DynaFaces.fireAjaxTransaction(this); to the submit however it does not seem to work. Maybe you can help...
    Here is my page:
    <?xml version="1.0" encoding="UTF-8"?>
    <jsp:root version="1.2" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:webuijsf="http://www.sun.com/webui/webuijsf">
        <jsp:directive.page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"/>
        <f:view>
            <webuijsf:page binding="#{testies.page1}" id="page1">
                <webuijsf:html binding="#{testies.html1}" id="html1">
                    <webuijsf:head binding="#{testies.head1}" debug="true" id="head1">
                        <webuijsf:link binding="#{testies.link1}" id="link1" url="/resources/stylesheet.css"/>
                    </webuijsf:head>
                    <webuijsf:body binding="#{testies.body1}" focus="form1:layoutPanel1:textField1" id="body1" style="-rave-layout: grid">
                        <webuijsf:form binding="#{testies.form1}" id="form1">
                            <webuijsf:button actionExpression="#{testies.button1_action}" binding="#{testies.button1}" id="button1"
                                onClick="new DynaFaces.fireAjaxTransaction(this);" style="left: 144px; top: 110px; position: absolute" text="Button"/>
                            <webuijsf:staticText binding="#{testies.staticText1}" id="staticText1" style="position: absolute; left: 170px; top: 185px"/>
                            <webuijsf:textField binding="#{testies.textField1}" id="textField1" style="position: absolute; left: 75px; top: 55px"/>
                        </webuijsf:form>
                    </webuijsf:body>
                </webuijsf:html>
            </webuijsf:page>
        </f:view>
    </jsp:root>-------------------------------------
    Here is my backing bean:
    * testies.java
    * Created on July 10, 2007, 8:39 PM
    package mypkg;
    import com.sun.rave.web.ui.appbase.AbstractPageBean;
    import com.sun.webui.jsf.component.Body;
    import com.sun.webui.jsf.component.Button;
    import com.sun.webui.jsf.component.Form;
    import com.sun.webui.jsf.component.Head;
    import com.sun.webui.jsf.component.Html;
    import com.sun.webui.jsf.component.Link;
    import com.sun.webui.jsf.component.Page;
    import com.sun.webui.jsf.component.PanelGroup;
    import com.sun.webui.jsf.component.PanelLayout;
    import com.sun.webui.jsf.component.StaticText;
    import com.sun.webui.jsf.component.TextField;
    import javax.faces.FacesException;
    import javax.faces.component.html.HtmlPanelGrid;
    * <p>Page bean that corresponds to a similarly named JSP page.  This
    * class contains component definitions (and initialization code) for
    * all components that you have defined on this page, as well as
    * lifecycle methods and event handlers where you may add behavior
    * to respond to incoming events.</p>
    public class testies extends AbstractPageBean {
        // <editor-fold defaultstate="collapsed" desc="Managed Component Definition">
        private int __placeholder;
         * <p>Automatically managed component initialization.  <strong>WARNING:</strong>
         * This method is automatically generated, so any user-specified code inserted
         * here is subject to being replaced.</p>
        private void _init() throws Exception {
        private Page page1 = new Page();
        public Page getPage1() {
            return page1;
        public void setPage1(Page p) {
            this.page1 = p;
        private Html html1 = new Html();
        public Html getHtml1() {
            return html1;
        public void setHtml1(Html h) {
            this.html1 = h;
        private Head head1 = new Head();
        public Head getHead1() {
            return head1;
        public void setHead1(Head h) {
            this.head1 = h;
        private Link link1 = new Link();
        public Link getLink1() {
            return link1;
        public void setLink1(Link l) {
            this.link1 = l;
        private Body body1 = new Body();
        public Body getBody1() {
            return body1;
        public void setBody1(Body b) {
            this.body1 = b;
        private Form form1 = new Form();
        public Form getForm1() {
            return form1;
        public void setForm1(Form f) {
            this.form1 = f;
        private TextField textField1 = new TextField();
        public TextField getTextField1() {
            return textField1;
        public void setTextField1(TextField tf) {
            this.textField1 = tf;
        private Button button1 = new Button();
        public Button getButton1() {
            return button1;
        public void setButton1(Button b) {
            this.button1 = b;
        private StaticText staticText1 = new StaticText();
        public StaticText getStaticText1() {
            return staticText1;
        public void setStaticText1(StaticText st) {
            this.staticText1 = st;
        // </editor-fold>
         * <p>Construct a new Page bean instance.</p>
        public testies() {
         * <p>Callback method that is called whenever a page is navigated to,
         * either directly via a URL, or indirectly via page navigation.
         * Customize this method to acquire resources that will be needed
         * for event handlers and lifecycle methods, whether or not this
         * page is performing post back processing.</p>
         * <p>Note that, if the current request is a postback, the property
         * values of the components do <strong>not</strong> represent any
         * values submitted with this request.  Instead, they represent the
         * property values that were saved for this view when it was rendered.</p>
        public void init() {
            // Perform initializations inherited from our superclass
            super.init();
            // Perform application initialization that must complete
            // *before* managed components are initialized
            // TODO - add your own initialiation code here
            // <editor-fold defaultstate="collapsed" desc="Managed Component Initialization">
            // Initialize automatically managed components
            // *Note* - this logic should NOT be modified
            try {
                _init();
            } catch (Exception e) {
                log("testies Initialization Failure", e);
                throw e instanceof FacesException ? (FacesException) e: new FacesException(e);
            // </editor-fold>
            // Perform application initialization that must complete
            // *after* managed components are initialized
            // TODO - add your own initialization code here
         * <p>Callback method that is called after the component tree has been
         * restored, but before any event processing takes place.  This method
         * will <strong>only</strong> be called on a postback request that
         * is processing a form submit.  Customize this method to allocate
         * resources that will be required in your event handlers.</p>
        public void preprocess() {
         * <p>Callback method that is called just before rendering takes place.
         * This method will <strong>only</strong> be called for the page that
         * will actually be rendered (and not, for example, on a page that
         * handled a postback and then navigated to a different page).  Customize
         * this method to allocate resources that will be required for rendering
         * this page.</p>
        public void prerender() {
         * <p>Callback method that is called after rendering is completed for
         * this request, if <code>init()</code> was called (regardless of whether
         * or not this was the page that was actually rendered).  Customize this
         * method to release resources acquired in the <code>init()</code>,
         * <code>preprocess()</code>, or <code>prerender()</code> methods (or
         * acquired during execution of an event handler).</p>
        public void destroy() {
         * <p>Return a reference to the scoped data bean.</p>
        protected ApplicationBean1 getApplicationBean1() {
            return (ApplicationBean1)getBean("ApplicationBean1");
         * <p>Return a reference to the scoped data bean.</p>
        protected RequestBean1 getRequestBean1() {
            return (RequestBean1)getBean("RequestBean1");
         * <p>Return a reference to the scoped data bean.</p>
        protected SessionBean1 getSessionBean1() {
            return (SessionBean1)getBean("SessionBean1");
        // Get the text from the textbox and set it in the staticTextField
        public String button1_action() {
            String str = (String)textField1.getValue();
            staticText1.setText(str);
            return null;
    }Any help is appreciated. thx.
    Message was edited by:
    b12s

    > Hello. I have a problem with a Remote Panel and Internet Explorer. I
    > create a measurement system in LabVIEW. It?s composed of a main front
    > panel and a few subVIs with independent front panels opened from main
    > Front Panel when I press appropriate button.
    I think you have two options. You can open most modal subVI panels
    directly on a remote machine. The popup panels won't be in a web page,
    but it will work with few changes.
    A second approach would be to change the app slightly. The buttons that
    launch the subVIs will turn into URL links. The links will open a web
    page with a different embedded panel.
    Greg McKaskle

  • Problem with ACE and Internet Explorer 8

    I have a problem with ACE (system A2(1.1)) and Internet Explorer 8.
    exactly:
    ACE is configured as end-to-end ssl with 2 rserver and with the sticky source address. When user is opening the virtual address from IEv7, the web portal (On Microsoft IIS) works fine.
    If user opens the same web portal but using IEv8, the session is suspended after 60 seconds.
    I think, that the reason is http keep-allive, which is sending every 60 seconds from the user's internet browser.
    Here is some information about this. http://en.wikipedia.org/wiki/HTTP_persistent_connection
    Do you have any idea how to resolve this problem: upgrade ACE, change the configuration on IIS or ACE ??
    Please help.

    Hi Kazik,
    Using a persistent connection or HTTP keepalives should not have any negative effect on the ACE, so, giving you a straight-forward answer to fix it is not going to be easy.
    I would recommend you to open a TAC case to have this investigated further. When you do, please, provide the following data:
    A showtech from the Admin context of the ACE
    A traffic capture taken on the TenGig interface connecting the switch with the ACE backplane while doing a test connection (preferably one with IE7 and one with IE8 to compare)
    If possible, a copy of the SSL private key. Being able to decrypt the traffic capture to look inside the HTTP flow would really make troubleshooting much easier.
    Regards
    Daniel

  • Swf link not working in Firefox, Opera and Internet Explorer but works in Safari

    Hi,
    I'm sorry but Im a real newbie and really need help!!!
    On the homepage of my website I have put a swf file that I linked to another page in my website through the div a href link and it displays great on safari and links, however in other browsers, when i try to click on it, it comes up with the link at the bottom of the browser (where it sometimes says Done), however it doesnt actually link, it jsut stays on the homepage.
    Here is the coding i put in:
    <div id="products2">
              <p>
              <a href="Our_brands/index.html">
                <script type="text/javascript">
    AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','wid th','449','height','449','title','Products','src','Productions/boxes3','quality','high','p luginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=Shockwav eFlash','movie','Productions/boxes3' ); //end AC code
              </script>
                <noscript>
                <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="449" height="449" title="Products">
                  <param name="movie" value="Our_brands/boxesnew.swf" />
                  <param name="quality" value="high" /><param name="SCALE" value="noborder" />
                  <param name="allowScriptAccess" value="always"/>
                  <embed src="Our_brands/boxesnew.swf" width="449" height="449" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" allowScriptAccess="always" scale="noborder"></embed>
                  <br />
                  <br />
                </object>
                </noscript>
              </a>
              </p>
            </div>
    Could someone please tell me where I am going wrong?
    I would REALLY appreciate it.
    Thank you in advance!!

    I'm doing it for a client and they dont want it put up on the server yet, I wish I could put it up bc I have no idea what I'm doing!
    Basically I wanted a swf file from Flash to display a range of products (I have turned all the products into buttons) and then I put coding into all the buttons to on release getURL which work in the swf file, however when I put the swf file into dreamweaver, the buttons worked in hover state, but the action scripting didn't work to link the swf file to another page in the website (the index in Our_brands folder).
    So i decided to make it link to the index.html in Our_brands folder from wrapping the swf box in a div tag and linking the div tag <a href="Our_brands/index.html"> which links it great in Safari but wont link in Firefox, Opera and Internet Explorer.
    Does that make any sense?
    Sorry if it doesn't.
    Thanks for the quick reply as well!!!

  • Is HP Smart Web Printing compatible with Windows 7 Ultimate 32 bit and Internet Explorer 8 and 9?

    Is HP Smart Web Printing compatible with Windows 7 Ultimate 32 bit and Internet Explorer 8 and 9?

    HP Smart Web Printing has been replaced with HP Smart Printing.  It does support Windows 7 and IE 6 to IE9.  See this page for information.
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • EntityEncodeStrings and Internet Explorer w/ CDATA in XML

    Hello.
    I'm makin a sort of content management system which fetches
    data from an XML file:
    (pages.xml)
    <pages>
    <page id="1">
    <title>Home</title>
    <link>#1</link>
    <content><![CDATA[<h3>Welcome"</h3><p>We're
    experimenting a lot with different stuff on this page, please bare
    with us.</p>]]></content>
    </page>
    <page id="2">
    <title>About</title>
    <link>#2</link>
    <content><![CDATA[<h3>about</h3>Woah,
    hold it there, punk.]]></content>
    </page>
    [etc...]
    </pages>
    My XHTML-file has this in the header:
    var nav = new Spry.Data.XMLDataSet("/pages.xml",
    "pages/page");
    nav.setColumnType("@id", "number");
    nav.setColumnType("content", "html"); // skips entity
    encoding \o/
    I want to display everything in the <content />-xml
    tree as (X)HTML
    With the code I have everything works perfectly in Firefox,
    but in Internet Explorer (7) I'm getting no data at all because of
    entityEncodeStrings not functioning correctly (or so it seems). If
    I remove this it displays in both Firefox and Internet Explorer
    (though with the entities encoded).
    It doesn't matter which way I do it, using the option
    entityEncodeStrings: false or -1 I get the same (non-)results.
    I'm very thankful for any help!

    http://labs.adobe.com/technologies/spry/samples/data_region/XMLDataSetStringHandlingSample .html

  • Firefox and Internet Explorer crashes on startup

    Firefox and Internet Explorer both crash at startup. I have tried resetting Firefox but it still crashes. I click on the details box and nothing happens. They will both work fine when I boot up Windows in safe mode.
    bp-564f7898-b699-45de-83c6-5c8912130324

    Try to disable hardware acceleration in Firefox.
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    *https://hacks.mozilla.org/2010/09/hardware-acceleration/
    Try to update the graphic display driver.
    *https://support.mozilla.org/kb/how-do-i-upgrade-my-graphics-drivers

  • SWF Object and Internet Explorer

    I am experiencing some strange behavior with a SWF Im including in the following web page:
    http://www.bostonredevelopmentauthority.org/
    The SWF displays properly on the first page visit in both Internet Explorer and Firefox.  If I navigate away to a child page, then back with the back button in the browser, the SWF no longer displays in IE.  Firefox does not exhibit this behavior.
    Any ideas what might be going on here?
    Thanks,
    Greg

    I'm doing it for a client and they dont want it put up on the server yet, I wish I could put it up bc I have no idea what I'm doing!
    Basically I wanted a swf file from Flash to display a range of products (I have turned all the products into buttons) and then I put coding into all the buttons to on release getURL which work in the swf file, however when I put the swf file into dreamweaver, the buttons worked in hover state, but the action scripting didn't work to link the swf file to another page in the website (the index in Our_brands folder).
    So i decided to make it link to the index.html in Our_brands folder from wrapping the swf box in a div tag and linking the div tag <a href="Our_brands/index.html"> which links it great in Safari but wont link in Firefox, Opera and Internet Explorer.
    Does that make any sense?
    Sorry if it doesn't.
    Thanks for the quick reply as well!!!

  • Local versus Hosted Websites and Internet Explorer 7

    I am working on a site that will be deployed over the internet and distributed on a DVD-ROM. There are many users that do not have access to the internet throughout the day as they are mobile. They have laptops and what to have access to the information on a DVD-ROM. The DVD is needed as the site is far larger than 700MB.
    When I upload the site, it renders well using Safari (Mac), Firefox (Mac), Safari (Windows), Firefox (Windows), and Internet Explorer (7.X Windows).
    When I create a DVD-ROM with a little autoexec.bat file to automatically load the browser and index file, it works great in all of the browsers I have listed above except, Internet Explorer. The javascript menu's are no where to be seen. I have spent time looking a the security issues, scripting permissions etc, and can't get it to work.
    Have body have any specific helpful ideas? I really would like this to work under IE, especially since it renders just fine while accessing the site via the internet. I just doesn't work on a local copy.

    I was having this problem too and found the Dreamweaver 8.0.2
    updater that corrects that problem. See
    http://www.adobe.com/support/documentation/en/dreamweaver/dw8/releasenotes.html

  • EPM 11.1.2.1 Support for Windows 8 and Internet Explorer (IE) 10

    Hi All,
    I need some information regarding the compatibility between EPM 11.1.2.1.x and IE10 and Windows 8.
    In our current application we have this 11.1.2.1 version  and need to know if this version will be supported on IE10 and windows 8.
    Thanks in advance.

    Have a read of : https://blogs.oracle.com/proactivesupportEPM/entry/epm_obiee_certification_with_internet
    or Oracle Support: When Will EPM Support Windows 8 and Internet Explorer (IE) 10? (Doc ID 1492671.1)
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Flash Player 10.3 and Internet Explorer 9 update and workarounds

    Hello Flash Player community,
    We are tracking the issues being reported on Flash Player 10.3.181.14 and Internet Explorer 9 and actively investigating them.  Users are reporting that Flash content is being displayed in the upper left corner of the screen.  We want to give those who are encountering these issues an update.
    First, we apologize to everyone affected.  We know you count on Flash Player as an integral component of the web and we strive for high quality and performance in each release.  We are actively looking into the root cause of this issue.  Thanks to many of you submitting information via email and our online bug database, we now have some solid leads we are pursuing.
    Flash Player 10 and later can use your system’s graphics hardware to accelerate video decoding, and can also accelerate video presentation on some sites. Starting with Flash Player 10.2, Flash Player will also take advantage of hardware accelerated graphics in Internet Explorer 9, utilizing hardware rendering surfaces to improve graphics performance.
    With Flash Player 10.3.181.14, reports indicate that systems with Intel HD Graphics adapters running Internet Explorer 9 are the only systems impacted by this particular bug.  If you are encountering this issue and have a different configuration we'd love to hear from you.  Please review the instructions on this page for details on generating the information we'll need for further investigation.
    Solution #1
    Adobe has officially released Flash Player 10.3.181.16 for Internet Explorer to address the graphical issues introduced in 10.3.181.14.  You can get this release by visiting our official download page, directly downloading and running the installer file, or using the Flash Player auto update mechanism.
    After installing, we recommend you re-enable hardware acceleration if you had it previously disabled.  We also recommend you clear your browser cache and restart your system.
    If you continue to encounter issues, please create a new thread and we'll do our best to investigate further.
    Solution #2
    On some systems, you may be able to resolve this issue by updating the Intel HD Graphics drivers. It has been reported that driver versions 8.15.10.2361 and above do not exhibit this bug. Unfortunately, some systems might require updates directly from your system manufacturer. We’re working with system manufacturers to make sure they include the latest drivers in future releases.
    Solution #3
    You can disable hardware acceleration in Internet Explorer 9 using the instructions on this page. Please note that you should re-enable hardware acceleration once this problem has been resolved to enjoy the full benefits of hardware acceleration.
    Thank you,
    The Flash Player team
    Update 5/20/11 - We've temporarily disabled the automatic update notification for Flash Player 10.3 and Internet Explorer.  We're making progress on a fix and hope to have a new version available next week.
    Update 5/24/11 - Added link to the 10.3.181.15 test update
    Update 5/27/11 - Added instructions for post install of 10.3.181.15
    Update 5/31/11 - Updated thread with the official 10.3.181.16 announcement

    FOR THOSE RUNNING IE9 ON WINDOWS 7 AND HAVE INSTALLED THE AUTOMATIC UPDATE FOR ADOBE FLASH PLAYER 10.3 - TAKE THE FOLLOWING STEPS:
    Open IE9 Browser window > Click on "Tools" > Click on "Internet Options" > Selct the "Advanced" Tab > Turn on/Click the "Use software rendering instead of GPU rendering" > Click "Apply" > Click "OK" > Shut down and then restart your IE9 browser.
    THIS WILL BE A TEMPORARY FIX FOR ANY ISSUES YOU MAY HAVE WITH THE CONSTANT FLOOD OF FLASHING ADS AND THE LIKE UNTIL A PATCH IS MADE AVAILABLE FOR THIS UPDATE.
    OTHER QUICK FIXES WOULD INCLUDE:
    1) UN-INSTALLING 10.3 AND RE-DOWNLOADING AND INSTALLING 10.2 FOR THE TIME BEING. **BE SURE TO AVOID RE-INSTALLING THE AUTOMATIC UPDATE OF 10.3 AGAIN**
    2) DOWNLOADING AND INSTALLING "MOZILLA FIREFOX" AND USING IT AS YOUR WEB BROWSER!!

  • Known Issue: WebHelp on Windows 8 and Internet Explorer 10

    Hello all,
    I noticed on the Known Issues and bugs page for RoboHelp 10 (http://helpx.adobe.com/robohelp/kb/known-issues-rh-10.html) that there is a problem viewing webhelp on Windows 8 and Internet Explorer 10. Does anyone have further information about this problem and possible solutions?
    Thank you!

    See the link, it says IE10, and you said you are using IE9.
    That message suggests your upload or the call to the help is broken. Is this when the help is called from an app or does it happen if you open the help direct?
    Try one of the sample projects. Click Open on the RoboHelp Starter page and then click Samples in the ribbon on the left.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Does this website show OK on PC and Internet Explorer?

    Hello guys,
    I have just created this simple website (with Mac using Flash).
    It looks fine on my Mac and Safari, but I have no opportunity to check it out on PC and Internet Explorer.
    So I am wondering if there are some PC users among you, so you could possibly check this website for me, if everything looks OK and works properly.??
    Browser background should be black. (videos should open in a new window, with browser background also black)
    Thank you so much for your help.

    Or maybe there is some html code ? I am not sure.
    It might be worth checking on the code. The W3C markup validator finds a few issues with the page:
    [Errors found while checking this document as -//W3C//DTD HTML 4.01 TRANSITIONAL//EN!|http://validator.w3.org/check?uri=http%3A%2F%2Fwww.icebergfil ms.com%2FcineDemo.html&charset=%28detect+automatically%29&doctype=Inline&group=0 ]

  • What's the latest best security/program (McAfee/Symantec/Norton/other) for PCs with Windows XP. Prefer Mozilla Firefox as browser, AND Internet Explorer.

    What is the best security/protection program (McAfee/Symantec/Norton/other) for my Dell PC which has Windows XP. I prefer Mozilla Firefox as my browser, but also use Internet Explorer. I just want to know if Mozilla Firefox has identified an ideal product to detect and destroy spam, worms, add-ons -- eliminate security threats of all kinds... AND is tolerated by BOTH Mozilla Firefox AND Internet Explorer.

    Best Antivirus for 2013
    **http://download.cnet.com/2701-19409_4-1444-2.html
    *http://www.pcmag.com/article2/0,2817,2372364,00.asp
    *http://freebies.about.com/od/computerfreebies/tp/best-free-antivirus.htm

Maybe you are looking for

  • Working with JMS Queue

    Hi, I want to publish a message into a JMS but don't want to use any interface for it.Requirement is to publish certain variable values from the ODI package to the JMS. Is it possible using ODI Procedure, if yes, ps help me with the steps involved. 2

  • I want to refresh my jsf page on the click of command button.

    Hi all, i m using JDEV 11.1.2.1.0 i have created one jsf page with fragment i want to refresh my whole page on the click of command button which is present in fragment page.Besause i want to refresh some field but those are present in jsf page so i c

  • External jar for jspdynpage

    what are the external jar to be added to the jspdynpage project? I have this error: The import com.sapportals.htmlb cannot be resolved The import com.sapportals.portal.htmlb cannot be resolved DynPage cannot be resolved (or is not a valid return type

  • I can't get my flash player to work

    I have installed and uninstalled Adobe Flash Player now at least 10 times and I still can't get it to work. I still am reciving messages from sites that I need to download it. I need help can anyone help me to fix this. I need my flash palyer working

  • 100's of aliases!

    While searching a number (2007) in spotlight, it found 100's of broken aliases to various jpgs, pdfs, etc. files. Of course, some active files also show up. Any number I enter into spotlight does the same thing. Some are old files I recognize, most a