Turning off precompile in incremental mode.
Super Dev Mode starting up
workDir: /var/folders/x8/9wz7qtw96t7grkdyjw1l61p40000gn/T/gwt-codeserver-5458587005926250195.tmp
Loading Java files in com.gonevertical.snowy.SnowyMountainProject.
Module setup completed in 19801 ms
Sep 09, 2016 11:45:00 AM org.eclipse.jetty.server.Server doStart
INFO: jetty-8.y.z-SNAPSHOT
Sep 09, 2016 11:45:00 AM org.eclipse.jetty.server.AbstractConnector doStart
INFO: Started SelectChann...@127.0.0.1:9876
The code server is ready at http://localhost:9876/
GET /recompile/SnowyMountainProject
Job com.gonevertical.snowy.SnowyMountainProject_1_0
starting job: com.gonevertical.snowy.SnowyMountainProject_1_0
binding: gxt.device=desktop
binding: gxt.user.agent=chrome
binding: locale=default
binding: user.agent=safari
binding: user.agent.os=mac
Compiling module com.gonevertical.snowy.SnowyMountainProject
Unification traversed 32527 fields and methods and 3143 types. 3090 are considered part of the current module and 3090 had all of their fields and methods traversed.
Compiling 1 permutation
Compiling permutation 0...
Linking per-type JS with 3074 new types.
prelink JS size = 5557062
prelink sourcemap = 5557062 bytes and 143563 lines
postlink JS size = 5235031
postlink sourcemap = 5235031 bytes and 135811 lines
Source Maps Enabled
Compile of permutations succeeded
Compilation succeeded -- 14.026s
Linking into /var/folders/x8/9wz7qtw96t7grkdyjw1l61p40000gn/T/gwt-codeserver-5458587005926250195.tmp/com.gonevertical.snowy.SnowyMountainProject/compile-2/war/SnowyMountainProject; Writing extras to /var/folders/x8/9wz7qtw96t7grkdyjw1l61p40000gn/T/gwt-codeserver-5458587005926250195.tmp/com.gonevertical.snowy.SnowyMountainProject/compile-2/extras/SnowyMountainProject
Link succeeded
Linking succeeded -- 0.693s
14.859s total -- Compile completed
GET /recompile/SnowyMountainProject
Job com.gonevertical.snowy.SnowyMountainProject_1_1
starting job: com.gonevertical.snowy.SnowyMountainProject_1_1
binding: locale=default
binding: user.agent=safari
Compiling module com.gonevertical.snowy.SnowyMountainProject
[ERROR] Current binding properties are expanding to more than one permutation but per-file compilation requires that each compile operate on only one permutation.
[WARN] recompile failed
[WARN] continuing to serve previous version
GET /recompile/SnowyMountainProject
Job com.gonevertical.snowy.SnowyMountainProject_1_2
starting job: com.gonevertical.snowy.SnowyMountainProject_1_2
binding: locale=default
binding: user.agent=safari
Compiling module com.gonevertical.snowy.SnowyMountainProject
[ERROR] Current binding properties are expanding to more than one permutation but per-file compilation requires that each compile operate on only one permutation.
[WARN] recompile failed
[WARN] continuing to serve previous version
```
Thanks,
Brandon
How about proxying through a local server that would intercept the nocache.js and route everything else to your external server? This is basically how webpack devserver and browserSync work in the JS land.
--
You received this message because you are subscribed to the Google Groups "GWT Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit-co...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit-contributors/13bfb1ba-f2fb-40cf-afda-c9902d016cb3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Proxying wasn't an option for developers because of the I.T. security protocols. Besides it feels a bit overcomplicated to have to set up a channel back to the code server. I think it would be easier to clobber the codeserver api with a workaround and setting the hosteName and hand that to the developers. I'm contemplating on forking the code server for GWT 2.7 users to provide a workaround for the hostName through the program arguments.
On Sat, Sep 10, 2016 at 1:43 AM Thomas Broyer <t.br...@gmail.com> wrote:
How about proxying through a local server that would intercept the nocache.js and route everything else to your external server? This is basically how webpack devserver and browserSync work in the JS land.
--
You received this message because you are subscribed to the Google Groups "GWT Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit-contributors+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit-contributors/13bfb1ba-f2fb-40cf-afda-c9902d016cb3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
I've had to do this when working on a sdm compiled application in a web wrapper on ios, instead of a proxy, I wrote a custom nocache.js that replaces the one generated by sdm and adds a url parameter to tell it the remote server to connect to where the codeserver is running, allowing me to debug the application running directly on the ipad correctly.Here is a gist of a sligtly modified version of the nocache.js replacing the module name with "module_name":So I just run my gwt-compile, replace the nocache.js and then create the war for deployment. The when accessing the url, provide the url paramter "remote_server=http://ip:port".
Not sure if this will be what you need 100% but should work instead of setting up a proxy or clobbering the codeserver api.
On Monday, September 12, 2016 at 12:24:54 PM UTC-7, Brandon Donnelson wrote:Proxying wasn't an option for developers because of the I.T. security protocols. Besides it feels a bit overcomplicated to have to set up a channel back to the code server. I think it would be easier to clobber the codeserver api with a workaround and setting the hosteName and hand that to the developers. I'm contemplating on forking the code server for GWT 2.7 users to provide a workaround for the hostName through the program arguments.
On Sat, Sep 10, 2016 at 1:43 AM Thomas Broyer <t.br...@gmail.com> wrote:
How about proxying through a local server that would intercept the nocache.js and route everything else to your external server? This is basically how webpack devserver and browserSync work in the JS land.
--
You received this message because you are subscribed to the Google Groups "GWT Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit-co...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit-contributors/13bfb1ba-f2fb-40cf-afda-c9902d016cb3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "GWT Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit-co...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit-contributors/274f1c7b-8267-4164-8d11-ab3e64dd9721%40googlegroups.com.