Re: ERROR: The serialization policy file 'xxx.gwt.rpc' was not found; did you forget to include it in this deployment?

2017-12-27 Thread Magnus
roblem may be specific to my environment. I don't expect a straight solution, but I would appreciate any hints. What can I check, where should I look at. Where to go from here? Thanks Magnus -- You received this message because you are subscribed to the Google Groups "GWT Users" group.

ERROR: The serialization policy file 'xxx.gwt.rpc' was not found; did you forget to include it in this deployment?

2017-12-27 Thread Magnus
output below) There are several servlets defined in the web.xml, but only for this one (EventServlet) the error is shown. I have not touched the servlets and the web.xml. I have also cleaned and rebuild the project. How can I solve this? Thanks Magnus Running CodeServer with parameters: [-noprec

Re: Code references between client/server/shared folders

2017-06-01 Thread Magnus
s completely in the shared area, without making distinctions between server-side and client-side code... Regards Magnus -- 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

Code references between client/server/shared folders

2017-05-30 Thread Magnus
same time formatting code in client and server code? (At the moment I use com.google.gwt.i18n.client.DateTimeFormat at the client and SimpleDateFormat.format at the client.) Thanks Magnus BTW: What's the "public" folder for? I saw it in some projects but not in the docs... -- You rec

refactoring breaks project

2017-05-02 Thread Magnus
ile package install for all projects on the commandline But while rebuilding doesn't solve the problem, the problem disappears immediately when I move the class back to its original location. Any ideas? Thanks Magnus -- You received this message because you are subscribed to the Google Groups "GWT Use

Re: GWT/Maven development cycle takes much too long

2017-04-24 Thread Magnus
e modular-webapp doesn't. Since eclipse refactoring doesn't work on whole directory trees, this will be a lot of manual work... Thanks Magnus -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop recei

Re: GWT/Maven development cycle takes much too long

2017-04-24 Thread Magnus
it speeds up the development process. Thanks for your patience! .-) Magnus -- 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 email to google-web-toolki

Re: GWT/Maven development cycle takes much too long

2017-04-22 Thread Magnus
refers to "MojoExecutionException". Sorry, but I still cannot follow this. Which plugin am I using? And if it's the "wrong" one, how can I switch in my existing pom.xml? There seem to exist people without those problems. I simply want to do it the same way. Magnus -- You rec

Re: GWT/Maven development cycle takes much too long

2017-04-22 Thread Magnus
You mean that removing scope=provided isn't really a solution to the eclipse problem? What would you do in this case? Magnus -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails fro

Re: GWT/Maven development cycle takes much too long

2017-04-22 Thread Magnus
> > Your requirements is to have the JARs into the WAR (just like most other > people, so your requirements aren't wrong), so DO NOT use scope=provided. > Ok, but how can I have the JARs into the WAR then? If this is what most other people want, then there must be a solutio

Re: GWT/Maven development cycle takes much too long

2017-04-22 Thread Magnus
age) creates a package (war) with missing jar files. To make a long story short: - Before Maven I created a war file with all necessary jar files in WEB-INF/lib - With Maven this war file is actually missing those jar files. Please don't pay too much attention on my "requirements&

Re: GWT/Maven development cycle takes much too long

2017-04-22 Thread Magnus
external libs were included in WEB-INF/lib. Now - with Maven - I shall care about the libs a WAR file needs a *second time*? I already have specified all the dependencies in the pom.xml of my-lib. Why not include all the needed jar fiiles in WEB-INF/lib and have one WAR file that can be deployed

Re: GWT/Maven development cycle takes much too long

2017-04-22 Thread Magnus
move scope=provided, is completely outside eclipse: When I "mvn package" my app, the postgresql lib is not copied into the lib folder. Magnus -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group

Re: GWT/Maven development cycle takes much too long

2017-04-22 Thread Magnus
vided), then the error goes away. > > >> Maybe another scope is better? >> > > No. > The problem is that Eclipse wants to package your app. > This problem is outside eclipse. When I "mvn package" the app it results in missing libs in the WEB-INF/lib folder.

Re: GWT/Maven development cycle takes much too long

2017-04-22 Thread Magnus
r not containing the external libs! So I made one step backward, dependency resolution is enabled again, but the external jars are missing in the app folder. Maybe another scope is better? Magnus -- You received this message because you are subscribed to the Google Groups "GWT Users"

Re: GWT/Maven development cycle takes much too long

2017-04-21 Thread Magnus
can enable it for the lib project without problems. But as soon as I enable it for the app project, the error reappears. It's hard to figure it out when even the experts in this group have no idea. But I see that this is an essential point, so I have documented the error as detailed as possib

Re: GWT/Maven development cycle takes much too long

2017-04-21 Thread Magnus
t it be better for developing if the original library code was used instead? Could it be that this is the core of the problem? Thanks Magnus - pom.xml: http://maven.apache.org/POM/4.0.0; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; xsi:schemaLocation="http://maven.apache.org/

Re: GWT/Maven development cycle takes much too long

2017-04-20 Thread Magnus
ut what exactly are the steps you describe? Do you execute them on the commandline with maven commands or in eclipse? I really would like to do it the same way! Magnus -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe fro

Re: GWT/Maven development cycle takes much too long

2017-04-18 Thread Magnus
in the code of the library used by the app, correct this code and restart debugging the app. I also have posted what happens when I omit GWT compilation: I see old library code when debugging the application... Magnus -- You received this message because you are subscribed to the Google Groups

GWT/Maven development cycle takes much too long

2017-04-18 Thread Magnus
here? #-) The cycle described above takes about 20 minutes. What am I doing wrong? Thanks Magnus -- 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 email to google-web

Re: Maven/GWT - How to access resources in the resources folder?

2017-04-17 Thread Magnus
Ok, I created the directory src/main/resources and added some xml files there. But they don't get into the jar file... Below is my pom.xml. What's wrong? Magnus - http://maven.apache.org/POM/4.0.0; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; xsi:schemaLocation=

Re: Maven/GWT - How to access resources in the resources folder?

2017-04-16 Thread Magnus
Thanks, this describes the standard directory layout. If the src/main/directory doesn't exist: Can I simply create it or do I also have to declare it somewhere in the pom? Magnus -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To u

Maven/GWT - How to access resources in the resources folder?

2017-04-13 Thread Magnus
folder. So I have to create it. What's the standard location? src/main/resources? Thanks Magnus -- 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 email to google-w

Re: Debug library code in eclipse

2017-04-11 Thread Magnus
;real" source file first So is this really the way to go? Magnus -- 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 email to google-web-toolkit+unsubscr

Re: Debug library code in eclipse

2017-04-11 Thread Magnus
Now Jens' solution works for me. I had to do Maven -> "Update Project" and "Refresh" several times until it worked #-) Thanks! Magnus -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this gro

Re: Debug library code in eclipse

2017-04-11 Thread Magnus
ource not found". The JAR file /home/.../.m2/repository/msm/lib/acs/1.0-SNAPSHOT/msm-lib-acs-1.0-SNAPSHOT.jar has no source attachment. What may be still wrong? Magnus -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from

Re: Debug library code in eclipse

2017-04-11 Thread Magnus
Thanks, I'll try it out. But besides these two solutions: What about simply adding the library eclipse project as a dependent project to the application eclipse project? Magnus -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubs

Debug library code in eclipse

2017-04-10 Thread Magnus
y defined in the pom.xml? What's the right way to go? Thanks Magnus -- 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 email to google-web-toolkit+unsubscr...@googl

Eclipse: The hierarchy of the type is inconsistent

2017-04-06 Thread Magnus
piles fine on the command line. In eclipse, both projects were imported as "existing maven project". Note that I did not add "mylib" as a dependend project to "myapp", because I wanted to handle mylib as if it was provided by an external source. What may be wron

Re: How to deal with transitive maven dependencies?

2017-04-03 Thread Magnus
ely, then > create a pom.xml in "project" with pom and this > snippet: > > lib > app > > Then run all your Maven commands in the "project" folder (never in the > "lib" or "app" subfolders). > Ok, sounds good. I tried this

Re: How to deal with transitive maven dependencies?

2017-03-30 Thread Magnus
ned that yours is the one that is recommended. Then, I found that webAppCreator -templates maven creates a project template that I can work with. And I noticed net.ltgt.gwt.maven in the pom.xml. Therefore, I thought that I am using your plugin. But the error message discussed here is a "Mojo

Re: How to deal with transitive maven dependencies?

2017-03-30 Thread Magnus
Note that as soon as I set the scope back to provided the error is gone immediately. Maybe another scope is needed here? -- 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

Re: How to deal with transitive maven dependencies?

2017-03-30 Thread Magnus
msm-lib-acs/target/classes exists. What's still wrong? Thanks Magnus -- 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 email to google-web-toolkit+unsubscr...

Re: How to deal with transitive maven dependencies?

2017-03-29 Thread Magnus
Yes! It's taken from the maven repository! What about the dependencyManagement thing? Magnus -- 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 email to google-w

Re: How to deal with transitive maven dependencies?

2017-03-29 Thread Magnus
I have everything in the dependency section. Here are the complete pom files. Note that "mylib" is "msm-lib-acs" and "myapp" is "msm-app-mcs" (I am still struggeling with the Maven naming conventions.): *mylib aka msm-lib-acs, pom.xml:* http://maven.apache.org/POM/4.0.0;

How to deal with transitive maven dependencies?

2017-03-29 Thread Magnus
ring: Class.forName ("org.postgresql.Driver"); How can you include all dependent libraries in the final app package? Thanks Magnus -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emai

Re: Errors in UIBinder XML files

2017-03-27 Thread Magnus
This are the steps to reproduce the problem: - create the project: webAppCreator -templates sample,maven test.Application - import as "Maven Project" into eclipse - copy the above ui.xml file into the project Magnus -- You received this message because you are

Re: Errors in UIBinder XML files

2017-03-27 Thread Magnus
rror symbols in eclipse is boring and may hide real errors... Magnus -- 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 email to google-web-toolkit+unsubscr...@googlegroups

Re: Errors in UIBinder XML files

2017-03-24 Thread Magnus
> > @Magnus: I think you could fix that issue in Eclipse by disabling XML > validation. > It's true that the problem only exists inside eclipse. The maven project compiles without errors on the command line. But if the error results from XML validation: Why doesn't eclipse sho

Re: CSS resource not found in GWT library

2017-03-24 Thread Magnus
Ok, and when doing it the "usual" way - placing the resources in src/main/resources - can you shorten the references inside the ClientBundle java file somehow, i. e. avoid to specify the whole path for every resource? Thanks Magnus -- You received this message because you are

CSS resource not found in GWT library

2017-03-24 Thread Magnus
the ClientBundle java file. How do you do this? Thanks Magnus -- 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 email to google-web-toolkit+unsubscr...@google

Re: Errors in UIBinder XML files

2017-03-24 Thread Magnus
This is my UIBinder xml file: (It works within the old project) http://dl.google.com/gwt/DTD/xhtml.ent;> ... -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To

Errors in UIBinder XML files

2017-03-24 Thread Magnus
ava source files. What's the problem here? Magnus -- 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 email to google-web-toolkit+unsubscr...@googlegroups.com. To post

Re: Maven/GWT: include sources in jar with relative path?

2017-03-22 Thread Magnus
Thank you very much! This is great! Magnus -- 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 email to google-web-toolkit+unsubscr...@googlegroups.com. To post to

Maven/GWT: include sources in jar with relative path?

2017-03-21 Thread Magnus
to contain: clientstuff/MyDialog.java clientstuff/MyWindow.java How can I do that? Thanks Magnus -- 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 email to google-w

Re: Synchronization problems with maven and eclipse

2017-03-20 Thread Magnus
No more posts here? It should be a very common problem... Magnus -- 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 email to google-web-toolkit+unsubscr...@google

Re: error message and obfuscated code

2017-03-16 Thread Magnus
Ok, thank you! :-) -- 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 email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send email to

Re: Synchronization problems with maven and eclipse

2017-03-16 Thread Magnus
). Maven does all of this automatically. It's just the last step that is missing, i. e. working together with maven and eclipse... Magnus On Thursday, March 16, 2017 at 6:28:05 PM UTC+1, Rodolfo Raya wrote: > > I have several Java libraries shared by different applications, including >

Synchronization problems with maven and eclipse

2017-03-16 Thread Magnus
ill unclear, how the development process looks like, especially when you have a separate library project. Please show me, if this is written down somewhere. Thanks Magnus -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe

Re: Application works when started with maven, but not when started in eclipse

2017-03-16 Thread Magnus
evauation with a simple GWT project and a separate library I have seen several problems like this. But I think it's better to discuss this in a new thread, since it has nothing to do with the problem stated in the subject... Magnus -- You received this message because you are subscribed to the Goo

Re: Application works when started with maven, but not when started in eclipse

2017-03-16 Thread Magnus
No ideas? If you saw this error, what would you do next? -- 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 email to google-web-toolkit+unsubscr...@googlegroups.com. To post

Re: error message and obfuscated code

2017-03-15 Thread Magnus
On Wednesday, March 15, 2017 at 7:58:00 AM UTC+1, Thomas Broyer wrote: > > This is in a Chrome extension (apparently FBDown Video Downloader), not in > your app. But chrome shows "App.html" (my app's entry point) as the source of the error on the right? -- You received this message because

Re: Application works when started with maven, but not when started in eclipse

2017-03-15 Thread Magnus
*Output of eclipse: "Run As - GWT Development Mode with Jetty":* Running CodeServer with parameters: [-noprecompile, -port, 9876, -sourceLevel, 1.8, -bindAddress, 127.0.0.1, -launcherDir, /home/warker/dvl/prj/min/test-app/target/test-app-1.0-SNAPSHOT, -logLevel, INFO, -style, OBFUSCATED,

error message and obfuscated code

2017-03-14 Thread Magnus
doesn't seem to have any effect of what you see in chrome. How can I examine what's causing the error? Thanks Magnus -- 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

Re: How to avoid warning "Server class xyz could not be found in the web app, but was found on the system classpath"?

2017-03-11 Thread Magnus
Thank you! -- 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 email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send email to

Re: How to avoid warning "Server class xyz could not be found in the web app, but was found on the system classpath"?

2017-03-10 Thread Magnus
Update: gwt-servlet.jar exists in war/WEB-INF/lib/ -- 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 email to google-web-toolkit+unsubscr...@googlegroups.com. To post to

How to avoid warning "Server class xyz could not be found in the web app, but was found on the system classpath"?

2017-03-09 Thread Magnus
liminate this warning? Thanks Magnus -- 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 email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this

Re: GWT Eclipse Plugin - three development modes

2017-03-08 Thread Magnus
serve that code as well. It's > basically the "serve your files yourself" mode. > How do you quickly provide such a server? Can eclipse do this or are there maven goals? What are the benefits of option 1? Thanks Magnus -- You received this message because you are subscribed t

GWT Eclipse Plugin - three development modes

2017-03-08 Thread Magnus
find any GWT Modules on this page.". While the documentation is very verbose for "GWT Development Mode with Jetty", it doesn't show in detail how to use "GWT Development Mode". What am I missing? Thanks Magnus -- You received this message because you are subscribed to t

Re: Mojo's Maven Plugin for GWT - general questions

2017-03-06 Thread Magnus
> > But this is the documentation of the plugin, not the documentation of the > archetype. Follow the archetype documentation, or one of the Brandon > tutorial.  Ok, I see: The plugin can be used in any maven project and the archetype is just one template for them... Thanks -- You

Re: Mojo's Maven Plugin for GWT - general questions

2017-03-04 Thread Magnus
if you could fix this... Magnus -- 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 email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group,

Re: Mojo's Maven Plugin for GWT - general questions

2017-03-04 Thread Magnus
ave a GWT run configuration after choosing on of the > entries in the context menu you have shown in your previous mail. If you > configure it and open the GWT section you will see that you have no > available modules > This is correct. But I cannot add any modules in this dialog. Magnus --

Re: Mojo's Maven Plugin for GWT - general questions

2017-03-02 Thread Magnus
Hello, no more posts here? :-) I have looked inside some pom.xml files. What if really beginning from scratch, like Thomas recommended? How would you modify a pom.xml so that you can start a debugging session in eclipse? Magnus -- You received this message because you are subscribed

Re: Mojo's Maven Plugin for GWT - general questions

2017-02-28 Thread Magnus
ed many GWT modules in my projects and for my first steps with Maven I would like to have something equivalent. I am sure that this would be important for many new users. Now that all my tools are up to date, there must be an approach for me... Thanks Magnus -- You received this message

Re: Mojo's Maven Plugin for GWT - general questions

2017-02-27 Thread Magnus
can I find the new one? Anyhow, I would prefer to create the project outside eclipse (like shown in the documentation above). How can I do that? Thanks Magnus -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this grou

Re: Mojo's Maven Plugin for GWT - general questions

2017-02-26 Thread Magnus
e can clarify this... Magnus -- 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 email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send emai

Re: Mojo's Maven Plugin for GWT - general questions

2017-02-26 Thread Magnus
resent.) The project was created like this: mvn archetype:generate \ -DarchetypeGroupId=org.codehaus.mojo \ -DarchetypeArtifactId=gwt-maven-plugin \ -DarchetypeVersion=2.8.0 Then, it was imported into eclipse by selecting "Import existing maven projects". What's wrong? Thanks

Mojo's Maven Plugin for GWT - general questions

2017-02-25 Thread Magnus
ly to the pom.xml file? I thought that everything is generated when using the maven artefact? Thanks Magnus -- 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 email to goog

Re: Mojo's Maven Plugin: errors with mvn gwt:run

2017-02-24 Thread Magnus
> > Those aren't errors, they're logs to the standard error (stderr) that the > plugin routes as Maven error logs. Hello Thomas, thank you! Can you fix this somehow? I am sure that you'll miss real errors then... Magnus -- You received this message because you are subscribed to t

Mojo's Maven Plugin: errors with mvn gwt:run

2017-02-23 Thread Magnus
Why am I getting those errors? Thanks Magnus $ mvn gwt:run [INFO] Scanning for projects... [INFO] [INFO] [INFO] Building Maven Archetype for GWT 1.

Re: compiler errors after upgrade to gwt 2.8.0

2017-02-16 Thread Magnus
e option didn't come back. So my eclipse installation (Mars) seems to be corrupted now? (I did the installation as recommended by starting eclipse as root first.) Thanks Magnus -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubs

Re: compiler errors after upgrade to gwt 2.8.0

2017-02-16 Thread Magnus
paragraph it refers to installing the plugin with the eclipse UI. What's the right way then? Thanks Magnus -- 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 email t

Re: compiler errors after upgrade to gwt 2.8.0

2017-02-16 Thread Magnus
Hello Juan, sorry, it seems that I didn't point out that my problem is solved! After executing "mvn eclipse:eclipse" the errors are gone! So what's wrong with "eclipse:eclipse" then? Thanks Magnus -- You received this message because you are subscribed to the Google Group

Re: compiler errors after upgrade to gwt 2.8.0

2017-02-16 Thread Magnus
lipse" and this .classpath file was regenerated with the correct gwt version! Is this the way to go? Sorry, I am still new to maven... Magnus -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop r

Re: compiler errors after upgrade to gwt 2.8.0

2017-02-16 Thread Magnus
library project. The library project is a maven project with server-side and client-side (GWT) code. I upgraded it to GWT 2.8.0 by editing the pom.xml and executing "mvn package". Where should I look next? Thanks Magnus -- You received this message because you are subscribed to the

compiler errors after upgrade to gwt 2.8.0

2017-02-15 Thread Magnus
Hello, after upgrading a project from GWT 2.7.0 to GWT 2.8.0 I and when compiling with the GWT compiler using the -strict option, I get a lot of errors like this: Tracing compile failure path for type 'java.util.stream.Stream' [ERROR] Errors in 'jar:file:/home/magnus/dvl/lib/gwt

Re: Which maven archetype for GWT applications?

2017-02-13 Thread Magnus
he groupId and artefactId correcty... Thanks Magnus -- 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 email to google-web-toolkit+unsubscr...@googlegroups.com. To post to th

Re: Which maven archetype for GWT applications?

2017-02-13 Thread Magnus
Hi Juan! It's only enabled in Project explorer view (in package explorer view > doesn't work) > You're totally right! I didn't use the project explorer view before, but it shows the hierarchical structure of the project! This seems to be a solution for me. Thanks! Magnus -- You re

Re: Which maven archetype for GWT applications?

2017-02-13 Thread Magnus
Hi Juan, thanks, but my package presentation is already set to "hierarchical". I would be glad if I could fix this with an eclipse setting... Magnus -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from

Re: Which maven archetype for GWT applications?

2017-02-13 Thread Magnus
4 top-level projects in eclipse? <https://lh3.googleusercontent.com/-apfbNjwrVis/WKHZkYUXxeI/ALY/RhSKJiW088wqjn9LPYzy5rl7HxIfCBO9QCLcB/s1600/Maven.png> This is a problem for me... Magnus -- You received this message because you are subscribed to the Google Groups "

Re: Which maven archetype for GWT applications?

2017-02-12 Thread Magnus
Hello, thank you! It looks interesting. But I think it would be better to be independend of a web page, wouldn't it? Magnus -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails fro

Which maven archetype for GWT applications?

2017-02-12 Thread Magnus
y projects. (Can you avoid this?) I know that there are several methods of using maven with eclipse and that there are different plugins. Maybe the errors I saw with Codehaus result from this. However, what can you recommend? Thanks Magnus -- You received this message because you are subs

ConcurrentModificationException while debugging server-side code while client is making RPC calls

2017-02-05 Thread Magnus
aving breakpoints, the exception is thrown... It seems to have something to do with stepping through server-side code while the client is making RPC calls... How do you deal with such problems? Thanks Magnus -- You received this message because you are subscribed to the Google Groups "GWT Users&

Share code with java-only and GWT-based code

2017-02-05 Thread Magnus
have to modify the pom.xml file to include the source code in the jar? How is this done right? Thanks Magnus -- 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 email to

Re: GWT/Maven: No source code is available for type junit.framework.Test; did you forget to inherit a required module?

2017-01-28 Thread Magnus
d then build > two different jar's (one that only contains GWT code, and another only > containing code incompatible to GWT) by reading the annotation. That is > basically the approach Guava uses to build guava.jar and guava-gwt.jar. > Sounds interesting. Where can I read about this?

Re: GWT/Maven: No source code is available for type junit.framework.Test; did you forget to inherit a required module?

2017-01-28 Thread Magnus
ignore" the code under the general folder, doesn't it?) Thanks Magnus -- 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 email to google-web-toolkit+unsubscr...@g

Re: GWT/Maven: No source code is available for type junit.framework.Test; did you forget to inherit a required module?

2017-01-26 Thread Magnus
s present in the application. Can I do this or must I keep the both libraries separated? Thank you very much! Magnus -- 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

Re: GWT/Maven: No source code is available for type junit.framework.Test; did you forget to inherit a required module?

2017-01-26 Thread Magnus
ot yet. My plan is to also move the applications to Maven. But first they should work in the intermediate step... Thanks Magnus -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving ema

Re: GWT/Maven: No source code is available for type junit.framework.Test; did you forget to inherit a required module?

2017-01-25 Thread Magnus
junit. I would like to understand, why the GWT compiler "sees" the AppTest.java file here? Thank you Magnus -- 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

GWT/Maven: No source code is available for type junit.framework.Test; did you forget to inherit a required module?

2017-01-25 Thread Magnus
to inherit a required module? [ERROR] Aborting compile due to errors in some input files What's going on here? Why does the GWT compiler see the test folder, allthough there is no *.gwt-xml file referencing it? How can I resolve the problem? Thanks Magnus -- You received this message because you

Re: Problems with ClickEvents when using CellTree within DataGrid.

2016-11-15 Thread magnus . persson
On Monday, November 14, 2016 at 11:06:19 AM UTC+1, Thomas Broyer wrote: > > > > On Monday, November 14, 2016 at 10:51:35 AM UTC+1, magnus@raybased.com > wrote: >> >> I have some problems when using a CellTree within a DataGrid. >> Everything works except w

Problem when clicking on a CellTree within a DataGrid.

2016-11-15 Thread magnus . persson
I have put a GWT-CellTree in a DataGrid. It works except for one thing: When clicking on the tree-expand-icon, nothing happens. How can this be fixed ? best regards, Magnus package com.raybased.gwt.configtool.client.grid; import com.google.gwt.core.client.EntryPoint; import

Problems with ClickEvents when using CellTree within DataGrid.

2016-11-14 Thread magnus . persson
I have some problems when using a CellTree within a DataGrid. Everything works except when clicking on the tree, nothing happens. I would expect the tree to expand/retract. Does anyone know of a solution ? best regards, Magnus package com.raybased.gwt.configtool.client.grid; import

How to store configuration outside the database?

2016-11-06 Thread Magnus
? Thanks Magnus -- 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 email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send email to google-w

Re: How to sort a list of objects from the shared folder on server-side?

2016-05-25 Thread Magnus
On Thursday, May 19, 2016 at 7:12:59 PM UTC+2, Jens wrote: > > Don't implement Comparable in your shared class but instead use > Collections.sort(List, Comparator) on your server. The comparator can then > only live on the server. > This works fine! Thank you! Magnus -

How to sort a list of objects from the shared folder on server-side?

2016-05-19 Thread Magnus
.sort? If not, how would you solve this? Thanks Magnus -- 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 email to google-web-toolkit+unsubscr...@googlegroups.com. To post to t

Re: unable to resolve class referenced by JS native method?

2016-01-15 Thread Magnus
Hello, I am trying to make a minimal example, but every minimal approach is working for me. Only the existing project which is a GWT application project using classes from a separate library with a separate GWT module doesn't work. I always get "unable to resolve class". Please he

Re: unable to resolve class referenced by JS native method?

2016-01-15 Thread Magnus
ent.awi.setParameter(...) the problem was solved. I will now stop using such confusing names. However, something must have changed. This code worked until spring 2015. I wonder why it stopped working then... Magnus -- You received this message because you are subscribed to the Google Group

unable to resolve class referenced by JS native method?

2016-01-14 Thread Magnus
sWidget { protected JavaScriptObject obj = null; ... Note that the class "FierensGraphicsWidget" can be referenced without problems from Java. But the native method "draw" above cannot reference the member "obj". I don't know where to start. Could someone point me in t

Re: unable to resolve class referenced by JS native method?

2016-01-14 Thread Magnus
Note that TestWidget extends FierensGraphicsWidget, so it should be able to access the latter's member "obj". -- 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 email to

  1   2   3   4   5   6   7   8   >