Re: Can not run GWT from eclipse on 64-bit Windows 7

2011-01-08 Thread markM
Try JSF and you'll be doing this every day! On Jan 7, 3:34 pm, Nathaniel Auvil nathaniel.au...@gmail.com wrote: I have another GWT project which does work on this machine.  so i started looking anywhere i could think... .project .classpath etc so there were some differences in those

Can not run GWT from eclipse on 64-bit Windows 7

2011-01-07 Thread Marley
I have the latest Eclipse and the latest GWT eclipse plug-in. My application works on 32-bit XP however i got a new machine running Windows 7 professional 64-bit When i try to launch my application i get the following error from GWT: 09:41:19.956 [ERROR] [my_gwt] Failed to load module 'my_gwt'

Re: Can not run GWT from eclipse on 64-bit Windows 7

2011-01-07 Thread Marley
if i compile via ant and deploy to my local weblogic server, everything works fine. This is the only error i have to go by...there is nothing else which is frustrating. I am using GWT 2.0.4. Does that support 64-bit windows? On Jan 7, 9:45 am, Marley nathaniel.au...@gmail.com wrote: I have

Re: Can not run GWT from eclipse on 64-bit Windows 7

2011-01-07 Thread David Chandler
What's in your WEB-INF/lib? This error occurs when there are multiple versions of the JDT CompilerOptions class on the classpath, one of which comes from gwt-dev.jar: org/eclipse/jdt/internal/compiler/impl/CompilerOptions.class /dmc On Fri, Jan 7, 2011 at 10:28 AM, Marley

Re: Can not run GWT from eclipse on 64-bit Windows 7

2011-01-07 Thread Marley
the only gwt related jar under WEB-INF lib is: gwt-servlet-2.0.4.jar My project shows the reference for the GWT SDK 2.0.4 as created by the Google Eclipse plugin On Jan 7, 10:39 am, David Chandler drfibona...@google.com wrote: What's in your WEB-INF/lib? This error occurs when there are

Re: Can not run GWT from eclipse on 64-bit Windows 7

2011-01-07 Thread David Chandler
Try opening WEB-INF/lib dir in WinRAR and search for CompilerOptions.class. Of if you have cygwin installed, you can use this script: #!/bin/sh LOOK_FOR=$1 for i in `find . -name *jar` do echo $i jar tvf $i | grep $LOOK_FOR done Then cd WEB-INF/lib jargrep CompilerOptions On Fri, Jan 7,

Re: Can not run GWT from eclipse on 64-bit Windows 7

2011-01-07 Thread Nathaniel Auvil
I have another GWT project which does work on this machine. so i started looking anywhere i could think... .project .classpath etc so there were some differences in those files. I moved the GWT classpath entry before the JRE_CONTAINER entry and it worked. However, when i move the