Re: How GWT.create() works with service?

2011-12-15 Thread Thomas Broyer
On Thursday, December 15, 2011 4:22:22 AM UTC+1, Kanagaraj M wrote: > > Is there a way i can see the content of Xxx_Proxy? Pass the -gen option to the DevMode or Compiler to tell it to output the generated files in the given folder. See http://code.google.com/webtoolkit/doc/latest/DevGuideCom

Re: How GWT.create() works with service?

2011-12-14 Thread Kanagaraj M
Is there a way i can see the content of Xxx_Proxy? And what would be the equivalent JavaScript code for it? will that vary depends on my user agent? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit

Re: How GWT.create() works with service?

2011-12-14 Thread Thomas Broyer
There are two kinds of deferred binding rules: replace-with and generate-with. replace-with rules are used to switch between several implementations depending on binding properties (e.g. ) generate-with on the other hand calls a Generator for the class or interface. Such a rule can also use bi

How GWT.create() works with service?

2011-12-14 Thread Kanagaraj M
I wanted to know how GWT.create behaves in Dev mode and Production mode. I was trying to debug the code. The comment in the code says /* * In Production Mode, the compiler directly replaces calls to this method * with a new Object() type expression of the correct rebound type. */ I