Announcement

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

    error trying to test 3.1d20120314

    I cant actually load the application either deployed or hosted mode. The Dev Console will not open. The only error I can find is in hosted mode shown below.
    Last edited by jpappalardo; 24 Sep 2014, 09:41.

    #2
    Looks like the SmartClient runtime is not loading at all. Either your <inherits> are wrong (see install instructions) or perhaps you're loading the files manually via <script src=> tags, and they are not at the location you're trying to load them from.

    Comment


      #3
      Here are my inherits

      <module rename-to='gsui'>
      <inherits name='com.google.gwt.junit.JUnit'/>
      <inherits name='com.google.gwt.user.User'/>
      <inherits name="com.smartgwtpower.SmartGwtPowerNoTheme"/>
      <inherits name="com.smartgwtpower.tools.Tools"/>
      <inherits name="com.smartgwt.RealtimeMessaging"/>
      <inherits name="com.smartgwt.Drawing"/>
      <inherits name="com.smartgwt.Analytics"/>
      <inherits name="com.smartgwt.Charts"/>

      <!-- Specify the app entry point class. -->


      <!-- Specify the paths for translatable code -->
      <source path='client'/>
      <source path='shared'/>
      </module>
      Last edited by jpappalardo; 24 Sep 2014, 10:52.

      Comment


        #4
        Run a GWT compile (do this after any switch of inherits or version upgrade) and look for 404s trying to load core .js files such as ISC_Core.js.

        Note: you don't seem to be loading a theme at all.

        Comment


          #5
          I have tried multiple times, including clearing browser cache. We are using a custom skin, however just to be sure I switched so include the builtin enterprise theme. I have attached a screenshot of firebug output.
          Attached Files

          Comment


            #6
            The problem is the syntax error Firebug is reporting - there was, for about 4 hours in the early morning pacific time, a bad development build up with a syntax error caused by bad whitespace stripping logic before we caught it and yanked it. Looks like you got very unlucky and grabbed it.

            On the off chance you ever hit something like this again, make sure to use the instructions in the FAQ / shown every time you post here - if there's a JavaScript error that's the first thing to focus on and report.

            Comment


              #7
              well grabbing todays version certainly helped. can you tell me if this output is due to something your api is attempting to use? and if so how I could correct it in jboss as 7.1.0

              Code:
              21:11:12,822 WARN  [com.arjuna.ats.jta] (Periodic Recovery) ARJUNA016037: Could not find new XAResource to use for recovering non-serializable XAResource XAResourceRecord < resource:null, txid:< formatId=131077, gtrid_length=29, bqual_length=36, tx_uid=0:ffff0a8d1e65:-3c7b2e8a:4f677fae:1ee9, node_name=1, branch_uid=0:ffff0a8d1e65:-3c7b2e8a:4f677fae:1eea, subordinatenodename=null, eis_name=unknown eis name >, heuristic: TwoPhaseOutcome.FINISH_OK com.arjuna.ats.internal.jta.resources.arjunacore.XAResourceRecord@19a9cca >
              21:11:12,838 WARN  [com.arjuna.ats.jta] (Periodic Recovery) ARJUNA016038: No XAResource to recover < formatId=131077, gtrid_length=29, bqual_length=36, tx_uid=0:ffff0a8d1e65:-3c7b2e8a:4f677fae:1ee9, node_name=1, branch_uid=0:ffff0a8d1e65:-3c7b2e8a:4f677fae:1eea, subordinatenodename=null, eis_name=unknown eis name >
              21:11:12,869 WARN  [com.arjuna.ats.jta] (Periodic Recovery) ARJUNA016037: Could not find new XAResource to use for recovering non-serializable XAResource XAResourceRecord < resource:null, txid:< formatId=131077, gtrid_length=29, bqual_length=36, tx_uid=0:ffff0a8d1e65:-3c7b2e8a:4f677fae:22c3, node_name=1, branch_uid=0:ffff0a8d1e65:-3c7b2e8a:4f677fae:22c4, subordinatenodename=null, eis_name=unknown eis name >, heuristic: TwoPhaseOutcome.FINISH_OK com.arjuna.ats.internal.jta.resources.arjunacore.XAResourceRecord@1abc9fd >
              21:11:12,885 WARN  [com.arjuna.ats.jta] (Periodic Recovery) ARJUNA016038: No XAResource to recover < formatId=131077, gtrid_length=29, bqual_length=36, tx_uid=0:ffff0a8d1e65:-3c7b2e8a:4f677fae:22c3, node_name=1, branch_uid=0:ffff0a8d1e65:-3c7b2e8a:4f677fae:22c4, subordinatenodename=null, eis_name=unknown eis name >

              Comment


                #8
                Looks like it is a JBoss issue. Check this link:

                https://community.jboss.org/wiki/TxN...ableXAResource

                Comment

                Working...
                X