Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7430819
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T09:12:01+00:00 2026-05-29T09:12:01+00:00

My GWT app, using UiBinder, won’t load in Internet Explorer. However, it loads just

  • 0

My GWT app, using UiBinder, won’t load in Internet Explorer. However, it loads just fine in Firefox, Safari, and on the iPhone.

In trying to isolate the problem, I’ve been stripping out parts trying to find the root cause. I’m down to basically a Label and it still works in FF but not IE.

Here’s the EntryPoint:

public class Core implements EntryPoint {

  private static Core instance;
  public static Core instance() {
    return instance;
  }

  @Override
  public void onModuleLoad() {
    instance = this;
    RootPanel container = RootPanel.get("container");
    container.add(new Label("hi"));
  }
}

Here’s my index.jsp:

<!doctype html>
<html>
<head>
<script type="text/javascript" src="core/core.nocache.js"></script>
</head>
<body>
    <div id="container"></div>
</body>
</html>

Here’s my appengine-web.xml:

<?xml version="1.0" encoding="utf-8"?>
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
  <application>realAppNameHere</application>
  <version>andrew</version>
  <static-files>
    <include path="**" />
    <!-- The following line requires App Engine 1.3.2 SDK -->
    <include path="**.nocache.*" expiration="0s" />
    <include path="**.cache.*" expiration="365d" />
    <exclude path="**.gwt.rpc" />
  </static-files>
  <!-- Configure java.util.logging -->
  <system-properties>
    <property name="java.util.logging.config.file" value="WEB-INF/logging.properties"/>
  </system-properties>
</appengine-web-app>

And here’s my web.xml:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
              http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
         version="2.5"
         xmlns="http://java.sun.com/xml/ns/javaee">
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
</web-app>

Even with this stripped-down version of everything, it still works in Firefox but not IE. Now there aren’t even any bugs thrown, not even in Firebug… it just doesn’t show the label in IE, but it will show the label in FF. I have no idea why this isn’t running.

Anyone have any idea?

Edit 3:

Forgot the module.gwt.xml file:

<?xml version="1.0" encoding="UTF-8"?>
<module rename-to='core'>
  <!-- Inherit the core Web Toolkit stuff.                        -->
  <inherits name='com.google.gwt.user.User'/>
  <inherits name='com.google.gwt.ajaxloader.AjaxLoader'/>
  <inherits name="com.google.gwt.logging.Logging"/>

  <inherits name='com.google.gwt.user.theme.clean.Clean'/>

  <entry-point class='com.company.core.client.Core'/>

  <source path='client'/>
  <source path='shared'/>

  <set-property name="gwt.logging.logLevel" value="SEVERE"/>
  <set-property name="gwt.logging.enabled" value="FALSE"/>
  <set-property name="gwt.logging.consoleHandler" value="ENABLED"/>
  <set-property name="gwt.logging.simpleRemoteHandler" value="DISABLED" />
</module>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T09:12:02+00:00Added an answer on May 29, 2026 at 9:12 am

    From testing on an actual copy of IE (not the IE plugin for Firefox) we were able to see an error “console is not defined”.

    Turns out, this was throwing an exception in IE, preventing the page from loading:

    public native static void log(String inString)
    /*-{
      console.log(inString);
    }-*/;
    

    So to solve this, we’ll take out that reference to console and replace with a cross-browser logging library, such as GWT-Log

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm working on a little app and using GWT to build it. I just
I have a GWT 2.4 app using MVP, clientFactory, activities, places, and uiBinder. I
I'm using GWT and UiBinder for my app, and I'm trying to do this
I am planning a web app using GWT. How well will it be supported
I'm using the gwt visualization library to display motion charts in a gwt app.
I'm creating a GWT app in Google App Engine, and using Google data store.
So, I'm using google datastore for my GWT app and my coworker came up
I try to deploy a GWT application, to Google App Engine using NetBeans. I
We are using GWT & GWTP with UiBinder and I want to use properties
I have a GWT app with a bunch of textboxes. In firefox I would

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.