Re: Why doesn't GWTP allow Object (created by us) to pass through ActionHandler?

2014-04-24 Thread Jens
Customer needs to implement Serializable (or IsSerializable) -- 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 it, send an email to

Re: GWT import external jar

2014-04-24 Thread Iqbal Singh
Hi I am also facing this same problem. i have a jar file that contains .class files which I need for my project How do I import them to my GWT project? On Sunday, May 24, 2009 8:27:24 PM UTC-4, vogella wrote: Hi, I included a example description for including external jars / Java projects

Accessing GWT functions through javascript

2014-04-24 Thread Tushar Tuteja
I have a gwt click handler which I want to invoke from javascript code . Can anyone give me a link to a example if it is possible. I want to pass an object also that I have defined as a java class in gwt.. regards, Tushar Tuteja -- You received this message because you are subscribed to the

Re: Accessing GWT functions through javascript

2014-04-24 Thread Alberto Mancini
Hi, I think this may help you: http://www.gwtproject.org/doc/latest/DevGuideCodingBasicsJSNI.html Cheers, Alberto On Wed, Apr 23, 2014 at 1:04 PM, Tushar Tuteja ttut...@gmail.com wrote: I have a gwt click handler which I want to invoke from javascript code . Can anyone give me a link to a

Re: Exception while dispatching incoming RPC call

2014-04-24 Thread Davide Micheletti
what's the code at RPC.java:579? if you have a DB, does the app connect succesfully to the DB?? On Thu, Apr 24, 2014 at 1:16 AM, Charles Nelson silkyhotli...@gmail.comwrote: I have an app that works perfectly in my development environment of eclipse/jetty. It also work fine when I deploy it

Re: Loading gwt-script from other site to run x-site

2014-04-24 Thread Thomas Broyer
To enable cross-site loading, just use the CrossSiteIframeLinker: add the following line to your gwt.xml: add-linker name=xsiframe/ Note: this will be the default in GWT 2.7. On Tuesday, April 22, 2014 12:51:12 PM UTC+2, Clundahl wrote: Hi folks I have a case where I am supposed to develop

Re: Cross Server Debugging

2014-04-24 Thread Thomas Broyer
On Tuesday, April 22, 2014 5:13:57 PM UTC+2, skippy wrote: I am not having problems with binding to the cross server debugger. Any thoughts? I am testing on a VM with IE11 trying to connect to my development server. I am using my IP address and not localhost. When I try to bind to

Re: GWT import external jar

2014-04-24 Thread Juan Pablo Gardella
If you want to use this jar to be converted to javascript you need to add the sources no the .class. If you are using maven is easy: dependency groupIdcom.foo/groupId artifactIdfoo/artifactId version/version !-- Probably provided if you only use in the client side.--

Re: Exception while dispatching incoming RPC call

2014-04-24 Thread Charles Nelson
Hmm, I didn't know what is the code at RPC.java was because it's part of the GWT SDK and is supplied as a class in a jar file. But I did find the relevant source code on the web and snippets from it are shown below. The actual RPC.java is attached to this message. The error I'm getting seems to

Re: Exception while dispatching incoming RPC call

2014-04-24 Thread Jens
The error I'm getting seems to suggest that there may be an issue with the serialization policy file. But if that is true then why doesn't it fail on my local machine? You should see a log entry saying that the serialization policy file could not be loaded. That log entry only appears

Re: Loading gwt-script from other site to run x-site

2014-04-24 Thread Clundahl
Tanx, I will try that. Den torsdagen den 24:e april 2014 kl. 12:14:18 UTC+2 skrev Thomas Broyer: To enable cross-site loading, just use the CrossSiteIframeLinker: add the following line to your gwt.xml: add-linker name=xsiframe/ Note: this will be the default in GWT 2.7. On Tuesday,

Re: Exception while dispatching incoming RPC call

2014-04-24 Thread Charles Nelson
I've tried manually setting the service URL with setServiceEntryPoint(URL), ensuring the ServletContext.getResource() call and overriding the RemoteServiceServlet.doGetSerializationPolicy() methods but my app still fails on my hosting company's server. And they aren't providing access to the

Re: Exception while dispatching incoming RPC call

2014-04-24 Thread Michael Joyner
On 04/24/2014 01:44 PM, Charles Nelson wrote: I've tried manually setting the service URL with setServiceEntryPoint(URL), ensuring the ServletContext.getResource() call and overriding the RemoteServiceServlet.doGetSerializationPolicy() methods but my app still fails on my hosting company's

Re: Using Lightbox with GWT (some events not catched)

2014-04-24 Thread JoyaleXandre
If it may help, I noticed that the problem occur only when Lightbox is launch from a DialogBox with Glass enabled. Le mardi 22 avril 2014 18:20:47 UTC-4, JoyaleXandre a écrit : Hello! I'm trying to use Lightbox with the HTML widget in GWT. I manage to make the example from a standard HTML

Re: Using Lightbox with GWT (some events not catched)

2014-04-24 Thread Alexandre Joyal
OK, I fixed my problem. I change my DialogBox to a PopupPanel and now the event are catched like they should be. The button back, next and close are working. On Thu, Apr 24, 2014 at 4:15 PM, JoyaleXandre joyalexan...@gmail.comwrote: If it may help, I noticed that the problem occur only when

Re: Using Lightbox with GWT (some events not catched)

2014-04-24 Thread Jens
DialogBox is modal by default which means it swallows most events. You can set modal to false. -- 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 it, send an email to

GWT and BV/javax.validation 1.1

2014-04-24 Thread joerg.hohwil...@googlemail.com
Hi there, I had to upgrade BV on the server side. Now my GWT client fails: [ERROR] [mmm] - Line 43: No source code is available for type javax.validation.ParameterNameProvider; did you forget to inherit a required module? ... [ERROR] [mmm] - Unable to find type

Re: GWT and BV/javax.validation 1.1

2014-04-24 Thread 'Nick Chalko ncha...@google.com' via Google Web Toolkit
I am the original author of the GWT validation implementation, but I have no plans to upgrade it. I can't speak for the GWT team (which I am not part of). I am however happy to to review code. (aka patches welcome). On Thu, Apr 24, 2014 at 2:52 PM, joerg.hohwil...@googlemail.com

Opensourcing some of our GWT libraries

2014-04-24 Thread Alain
Hello folks, Here are some of the GWT tools we use internally. It goes from Ext JS, Sencha Touch, Flex,Google Maps, PhoneGap, Titanium, till Node JS(Node Webkit). We hope you found them useful. http://opensource.ahome-it.com/ Cheers, Alain -- You received this message because you are

Re: [gwt-contrib] Some separate compilation errors/questions

2014-04-24 Thread Jens
Thanks for trying it out. I would open bugs for these issues. After fixing all errors in my small app I encountered a final error I am unable to solve. The incremental compiler can't seem to find the EntryPoint of my app. After some debugging it looks like that all classes pulled in by

Re: [gwt-contrib] Some separate compilation errors/questions

2014-04-24 Thread 'John Stalcup stal...@google.com' via GWT Contributors
Incremental builds are strict about source paths. Normal compiles implicitly include client, but incremental builds do not because doing so would create massive amounts of duplicate source inclusion. Based on the error message i think you need to add a source path=client / to the

Re: [gwt-contrib] Some separate compilation errors/questions

2014-04-24 Thread 'John Stalcup stal...@google.com' via GWT Contributors
I have a patch in review at https://gwt-review.googlesource.com/#/c/7290/to make that error message more helpful when strict source inclusion is turned on. On Thu, Apr 24, 2014 at 12:02 PM, John Stalcup stal...@google.com wrote: Incremental builds are strict about source paths. Normal