Re: gwt compile error "No source code" using gwt-lib with transient sources

2016-11-28 Thread Michael Budnick
It's my mistake, I had a typing error in the path with the lib-shared classes. So [ERROR] Line 8: No source code is available was correct because the java file was on an other location then the packagename sayes. -- You received this message because you are subscribed to the Google Groups "GWT

gwt compile error "No source code" using gwt-lib with transient sources

2016-11-25 Thread Michael Budnick
My current maven project (named refBuecherWelt) is based on 3 submodule (shared,server,client) layout from the gwt-maven-archetypes [1]. The refBuecherWelt-client submodule (a gwt-app) depend on an other lib (named universalclientLib) which is build in an independend maven project. When I

GWT Compile Error - Did I forget to inherit a required module?

2013-03-01 Thread Manuel
Hi everyone, I implemented session-per-request from herehttp://code.google.com/p/google-guice/wiki/JPA#Web_Environments_%28session-per-http-request%29 . Since then I got +7 Ignored compilation errors. Does anyone know how to fix that ? I tried to add the following in my gwt.xml, but that

Re: GWT Compile Error - Did I forget to inherit a required module?

2013-03-01 Thread Manuel
Sorry for the noise. I had to put my server classes in the server folder instead of shared. That fixed my problems. Regards, Manuel Am Samstag, 2. März 2013 00:49:10 UTC+1 schrieb Manuel: Hi everyone, I implemented session-per-request from

How to get gwt compile error in a gwt generator

2012-01-31 Thread Patrice De Saint Steban
Hello, I'm created a generator for automatically build the activityMapper. The generator scan alls Activities defined in the project and build the activityMapper. I use the JClassType.getSubtypes() for get all subtypes of Activity in the application. My problems is when a developper do a GWT

GWT compile error- AsyncFragmentLoader.onLoad

2011-11-18 Thread Nupur
Hi, I posted this some where else, but not sure if it was in the right place. Sorry if this qualifies as cross-posting, but I really need to solve this problem. I have created a GWT project in Eclipse. It compiles fine from Eclipse, but on GWT compile, I get [ERROR] An internal compiler

Re: Strange gwt compile error: JPrimitiveType JReferenceType

2011-05-25 Thread Raphael André Bauer
On Fri, May 20, 2011 at 3:34 PM, Raphael André Bauer raphael.andre.ba...@gmail.com wrote: On Fri, May 20, 2011 at 3:15 PM, Brian Reilly brian.irei...@gmail.com wrote: ... Just a quick follow-up: - Bug 2478 seems to be related and I added a description of our problem

Strange gwt compile error: JPrimitiveType JReferenceType

2011-05-20 Thread Raphael André Bauer
Hi GWTlist, we are getting a strange compile exception and we are not sure where it comes from. The project is up and running for months now, but out of a sudden stopped working... Maybe somebody knows something like that (there is an issue [1] here, but I am not sure if it's related). Does

Re: Strange gwt compile error: JPrimitiveType JReferenceType

2011-05-20 Thread Raphael André Bauer
On Fri, May 20, 2011 at 10:29 AM, Raphael André Bauer raphael.andre.ba...@gmail.com wrote: Hi GWTlist, we are getting a strange compile exception and we are not sure where it comes from. The project is up and running for months now, but out of a sudden stopped working... Maybe somebody

Re: Strange gwt compile error: JPrimitiveType JReferenceType

2011-05-20 Thread Raphael André Bauer
On Fri, May 20, 2011 at 10:49 AM, Raphael André Bauer raphael.andre.ba...@gmail.com wrote: On Fri, May 20, 2011 at 10:29 AM, Raphael André Bauer raphael.andre.ba...@gmail.com wrote: Hi GWTlist, we are getting a strange compile exception and we are not sure where it comes from. The project

Re: Strange gwt compile error: JPrimitiveType JReferenceType

2011-05-20 Thread Brian Reilly
Have you recently moved to a newer version of GWT? The errors look vaguely like the kinds of errors that 3rd party libraries ran into when GWT 2.2 was released. However, I don't see any 3rd party packages listed in the stack trace. My best guess is that you may have multiple versions of the GWT

Re: Strange gwt compile error: JPrimitiveType JReferenceType

2011-05-20 Thread Raphael André Bauer
On Fri, May 20, 2011 at 3:15 PM, Brian Reilly brian.irei...@gmail.com wrote: Have you recently moved to a newer version of GWT? The errors look vaguely like the kinds of errors that 3rd party libraries ran into when GWT 2.2 was released. However, I don't see any 3rd party packages listed in

Re: GWT Compile Error with Tomcat (apache.commons) libary

2010-11-24 Thread 7of9
My solution is to compile the GWT module first and then move GWT SDK - GWT2.1.0 after Apache Tomcat and Web App Libraries library. The dynamic web project will then build itself. Restart Tomcat , everything works. I am not sure if this is a good solution. Every time I check out a new project, I

Re: GWT Compile Error with Tomcat (apache.commons) libary

2010-11-24 Thread ep
you might think about moving the GWT client code (which contains client and shared packages) into custom project to not mixup classpaths during compile and runtime, after all GWT produces piece of JS which is actually the one your project needs. so you dont need to recompile everytime, rather

Re: GWT Compile Error with Tomcat (apache.commons) libary

2010-11-24 Thread Sophia Shek
Thanks for the response ep. I was thinking about that as well. I also read another guy's post. He put GWT in seperate project. So two projects, one for front end, one for back end. It will be ideal whenever eclipse rebuilds the project, it compiles GWT as well. Or GWT stop override tomcat libary

Re: GWT Compile Error with Tomcat (apache.commons) libary

2010-11-24 Thread ep
I also read another guy's post. He put GWT in seperate project. So two projects, one for front end, one for back end. it is indeed very common to do it this way, maven could also help you here It will be ideal whenever eclipse rebuilds the project, it compiles GWT as you can do so, by

GWT Compile Error with Tomcat (apache.commons) libary - classpath related

2010-11-23 Thread 7of9
I am using eclipse(Galileo)+tomcat plugin+gwt plugin. The project uses Spring MVC+ lots of JSP, only one part of the system using GWT. That is for menu items. At the moment, every single time I check out a project, I have to compile the GWT module before I start my tomcat. There is known problem

GWT Compile Error and more

2010-11-23 Thread 7of9
When compile GWT,I receive the following error: [ERROR] Unexpected java.lang.NoSuchFieldError: reportUnusedDeclaredThrownExceptionIncludeDocCommentReference I googled around and found the solution - Right-click the project Properties - Java Build Path Order and Export - Move the GWT SDK

Re: GWT Compile Error with Tomcat (apache.commons) libary

2010-11-23 Thread Sophia Shek
More details: I am using eclipse(Galileo)+tomcat plugin+gwt plugin, The java build libraries’ order: JRE System libary GWT SDK - GWT2.1.0 Apache Tomcat Web App Libraries The project uses Spring MVC+ lots of JSP, only one part of the system using GWT. That is for menu items. At the moment, every

GWT compile error : Annotation error

2010-07-12 Thread dhana
Hi, When I try to compile my project using gwtc target, I am facing compilation errors [java]Resolving com.test.mypojobeanmodel [java] Found type 'com.test.mypojobeanmodel' [java] [ERROR] Annotation error: cannot resolve com.test.mypojo [java]

Re: GWT Compile Error when using JPA managers in another project.

2009-07-23 Thread JonJ27
Again, I have answered my own question after a lot of brain straining and head banging. It suddenly occurred to me that even in satelittle modudle you still need to specify the *.client and *.server packages to seperate out the logic of that you want GWT to compile and that you dont. Putting my

GWT Compile Error when using JPA managers in another project.

2009-07-22 Thread JonJ27
I have solved my original issue by creating a module.gwt.xml in the project i wish to reference and then use the inherits name in my main GWT project which sorts out my own class compile errors. Howvere there is now another issue. My other project is a JPA project and now when i do the GWT

Re: GWT Compile error

2009-06-17 Thread Georg
I fixed it for me by adding pathelement location=myproject\WebRoot \WEB-INF\classes/ to the gwt.compile.classpath Regards, Georg On 2 Jun., 07:29, Raul raahoo...@gmail.com wrote: Hello I am too having the same problem... it is fixed but donno how..??  

Re: GWT Compile error

2009-06-01 Thread bruce
I do have this class (com.extjs.gxt.ui.client.data.BeanModelLookup) in my classpath. any idea? On Apr 19, 4:25 pm, Salvador Diaz diaz.salva...@gmail.com wrote: If you read the whole stacktrace you'll see that there are other errors:  Scanning for additional dependencies:

Re: GWT Compile error

2009-06-01 Thread Raul
Hello I am too having the same problem... it is fixed but donno how..?? http://extjs.net/forum/showthread.php?t=67501 My stack trace look like : Refreshing module from source Refreshing TypeOracle Processing types in compilation unit:

Re: GWT Compile error

2009-04-19 Thread Salvador Diaz
If you read the whole stacktrace you'll see that there are other errors: Scanning for additional dependencies: jar:file:/D:/Program%20Files/ gxt-2.0-m1/gxt.jar!/com/extjs/gxt/ui/client/data/BeanModelLookup.java Computing all possible rebind results for