In case anyone else is having problems with the "Expected a valid
parameter type signature in JSNI method reference" error after moving
from 1.4 to 1.6.4 here is a possible solution:

It appears that spaces are no longer allowed in the signature. For
example this works in 1.4, but not in 1.6.4:
$wnd.function1 = [email protected]::function1( Ljava/lang/
String; );

Any spaces must be removed from the signature:
$wnd.function1 = [email protected]::function1(Ljava/lang/
String;);

Not that I care about having to have spaces in the signature, it was
just out of habit that I added them when I first built the code in gwt
1.4. The result was a bunch of time spent trying to figure out what
was wrong.  Hope this helps someone else.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to