Strange exception (IncompatibleClassChangeError) as super dev mod starts

2014-11-19 Thread Francois ANDRE
Hi all, I'm migrating all my GWT apps to 2.7.0. For one of these i've got this strange exception appearing quickly: java.lang.IncompatibleClassChangeError: class com.google.gwt.dev.javac.BytecodeSignatureMaker$CompileDependencyVisitor has interface org.objectweb.asm.ClassVisitor as super class

Re: Strange exception (IncompatibleClassChangeError) as super dev mod starts

2014-11-19 Thread Jens
GWT 2.7. requires ASM 5.x (because of Java8 support in the future) and you probably have ASM 3.x on class path as well. -- 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

Re: SDM with modular-webapp - no client-side debugging possible

2014-11-19 Thread Magnus
Could please someone give a little feedback? How could you further localize the problem? For example, normally, when selecting DevMode On, there is something going on in chrome's network tab: dev_mode_on.js is loaded and when you click on compile a lot of messages are written. In my case, when

Advanced cross-module usage

2014-11-19 Thread ghinta
I'm not sure what I'm doing is the best approach but something is wrong for sure: I have a core module A that does nothing but implement all logic and composites, a module of front-end (separated for reasons partially outside the scope of this discussion) B that implements in the onModuleLoad

Re: Strange exception (IncompatibleClassChangeError) as super dev mod starts

2014-11-19 Thread Francois ANDRE
Hi Jens, Thank you so much. It was exactly that ! Moreover, I've got to admit that I don't think I'd have ever found this out by myself. Thank you again. François 2014-11-19 17:45 GMT+01:00 Jens jens.nehlme...@gmail.com: GWT 2.7. requires ASM 5.x (because of Java8 support in the future) and

Re: Advanced cross-module usage

2014-11-19 Thread ghinta
A little update: I provisorily solved extending A service (server-side) implementation in C service implementation so it can find it and actually it works...still don't know if it is the best solution (or even if it exists another one) but practically it is a solution...now i would like to

Re: Advanced cross-module usage

2014-11-19 Thread ghinta
A little update: I provisorily solved extending A service (server-side) implementation in C service implementation so it can find it and actually it works...still don't know if it is the best solution (or even if it exists another one) but practically it is a solution...now i would like to

http://stackoverflow.com/questions/27031456/how-to-create-regular-expression-from-string

2014-11-19 Thread Alex Luya
Similar question has been asked here: How to pass a regular expression as a function parameter http://stackoverflow.com/questions/11143702/how-to-pass-a-regular-expression-as-a-function-parameter, but I can't get it work by JSNI. This is the string of the regular expression that will be

How to use javascript's regular expression by jsni?

2014-11-19 Thread Alex Luya
Hello: Similar question has been asked here: How to pass a regular expression as a function parameter http://stackoverflow.com/questions/11143702/how-to-pass-a-regular-expression-as-a-function-parameter, but I can't get it work by JSNI. This is the string of the regular expression that

Re: How to use javascript's regular expression by jsni?

2014-11-19 Thread Alberto Mancini
Hi, boolean reEmail() but you are using as a String in validate(t...@domain.com t...@domain.com,reEmail()); then regexp in the validate method is 're' when used but 'regexp' as a parameter. On Thu Nov 20 2014 at 8:18:32 AM Alex Luya alexander.l...@gmail.com wrote: Hello: Similar

Re: [gwt-contrib] Digest for google-web-toolkit-contributors@googlegroups.com - 1 update in 1 topic

2014-11-19 Thread Arnaud TOURNIER
Hello, I totally agree on your first two points. I would add a third which is that since this SAM functionnality will be very essential to javascript interoperability, it will be used a lot (already in some projects i am eagerly waiting for this to be implemented, instead of writing my own