Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Strange behavior in IE

    I'm running into a strange issue where the project is rendering correctly when I use localhost (http://localhost/IMSX/PatientSearch.html) but when I use the server name (http://rtsapp/IMSX/PatientSearch.html) all the resources return a response code of 304. This happens only on IE (duh!) and I'm using IE8.

    Everything works fine on Chrome, FF, Safari.

    I'm using GWT 2.1 and SmartGWT 2.4 version.

    This is my html code where I'm referencing the javascript files.
    I can provide a standalone test case if needed but I don't think this has anything to do what's in the smartgwt code. Any help would be appreciated.

    Code:
    <body style="position: relative; min-height: 100%; top: 0px; ">
     <!-- OPTIONAL: include this if you want history support -->
        <iframe src="javascript:''" id="__gwt_historyFrame" tabIndex='-1' style="position:absolute;width:0;height:0;border:0"></iframe>
        
          
        <!--add loading indicator while the app is being loaded--> 
    <div id="loadingWrapper"> 
    <div id="loading"> 
        <div class="loadingIndicator"> 
            <!--<img src="images/pieces/48/cube_green.gif" width="32" height="32" style="margin-right:8px;float:left;vertical-align:top;"/>SmartGWT<br/>--> 
            <img src="images/loading_white.gif" width="16" height="16" style="margin-right:8px;float:left;vertical-align:top;"/>IMSX 1.0<br/> 
            <span id="loadingMsg">Loading ...</span></div> 
    </div> 
    </div> 
        
        <!-- RECOMMENDED if your web app will not function without JavaScript enabled -->
        <noscript>
          <div style="width: 22em; position: absolute; left: 50%; margin-left: -11em; color: red; background-color: white; border: 1px solid red; padding: 4px; font-family: sans-serif">
            Your web browser must have JavaScript enabled
            in order for this application to display correctly.
          </div>
        </noscript>
           <!--include the application JS--> 
    <script type="text/javascript">document.getElementById('loadingMsg').innerHTML = 'Please wait...';</script> 
    <script type="text/javascript" language="javascript" src="patientsearch/patientsearch.nocache.js"></script>
Working...
X