Re: GWT Cross Site Iframe Linker and Script Tags

2014-11-06 Thread Etienne Lacazedieu
Well, it was a Code Splitting problem. Both SuperDevMode and DevMode works fine with the new linker. Le mercredi 5 novembre 2014 23:21:22 UTC+1, Etienne Lacazedieu a écrit : Hi, I'm preparing a big switch (GWT2.3 to 2.6.1, which may change to 2.7.0 depening on the final release date

Re: GWT Cross Site Iframe Linker and Script Tags

2014-11-05 Thread Etienne Lacazedieu
Hi, I'm preparing a big switch (GWT2.3 to 2.6.1, which may change to 2.7.0 depening on the final release date), and I'm having trouble with the xsiframe linker.. I have no problems with adding script tags in the HTML file. Actually, I wrote a linker (a subclass of CrossSiteIframeLinker),

Re: Return permutation directly from the server without selection script.

2010-09-17 Thread Etienne Lacazedieu
I wrote such a Linker : /** * This GWT linker creates a properties file which can be used to resolve Permutation Strong name given UserAgent and locale. * * @author Etienne Lacazedieu * */ @LinkerOrder(Order.PRE) public class StrongNameOracleLinker extends AbstractLinker { public static

Re: Unchecked exceptions from server to client

2010-09-16 Thread Etienne Lacazedieu
/display on client side. Etienne Lacazedieu 2010/9/16 Kasper Hansen kbhdk1...@gmail.com: Hi, And thanks for your continuing interest in this subject.    void getObject() throws RuntimeException; // or our GwtClientException } Problem is gone... Every method from service can throw our

Re: Client side serialization and deserialization of GWT objects

2010-09-09 Thread Etienne Lacazedieu
RPC serialization is not symetric, so you wil lnot be able to serialize/deserialize objects on the client side using this mechanism. We achieved just what you describe by creating a JSON serializer/deserializer on the client side. I'm sorry that I'm not allowed to shar e this code. :-/, but I

Re: GWT RPC offline caching

2010-09-08 Thread Etienne Lacazedieu
Unfortunately, RPC serialization is assymetric : On client side, you'll be able to deserialize data serialized on the server, and vice-versa. But you will not be able to serialize/deserialize data on the client. If you cache data received from the server, you can deserialize it using the

Using slf4j in hosted mode :

2010-08-31 Thread Etienne Lacazedieu
this problem : I don't really have much time to do that right now... If someone knows a way to use slf4j in WebAppListeners, without having to add slf4j jars somewhere (we want to use our Maven dependency management), I'll be very hapy to learn about it! Etienne Lacazedieu PS : excuse my english