Re: [ERROR] Unexpected internal compiler error | BytecodeSignatureMaker.java:59 | at com.google.gwt.dev.Compiler.main(Compiler.java:113)

2022-08-09 Thread Michael Conrad
dule's thing on multiple dependencies to >> keep gwt 2.8 stuff out of the classpath. There is no GWT servlet stuff. >> >> Using Gradle, JDK 17, Linux, IntelliJU >> >> plugins { >> id "java" >> id "war" >> id &q

Re: [ERROR] Unexpected internal compiler error | BytecodeSignatureMaker.java:59 | at com.google.gwt.dev.Compiler.main(Compiler.java:113)

2022-08-05 Thread Jens
t; > id "org.wisepersist.gwt" > id "org.gretty" > } > > > Task :compileGwt > Compiling module com.newsrx.butter.Butter > [ERROR] Unexpected internal compiler error > java.lang.IllegalArgumentException >

[ERROR] Unexpected internal compiler error | BytecodeSignatureMaker.java:59 | at com.google.gwt.dev.Compiler.main(Compiler.java:113)

2022-08-03 Thread Michael Conrad
T servlet stuff. Using Gradle, JDK 17, Linux, IntelliJU plugins {     id "java"     id "war"     id "org.wisepersist.gwt"     id "org.gretty" } > Task :compileGwt Compiling module com.newsrx.butter.Butter [ERROR] Unexpected internal co

Re: GWT 2.8b1: "runAsyncCallback7 is not a function" - compiler error with GWT.runAsync(...)?

2018-07-24 Thread Phuoc Huynh
We were also getting this issue when we migrated it to 2.8.2. With the upgrade, we had to define a custom linker name instead of overloading the "xsiframe" name like we were doing in 2.7. We thought that was enough but then this error occurred. The fix was to basically replicate this deferred b

Re: Compiler error with the latest gwt head ?

2017-04-25 Thread Hristo Stoyanov
The issue seems to be with usage of the new Elemental2 libraries. It looks like it has not much to do with my Java code, just the inclusion of Elemental2 breals the compile. Switching to the old JSNI Console logging works: @EntryPoint public class Main { @Inject private Caller

Re: Compiler error with the latest gwt head ?

2017-04-25 Thread Hristo Stoyanov
Also present in the just release GWT 2.8.1 On Tuesday, April 25, 2017 at 5:49:10 PM UTC-7, Hristo Stoyanov wrote: > > > > :recres-client:compileJava > :recres-client:compileJava - is not incremental (e.g. outputs have > changed, no previous execution, etc.). > :recres-client:processResources NO-S

Compiler error with the latest gwt head ?

2017-04-25 Thread Hristo Stoyanov
:recres-client:compileJava :recres-client:compileJava - is not incremental (e.g. outputs have changed, no previous execution, etc.). :recres-client:processResources NO-SOURCE :recres-client:classes :recres-client:gwtCompile Apr 25, 2017 5:44:22 PM java.util.prefs.WindowsPreferences WARNING: Cou

Re: Compiler error

2016-11-09 Thread Jens
Create a small, self contained example that reproduces the problem and open a bug on Github. Looks like a compiler bug. -- J. -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send a

Re: Compiler error

2016-11-09 Thread Kirill Prazdnikov
It seems like it is a java.lang.NullPointerException in the compiler at com.google.gwt.dev.jjs.impl.Pruner.transformToNullMethodCall(Pruner.java:608) -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop rec

Compiler error

2016-10-27 Thread Kirill Prazdnikov
Hi, I have a static method public class PolygonEditor { public static void create(PropertyInspector inspector) { PropertyInspector.PropertyRollup rollup = inspector.createRollup("PolygonEditor"); rollup.addButton("switch water on selected", () -> { Logger.log("string"); });

Re: GWT 2.8b1: "runAsyncCallback7 is not a function" - compiler error with GWT.runAsync(...)?

2016-05-25 Thread cloud450
I did add a custom linker in order to get HTTPS sort of working for SDM debugging. A very simple class derived from CrossSiteIframeLinker and only overriding getJsDevModeRedirectHookPermitted(...). No custom linker was used previously. Feels like a regression to me... I guess I'd need to check

Re: GWT 2.8b1: "runAsyncCallback7 is not a function" - compiler error with GWT.runAsync(...)?

2016-05-24 Thread Jens
> I haven't managed to find any further info here... suppose I'll regard > GWT.runAsync() as "broken" avoid it going forward. > I don't think its generally broken, otherwise lots of people would complain about it, myself included as we use code splitting at work. Does your app use a custom GW

Re: GWT 2.8b1: "runAsyncCallback7 is not a function" - compiler error with GWT.runAsync(...)?

2016-05-24 Thread cloud450
I haven't managed to find any further info here... suppose I'll regard GWT.runAsync() as "broken" avoid it going forward. -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an ema

GWT 2.8b1: "runAsyncCallback7 is not a function" - compiler error with GWT.runAsync(...)?

2016-05-06 Thread cloud450
Hi there, I've been migrating an application from GWT 2.5 to GWT2.8b1. After working around how to debug in Super Dev Mode and getting the app to run relatively smoothly, we've encountered an odd issue in the generated JS code which does not show up when debugging: Stack Trace from Chrome: Un

Getting Unexpected internal compiler error

2016-02-04 Thread Jay Shukla
ving below exception? [ERROR] Unexpected internal compiler error > java.lang.RuntimeException: Unexpectedly unable to access > Enum.createValueOfMap via reflection. Likely a dependency on the > com.google.gwt.user.User module is missing. > at > com.google.gwt.d

Re: GWT 2.8 SNAPSHOT - "Unexpected internal compiler error"

2015-08-06 Thread Leonid Khachaturov
because I > really want to get away from Java 7. Unfortunately, I'm getting the > following error with gwt-2.8.0-20150805: > > >- Unexpected internal compiler error >- >at > com.google.gwt.dev.javac.CompiledClass.get

GWT 2.8 SNAPSHOT - "Unexpected internal compiler error"

2015-08-06 Thread Leonid Khachaturov
- Hello, I have decided to try out a snapshot of 2.8 instead of 2.7 because I really want to get away from Java 7. Unfortunately, I'm getting the following error with gwt-2.8.0-20150805: - Unexpected internal compiler error -

Re: GWT 2.6.0 to 2.7.0 leads to compiler error 'java.lang.IncompatibleClassChangeError'

2014-12-06 Thread Stephan Beutel
Thanks for the hint. It was an old ASM version. Now it builds fine. Am Mittwoch, 3. Dezember 2014 09:42:18 UTC+1 schrieb Cristiano: > > Hi, > find out which dependency is including ASM and then try to exclude it in > your pom.xml > > In our project, app-hmi-soaconnector was importing ASM as a

Re: GWT 2.6.0 to 2.7.0 leads to compiler error 'java.lang.IncompatibleClassChangeError'

2014-12-03 Thread Cristiano Costantini
Hi, find out which dependency is including ASM and then try to exclude it in your pom.xml In our project, app-hmi-soaconnector was importing ASM as a sub-dependency due to CXF, so It did added the tag like you can see below directly in our main GWT web app project. --- app_main/hmi/app-gwt-weba

GWT 2.6.0 to 2.7.0 leads to compiler error 'java.lang.IncompatibleClassChangeError'

2014-12-02 Thread Thomas Broyer
You must have an incompatible version of ASM in your build path. ASM only ensures backwards compatible starting with version 4, earlier versions should have been repackaged but it's not always the case (people have listed Hibernate as a culprit for example) -- You received this message because

GWT 2.6.0 to 2.7.0 leads to compiler error 'java.lang.IncompatibleClassChangeError'

2014-12-02 Thread Stephan Beutel
Hello, after switching to GWT 2.7.0 I cannot build our project anymore. I cleaned everything in my Maven target folder (gwt unit cache, build classes, ...) but with no luck. Every time I get this stacktrace: [INFO] [ERROR] Unexpected internal compiler error [INFO

Re: Unexpected internal compiler error when trying out 2.7.0-RC1

2014-11-04 Thread Martijn Wijns
or. >>>> >>>> On Thursday, October 30, 2014 4:39:03 PM UTC+1, Martijn Wijns wrote: >>>>> >>>>> When trying out 2.7.0-RC1 I get the following error after a page >>>>> refresh: >>>>> >>>>>

Re: Unexpected internal compiler error when trying out 2.7.0-RC1

2014-11-03 Thread Arlo O'Keeffe
vrijdag 31 oktober 2014 14:21:24 UTC+1 schreef Arlo O'Keeffe: >>> >>> I have the same error. >>> >>> On Thursday, October 30, 2014 4:39:03 PM UTC+1, Martijn Wijns wrote: >>>> >>>> When trying out 2.7.0-RC1 I get the following error a

Re: Unexpected internal compiler error when trying out 2.7.0-RC1

2014-11-03 Thread Arlo O'Keeffe
t; When trying out 2.7.0-RC1 I get the following error after a page refresh: >>> >>> [ERROR] Unexpected internal compiler error >>> java.lang.AssertionError >>> at com.google.gwt.dev.jjs.impl.UnifyAst.instantiate

Re: Unexpected internal compiler error when trying out 2.7.0-RC1

2014-10-31 Thread Martijn Wijns
ffe: > > I have the same error. > > On Thursday, October 30, 2014 4:39:03 PM UTC+1, Martijn Wijns wrote: >> >> When trying out 2.7.0-RC1 I get the following error after a page refresh: >> >> [ERROR] Unexpected internal co

Re: Unexpected internal compiler error when trying out 2.7.0-RC1

2014-10-31 Thread Arlo O'Keeffe
I have the same error. On Thursday, October 30, 2014 4:39:03 PM UTC+1, Martijn Wijns wrote: > > When trying out 2.7.0-RC1 I get the following error after a page refresh: > > [ERROR] Unexpected internal compiler error > java.lang.Asse

Unexpected internal compiler error when trying out 2.7.0-RC1

2014-10-30 Thread Martijn Wijns
When trying out 2.7.0-RC1 I get the following error after a page refresh: [ERROR] Unexpected internal compiler error java.lang.AssertionError at com.google.gwt.dev.jjs.impl.UnifyAst.instantiate(UnifyAst.java:1407) at com.google.gwt.dev.jjs.impl.UnifyAst.instantiate(UnifyAst.java:1414) at

Re: GWT Unexpected internal compiler error

2013-12-04 Thread Dugald
Try getting rid of the gwt-unitCache folder. On Saturday, 16 November 2013 02:00:59 UTC+11, barada wrote: > > Hi, > > When I try compile my project I got next error: > > [INFO] [ERROR] Unexpected internal compiler error > [INFO] java.lang.ArrayIndexOutOfBoundsExc

GWT Unexpected internal compiler error

2013-11-15 Thread barada
Hi, When I try compile my project I got next error: [INFO] [ERROR] Unexpected internal compiler error [INFO] java.lang.ArrayIndexOutOfBoundsException: 0 [INFO] at com.google.gwt.dev.jjs.impl.GwtAstBuilder$AstVisitor.writeEnumValueOfMethod(GwtAstBuilder.java:2671) [INFO] at

Re: Internal Compiler Error / Xerces

2013-08-21 Thread Ronan Quillevere
As said by DP, I had to add the following to my pom.cml to make it work xerces xercesImpl 2.11.0 xml-apis xml-apis 1.4.01 On Friday, April 19, 2013 9:25:19 PM UTC+2, DP wrote: > > I had similar problem. I resolved it by adding xercesImpl a

Re: Internal Compiler Error / Xerces

2013-04-19 Thread DP
I had similar problem. I resolved it by adding xercesImpl artifact to my Maven pom.xml -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit

Re: GWT compiler error

2013-04-15 Thread Jens
Have you tried to delete your gwt-unitCache directory? -- J. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.c

GWT compiler error

2013-04-15 Thread Blake McBride
When I attempt to compile my app I get the following. I have no idea how to correct this. I am using: Juno Service Release 2 GWT 2.5.1 Thanks. Blake McBride Compiling module booklion.BookLion [ERROR] An internal compiler exception occurred com.google.gwt.dev.jjs.InternalCompilerExcepti

Re: Unexpected internal compiler error java.lang.NoSuchFieldError: warningThreshold when building

2012-03-29 Thread Zoran Polic
; helped at all... I am more then willing to give any info to help me > resolve this issue. > > [ERROR] Unexpected internal compiler error > [java] java.lang.NoSuchFieldError: warningThreshold > [java] at > com.google.gwt.dev.javac.JdtCompiler.getCompil

Unexpected internal compiler error

2012-02-10 Thread StephanLang
Hi, I'm using GWT SDK 2.4.0 and I'm getting the following error: [ERROR] Unexpected internal compiler error java.lang.NullPointerException at com.google.gwt.dev.javac.MethodVisitor.collectMethods(MethodVisitor.java:122) at com.google.gwt.dev.javac.MethodVisitor.

Unexpected internal compiler error java.lang.NoSuchFieldError: warningThreshold when building

2011-12-13 Thread JeffN
I get this error when building my project. I have seen other post stating to put the GWT at the top of my classpath and this has not helped at all... I am more then willing to give any info to help me resolve this issue. [ERROR] Unexpected internal compiler error [java

Re: GWT compiler error with ListType

2011-07-18 Thread Jeff Larsen
The server needs access to the proxy interface (The proxyFor/proxyForName get used in reflection on the server) -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/goog

Re: GWT compiler error with ListType

2011-07-16 Thread dreamer
Can you please review code speperation. in client package only keep GWT code in server package only keep server code in shared only keep DTO objects (value objects) (transported from client to server - should be serializable) To me - proxy - sounds like client proxy should be in - client package.

Re: Internal Compiler Error / Xerces

2011-07-15 Thread Juan Pablo Gardella
than a SAX Parser in your >> > classpath and this is the problem. I have a similar problem and resolve >> (in >> > maven, not in eclipse). See this >> > thread< >> http://groups.google.com/group/google-web-toolkit/browse_thread/threa...> >> > >> > 2011/

Re: Internal Compiler Error / Xerces

2011-07-15 Thread Jörn Gersdorf
r problem and resolve > (in > > maven, not in eclipse). See this > > thread< > http://groups.google.com/group/google-web-toolkit/browse_thread/threa...> > > > > 2011/7/14 Jörn Gersdorf > > > > > > > > > > > > > > > &g

Re: Internal Compiler Error / Xerces

2011-07-15 Thread dreamer
gt; > > Hi all, > > > we have a GWT project which is suddenly not compiling anymore but > > failing with an INternal Compiler error at > > > com.google.gwt.uibinder.rebind.W3cDocumentBuilder.startElement(W3cDocumentB > > uilder.java: > > 128). > > >

Aw: GWT compiler error with ListType

2011-07-15 Thread Jens
You probably imported something wrong in your NamedListProxy file. You have imported com.google.gwt.i18n.*server*.Type.ListType but every code thats in a *server* package is not seen by the GWT compiler and thats why you get that error. You have to remove that import in your NamedListProxy. --

Re: GWT compiler error with ListType

2011-07-15 Thread Magno Machado
Looks like you're referencing a server-side class On Fri, Jul 15, 2011 at 7:22 AM, pierre wrote: > Hi all, > > I have the following error from GWT compiler, event if the User > module is included: > > __ > > Compiling module com.soladhoc.friends.Friends > Validating new

GWT compiler error with ListType

2011-07-15 Thread pierre
Hi all, I have the following error from GWT compiler, event if the User module is included: __ Compiling module com.soladhoc.friends.Friends Validating newly compiled units [ERROR] Errors in 'file:/C:/Users/Pierre/workspace-GAE/Friends/ src/com/soladhoc/friends/s

Re: Internal Compiler Error / Xerces

2011-07-14 Thread Juan Pablo Gardella
4 Jörn Gersdorf > Hi all, > > we have a GWT project which is suddenly not compiling anymore but > failing with an INternal Compiler error at > > com.google.gwt.uibinder.rebind.W3cDocumentBuilder.startElement(W3cDocumentBuilder.java: > 128). > > This happens since a colle

Internal Compiler Error / Xerces

2011-07-14 Thread Jörn Gersdorf
Hi all, we have a GWT project which is suddenly not compiling anymore but failing with an INternal Compiler error at com.google.gwt.uibinder.rebind.W3cDocumentBuilder.startElement(W3cDocumentBuilder.java: 128). This happens since a collegue of mine has made some changes (unfortunately he'

Re: compiler error ClassNotFoundException: _j2se_j9=71168

2011-06-28 Thread Stevko
Seems to be the case - IBM and -localworkers does not mix well. Thanks Thomas for the tip on issue 4031 :) On Jun 28, 4:06 pm, Thomas Broyer wrote: > Are you using an IBM > JVM?http://code.google.com/p/google-web-toolkit/issues/detail?id=4031 -- You received this message because you are subscri

Re: compiler error ClassNotFoundException: _j2se_j9=71168

2011-06-28 Thread Thomas Broyer
Are you using an IBM JVM? http://code.google.com/p/google-web-toolkit/issues/detail?id=4031 -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/JMQ

Re: compiler error ClassNotFoundException: _j2se_j9=71168

2011-06-28 Thread Stevko
Is there something that makes permutation 0 different than the 7 other permutation? How can I tell what is the difference? On Jun 9, 3:10 pm, "A. Stevko" wrote: > I am getting this compiler error. Any tips on resolving it? > >    Compiling 8 permutations >       C

compiler error ClassNotFoundException: _j2se_j9=71168

2011-06-09 Thread A. Stevko
I am getting this compiler error. Any tips on resolving it? Compiling 8 permutations Compiling permutation 0... Process output [ERROR] Exception in thread "main" java.lang.NoClassDefFoundError: _j2se_j9=71168 [ERROR] Caused by: java.lang.ClassNotFoun

Re: Internal compiler error when upgrading vom 2.0.4 to 2.1.0.RC1

2010-12-09 Thread skrat
Awesome! Saved my ass too, thanks a ton On Oct 20, 3:45 pm, wolfgang wrote: > solved the problem. I changed the order in java build path (order and > export), so that GWT SDK is now on Top. > everything compiles without exception. > > On 15 Okt., 12:02, wolfgang wrote: > > > > > > > > > Sorry fo

Re: Internal compiler error when upgrading vom 2.0.4 to 2.1.0.RC1

2010-11-27 Thread Ltearno
Thank you so much i would have not thought of that ! U saved me !!! On 20 oct, 15:45, wolfgang wrote: > solved the problem. I changed the order in java build path (order and > export), so that GWT SDK is now on Top. > everything compiles without exception. > > On 15 Okt., 12:02, wolfgang wrote:

Re: Internal compiler error when upgrading vom 2.0.4 to 2.1.0.RC1

2010-10-20 Thread wolfgang
solved the problem. I changed the order in java build path (order and export), so that GWT SDK is now on Top. everything compiles without exception. On 15 Okt., 12:02, wolfgang wrote: > Sorry for posting this twice - haven't found the first post so I > assumed it got lost somewhere. > > On 15 Okt

Re: Internal compiler error when upgrading vom 2.0.4 to 2.1.0.RC1

2010-10-15 Thread wolfgang
Sorry for posting this twice - haven't found the first post so I assumed it got lost somewhere. On 15 Okt., 11:58, wolfgang wrote: > I got this error message from the compiler when I tried an upgrade > from 2.0.4 to 2.1.0.RC1: > >  [ERROR]  Internal compiler error > java.la

Internal compiler error when upgrading vom 2.0.4 to 2.1.0.RC1

2010-10-15 Thread wolfgang
I got this error message from the compiler when I tried an upgrade from 2.0.4 to 2.1.0.RC1: [ERROR] Internal compiler error java.lang.NoSuchMethodError: com.google.gwt.uibinder.rebind.UiBinderWriter.(Lcom/google/gwt/ core/ext/typeinfo/JClassType;Ljava/lang/String;Ljava/lang/String;Lcom/ google

Internal compiler error when upgrading vom 2.0.4 to 2.1.0.RC1

2010-10-13 Thread wolfgang
After upgrading to 2.1.0.RC1 I'm getting an "Internal compiler error" when compiling my project. Has anyone an idea why this happens and how I can solve this error? Have I missed an important point during the update process? Here is the exact error message: [ERROR] Internal

Re: GWT Compiler fails with 'Too many open files' error / internal compiler error

2010-06-03 Thread googelybear
It seems that I could fix the build by setting the max. nr of open files to 2048 (that as twice as much as the default). On Jun 2, 3:05 pm, googelybear wrote: > Ok this gets weirder, now I get another internal compiler error in > DisclosurePanel: > >      [java]    Scanning fo

Re: GWT Compiler fails with 'Too many open files' error / internal compiler error

2010-06-02 Thread googelybear
Ok this gets weirder, now I get another internal compiler error in DisclosurePanel: [java]Scanning for additional dependencies: jar:file:/opt/ gwt-2.0.3/gwt-user.jar!/com/google/gwt/user/client/ui/ DisclosurePanel.java [java] Computing all possible rebind results for

Re: GWT Compiler fails with 'Too many open files' error / internal compiler error

2010-06-02 Thread googelybear
I just checked on that machine and the global limit is 6'297'272, and the user limit for the user running the gwt compiler is 1024. Does gwt really need to open so many files? What would you recommend to set? On Jun 2, 1:23 am, googelybear wrote: > Hi Chris, > > yes it's a linux box (ubuntu). Th

Re: GWT Compiler fails with 'Too many open files' error / internal compiler error

2010-06-01 Thread googelybear
Hi Chris, yes it's a linux box (ubuntu). The weird thing is that it compiles fine on my workstation (also Ubuntu Linux) without tweaking (I run the gwt compiler via eclipse and not via ant but I thinkg that shouldn't make a difference). Thanks for your pointer, I will try to increase the limit to

Re: GWT Compiler fails with 'Too many open files' error / internal compiler error

2010-05-31 Thread Saima Waseem
*Make and extra income from home. International company seek motivated individuals to work from home. Positions available data entry, research and more* ** *http://www.clicknearn.net/3527-8.html* ** *http://www.clicknearn.net/3527-79.html* ** *http://www.clicknearn.net/3527-81.html* ** *http://www.

Re: GWT Compiler fails with 'Too many open files' error / internal compiler error

2010-05-31 Thread Chris Lercher
Hi, are you on Linux? There's a limit of open files you can have. Google for "Too many open files" to find a solution. Here's a good page: http://confluence.atlassian.com/display/CONF29/Fix+'Too+many+open+files'+error+on+Linux+by+increasing+filehandles If your parameters are in a normal range bef

GWT Compiler fails with 'Too many open files' error / internal compiler error

2010-05-31 Thread googelybear
Hi, When I compile my gwt project via ant I regularly get the following error '[java] Invoking com.google.gwt.dev.javac.standardgeneratorcont...@28e4f4ad [java][ERROR] Generator 'com.google.gwt.uibinder.rebind.UiBinderGenerator' threw threw an exception while rebin

Use of com.google.gwt.jsonp.client.JsonpRequestBuilde and compiler error message

2010-03-06 Thread a...@syd
Hi, all, I have tried to use the said class in my GWT project. When I tried to compile the code, I got this error message: No source code is available for type com.google.gwt.jsonp.client.JsonpRequestBuilder; did you forget to inherit a required module? It is not obvious from the doc if I need

Re: GWT compiler error

2010-02-08 Thread Steve B
You will probably need to be more specific in order to get help. Are you managing to compile any GWT modules, or is it just this one module that won't compile? On Feb 8, 1:27 am, mic wrote: > I am seeing this error while compiling a module... > > [ERROR] Unexpected > java.lang.NullPointerExceptio

GWT compiler error

2010-02-07 Thread mic
I am seeing this error while compiling a module... [ERROR] Unexpected java.lang.NullPointerException at com.google.gwt.dev.javac.JdtCompiler $FindTypesInCud.visit(JdtCompiler.java:178) at org.eclipse.jdt.internal.compiler.ast.TypeDeclaration.traverse(TypeDeclaration.java: 1253) at org.

Internal Compiler Error

2009-05-12 Thread Flo K
ernal compiler error Error:at java.io.ObjectStreamClass$FieldReflector.getPrimFieldValues(ObjectStreamClass.java:1907) Error:at java.io.ObjectStreamClass.getPrimFieldValues(ObjectStreamClass.java:1184) Error:at java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1494) Err

Re: compiler error in GWT 1.6 RC2

2009-04-10 Thread Raziel
   [java] Compiling module com.parvia.builder.Builder >      [java]    [ERROR] Unexpected internal compiler error >      [java] java.lang.StackOverflowError >      [java]     at java.lang.Exception.(Exception.java:77) >      [java]     at > java.lang.reflect.InvocationTargetE

Re: compiler error in GWT 1.6 RC2

2009-04-10 Thread Raziel
builder.Builder >      [java]    [ERROR] Unexpected internal compiler error >      [java] java.lang.StackOverflowError >      [java]     at java.lang.Exception.(Exception.java:77) >      [java]     at > java.lang.reflect.InvocationTargetException.(Invoc

Re: compiler error in GWT 1.6 RC2

2009-04-08 Thread Sumit Chandel
I try to compile, I get the error below, in > com.google.gwt.dev.Compiler. > Has anybody seen this before? > > > --- > > [java] Compiling module com.parvia.builder.Builder > [java][ERROR] Unexpected internal compiler error > [java] java.lang.St

compiler error in GWT 1.6 RC2

2009-04-02 Thread L Frohman
internal compiler error [java] java.lang.StackOverflowError [java] at java.lang.Exception.(Exception.java:77) [java] at java.lang.reflect.InvocationTargetException.(InvocationTargetException.java:54) [java] at sun.reflect.GeneratedMethodAccessor54.invoke(Unknown Source

Re: GWT 1.5.3 Compiler error with org.cobogw.gwt-1.2.2.jar file

2009-03-30 Thread nickle
Hi Hilbrand, Thanks for all your help! The problem turned out to be that one of our gwt.xml files did NOT have the inherits. thanks again, nick On Mar 29, 4:33 pm, Hilbrand wrote: > Hi Nick, > > The message indicates or the source files are not present or the > cobogw User.gwt.xml could not b

Re: GWT 1.5.3 Compiler error with org.cobogw.gwt-1.2.2.jar file

2009-03-29 Thread Hilbrand
Hi Nick, The message indicates or the source files are not present or the cobogw User.gwt.xml could not be found. I can think of the following possible causes: 1) The file that generates the errors is part of a module that using a gwt.xml not including the cobogw User.gwt.xml file. In any case

Re: GWT 1.5.3 Compiler error with org.cobogw.gwt-1.2.2.jar file

2009-03-29 Thread nickle
Hi Hilbrand, 1. Here is the actual error: 2009-03-29 13:58:25,032 [Thread-8637] INFO - [echo] Compiling GWT with /opt/gwt-linux-1.5.3/gwt-dev-linux.jar 2009-03-29 13:58:25,032 [Thread-8637] INFO - [echo] Java Version is 1.6.0_01-b06 2009-03-29 13:58:35,767 [Thread-8637] INFO -

Re: GWT 1.5.3 Compiler error with org.cobogw.gwt-1.2.2.jar file

2009-03-28 Thread Hilbrand
Hi Nick, The configuration you mention is correct, so it should work. It might be the jar file is somehow not added to the class path. Can you post the exact error and line in the ant file that adds the jar file to the class path, in order to help you further. Regards, Hilbrand. On Mar 27, 1:

GWT 1.5.3 Compiler error with org.cobogw.gwt-1.2.2.jar file

2009-03-27 Thread nickle
All: I am receiving a compilation error stating that the source file for the classes I import from the org.cobogw.gwt-1.2.2.jar cannot be found. 1. I have the following line in my .gwt.xml file 2. org.cobogw.gwt-1.2.2.jar is in the classpath during compilation 3. Using an ant build script A

Re: "static method wrap(Element) conflicts" compiler error. Why?

2008-12-17 Thread John Gunther
Sorry missed your reply until now. Such an error message as you suggest would have made it a lot easier, in my case, to track down what the problem was. Part of the issue is that 1.4 compliance does not fail in every case, so I had been working along for a while with GWT 1.5 and 1.4 compliance wi

Re: Compiler error linked to number of oracle records

2008-11-15 Thread Ian Bambury
to. > > Anyone know of a fix? > > Ian > > > [ERROR] Unexpected internal compiler error > java.lang.NoClassDefFoundError: Could not initialize class > com.google.gwt.dev.jjs.InternalCompilerException > at > com.google.gwt.dev.js.ast.

Re: "static method wrap(Element) conflicts" compiler error. Why?

2008-11-11 Thread Jason Essington
Well in general the code is probably filled with syntax errors when using the Java 1.4 compiler ... And since GWT 1.5.x is not compatible with the Java 1.4 compiler I would consider this a non issue. Since GWT 1.5 is not compatible with Java 1.4 I would not expect it to work and the message

"static method wrap(Element) conflicts" compiler error. Why?

2008-11-10 Thread John Gunther
Using GWT 1.5.2, and starting with this class: public class NamedHTML extends HTML implements HasName { public String getName() {return null;} public void setName(String name) {} } If I compile the above class in Eclipse with Project, Properties, Java Compiler, "Compiler complia

Compiler error linked to number of oracle records

2008-11-09 Thread Ian Bambury
I can't compile if the number of oracle records is too high (around 1150 but it depends on the content of each) It will quite happily screw up any project I move it to. Anyone know of a fix? Ian [ERROR] Unexpected internal compiler error java.lang.NoClassDefFoundError: Could not initi

Re: Internal compiler error with 1.5.2

2008-09-02 Thread xoferiF
mpile classpath, and the error is gone... Hope this works for you. Kevin On Sep 1, 12:06 am, Steve Storey <[EMAIL PROTECTED]> wrote: > Hi, > > I've just upgraded from 1.4.60 to 1.5.2 and am now getting an internal > compiler error with my code: > >      [java] Compi

Re: Internal compiler error with 1.5.2

2008-09-01 Thread Steve Storey
it- steve i will look at > it and get back to you. > > On Sep 1, 2:06 am, Steve Storey <[EMAIL PROTECTED]> wrote: > > > Hi, > > > I've just upgraded from 1.4.60 to 1.5.2 and am now getting an internal > > compiler error with my code: > > >    

Re: Internal compiler error with 1.5.2

2008-08-31 Thread mP
TED]> wrote: > Hi, > > I've just upgraded from 1.4.60 to 1.5.2 and am now getting an internal > compiler error with my code: > > [java] Compiling permutations > [java]Analyzing permutation #1 > [java] [ERROR] An internal compi

Internal compiler error with 1.5.2

2008-08-31 Thread Steve Storey
Hi, I've just upgraded from 1.4.60 to 1.5.2 and am now getting an internal compiler error with my code: [java] Compiling permutations [java]Analyzing permutation #1 [java] [ERROR] An internal compiler exception occurred