Re: Is moving away from RPC a good idea?

2024-01-12 Thread Ed
+1 nats.io On Fri, Jan 12, 2024 at 10:33 AM Jens wrote: > If you do not have special needs I think GWT-RPC is still fine especially > with a jakarta version now available. But while it is easy to use it also > has some annoying downsides you have to live with. > > However there are quite some

Re: running gwt server code on apache

2023-11-09 Thread Ed
t; >> >> On Thursday, 9 November 2023 at 13:40:02 UTC Leon Pennings wrote: >> >>> You can deploy the web application on tomcat and use mod_proxy on >>> apache2 to forward https (or http if required) to tomcat on 8080 (or >>> another port if re

Re: running gwt server code on apache

2023-11-08 Thread Ed
jetty is application server while apache2 is a web server. tomcat is the apache app server. On Wed, Nov 8, 2023 at 4:48 AM 'dav...@googlemail.com' via GWT Users < google-web-toolkit@googlegroups.com> wrote: > On my development machine I test my code in jetty. The client code calls a > server

Re: Caused by: java.lang.NoClassDefFoundError: com/google/gson/JsonParseException ?

2018-12-19 Thread Ed
Ok, thanks for clearing that up. -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send email

Caused by: java.lang.NoClassDefFoundError: com/google/gson/JsonParseException ?

2018-12-19 Thread Ed
I just upgraded to GWT 2.8.2, that works fine. I just noticed that in case the deobfuscator throws an exception as it can't find the GSON JsonParseException, why is that? Caused by: java.lang.NoClassDefFoundError: com/google/gson/JsonParseException I can't remember that was in GWT 2.8.0, but I

Re: A class cast exception when upgrading from GWT 2.8.0 to 2.8.2 ?

2018-12-19 Thread Ed
Yesss, the above solution worked. Luckily it was the only construction I had, I only had to rewrite this one. Sorry, there will not be any upgrade to 3.0 -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop

Re: A class cast exception when upgrading from GWT 2.8.0 to 2.8.2 ?

2018-12-19 Thread Ed
BTW: what is the correct way to solve this? Should I make a new class that extends both JavaScriptObject and implements ZtoeslagAppConfig? So it would be: SimpleZtoeslagAppConfig extends JavaScriptObject implements ZtoeslagAppConfig { } *private* SimpleZtoeslagAppConfig getZtoeslagConfig() {

Re: A class cast exception when upgrading from GWT 2.8.0 to 2.8.2 ?

2018-12-19 Thread Ed
Thanks for the inside Jens, I think that could be it, I will test it. Ed -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolki

Re: A class cast exception when upgrading from GWT 2.8.0 to 2.8.2 ?

2018-12-17 Thread Ed
Anybody any idea please? -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send email to

A class cast exception when upgrading from GWT 2.8.0 to 2.8.2 ?

2018-12-13 Thread Ed
I just upgraded from GWT 2.8.0 to 2.8.2 and get a class cast exception which I don't understand, please some help. It goes wrong in the following line of code: *ZtoeslagAppConfig this.bla = new JsoZtoeslagAppConfig(getZtoeslagConfig());* All relevant code: *private T getZtoeslagConfig() {*

Re: GWT Update widget in DOM when logical contents changed

2017-11-08 Thread Ed
I think what you want to do is Update the panel, which should take care of the DOM. On Wed, Nov 8, 2017 at 5:40 AM, 'Paul Topley' via GWT Users < google-web-toolkit@googlegroups.com> wrote: > Hi, > > This should be a fairly straight forward question. Ive been relentlessly > googling trying to

Re: Question on Useability

2017-04-13 Thread Ed
Solved. On Wed, Apr 12, 2017 at 7:38 PM, Ed <ej19...@gmail.com> wrote: > Figured out the problem: > iframe.contentDocument.designMode= "On"; > Should be off. > > But still cant figure out sizing of the ifrrame. The container is 100x100 > pct. > > Will co

Re: Question on Useability

2017-04-12 Thread Ed
Figured out the problem: iframe.contentDocument.designMode= "On"; Should be off. But still cant figure out sizing of the ifrrame. The container is 100x100 pct. Will continue to poke around. ed On Wed, Apr 12, 2017 at 5:31 PM, Ed <ej19...@gmail.com> wrote: > Hi Jens, >

Re: Question on Useability

2017-04-12 Thread Ed
Out"); } } Clicking from outside renders the area, but the click from inside the iframe are broken, it offers a select to move rather then the click fo fill the area. Also the iframe is not sized it is very small. Any suggestions? On Wed, Apr 12, 2017 at 11:52 AM, Ed

Re: Question on Useability

2017-04-12 Thread Ed
@Jens Thank You I will look into the options On Wed, Apr 12, 2017 at 11:36 AM, Jens wrote: > Well there are two solutions: > > 1.) use an iFrame => opening links inside the iframe should just work. > However the URL won't be displayed in the browsers url bar, maybe you

Question on Useability

2017-04-12 Thread Ed
for basic html is render times for the number of fields being returned from the server. Converting this data to json causes the render time to balloon. Splitting data into smaller pieces is not an option at this point. Any advice would be greatly appreciated Ed -- You received this message

Re: Clicks taking over entire window

2017-04-10 Thread Ed
This post never showed up in my gmail account. Has it not bee approved? Ed On Monday, April 10, 2017 at 7:12:31 AM UTC-4, Ed wrote: > > Hi, > > GWT 2.8 > > I have a top menu bar and a side nav using gwt material. > > They both process click to a center HTML Panel. > &

Clicks taking over entire window

2017-04-10 Thread Ed
The html I am sending contains html, head, and body tags. Is there anyway to force the clicks to show within the HTML that they are clicked without removing topnav and sidebar without using a frame? Thanks in advance. Ed -- You received this message because you are subscribed to the Google

Re: GST 2.8 Keyboard Handler Question

2017-02-02 Thread Ed
@Stevko That works @Thomas That works also Thank you very much Best On Thu, Feb 2, 2017 at 4:40 AM, Thomas Broyer <t.bro...@gmail.com> wrote: > > > On Wednesday, February 1, 2017 at 8:33:43 PM UTC+1, Ed wrote: >> >> @Thomas >> >> I cant find the ca

Re: GST 2.8 Keyboard Handler Question

2017-02-01 Thread Ed
@natan Thank you but iI dont think that will work in this case. reading the data is just fine @Thomas I cant find the cancel event in the docs. I found javadoc for 2.7 not 2.8 ​Does it matter that I am using gwt material design? The command gets executed but this artifact keeps showing up.

GST 2.8 Keyboard Handler Question

2017-02-01 Thread Ed
GWT 2.8 I have the following code. It is used in a application where the input device is a usb keypad with numbers and # key. I am trying to use the # key as deliminator to obtains the numerics from the text box. Everything works except the # (Delimiter) key gets placed in the textbox after

Re: [WARN] Lost communication with remote process ?

2017-01-25 Thread Ed Bras
I decreased the Max heap size to 1756MB and the builds seem to go fine currently. On 24 January 2017 at 19:56, Ed Bras <post2edb...@gmail.com> wrote: > Thanks Thomas, > It probably has to do with OutOfMemory problems, but I thought I had it > kind of solved. > After the up

Re: [WARN] Lost communication with remote process ?

2017-01-24 Thread Ed Bras
-Dgwt.persistentunitcache=false 3 However, I think the 2G might be too much too allocate on the server. I will play around with the settings, thanks. - Ed On 24 January 2017 at 18:02, Thomas Broyer <t.bro...@gmail.com> wrote: > A quick look at the code reveals that after the exception is logged

[WARN] Lost communication with remote process ?

2017-01-24 Thread Ed
it's been build by Jenkins. Any idea what it is and how to solve it ? - Ed --- [INFO] Compiling permutation 10... [INFO] Compiling [INFO] Compiling permutation 11... [INFO] [WARN] Lost communication with remote process [INFO] java.io.EOFException

Re: Requestfactory: How to use Object?

2017-01-06 Thread Ed
I migrated everything from RPC to RF. Thinking it was a better alternative to 3rd party libs and could be sustainable when 3.0 arrives was I wrong in this thinking? Regards On Fri, Jan 6, 2017 at 7:10 AM, Ignacio Baca Moreno-Torres < igna...@bacamt.com> wrote: > Hehe this is not a bad thing!

Re: GWT 2.8.0 released

2017-01-05 Thread Ed
GC method, etc..) - Ed -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send

Re:

2016-11-30 Thread Ed
@Juan - That was it, thank you very much. Ed On Wed, Nov 30, 2016 at 1:51 PM, Juan Pablo Gardella < gardellajuanpa...@gmail.com> wrote: > Try by removing Xerces library. Check http://stackoverflow. > com/questions/14014989/java-lang-abstractmethoderror-org- > apache-xerces-

[no subject]

2016-11-30 Thread Ed
lbar$NativeHorizontalScrollbarUiBinder > uiBinder = (NativeHorizontalScrollbar$NativeHorizontalScrollbarUiBinder) > GWT.create(NativeHorizontalScrollbar$NativeHorizontalScrollbarUiBinder.class); > } > [ERROR] at NativeHorizontalScrollbar.java(31): { > AbstractNativeScrollbar.$clinit(); > static

Re: How to store configuration outside the database?

2016-11-06 Thread Ed
Save file on server, in the same path as class files. Perhaps a xml file. The point the server startup to read the configuration. On Sun, Nov 6, 2016 at 6:48 PM, Thomas Broyer wrote: > Externalize into a JNDI Resource? https://tomcat.apache.org/ >

Re: GWT launch client side application

2016-10-25 Thread Ed
They best approach is to download/click the excel and let the browsers mime take care of it if possible. On Tue, Oct 25, 2016 at 7:34 AM, Alain Ekambi wrote: > Why not simply wrap the gwt app with a native shell like nw.js or > electron? This will give u native access

Re: GWT 2.8.0 released

2016-10-21 Thread Ed
Thank You for Your effort! On Fri, Oct 21, 2016 at 4:01 PM, Denis Shagaleev wrote: > yeah!! > > thank you guys! > > > On Friday, October 21, 2016 at 10:21:41 PM UTC+3, Daniel Kurka wrote: >> >> Hi all, >> >> I am very happy to announce GWT 2.8.0 on behalf of the GWT

Re: gwt-material 1.6.0 is now available

2016-08-28 Thread Ed
Great Job. Does this work with gwt 2.7? I use 2.7 with 1.5. When i swapped out the jars to 1.53 the browser froze and the process had to be terminated. I was looking for migration notes but did not find. Ed On Sat, Aug 27, 2016 at 1:50 PM, Rodrigue Lagoué Rodrigue <rlag...@gmail.com >

Re: Problem with SimpleCheckBox shared in n instances

2016-06-07 Thread Ed
try making it a final. On Tue, Jun 7, 2016 at 6:20 AM, 129pierre wrote: > Hi, > > I have a html checkbox wrapped as a SimpleCheckBox. This SimpleCheckBox is > used by n instances of the same class. > > In this class, I have an click handler for this SimpleCheckBox. > >

Re: GWT 2.8 next release

2016-03-30 Thread Ed
Thanks for sharing. It will be worth the wait. Ed On Wed, Mar 30, 2016 at 6:09 PM, Thomas Broyer <t.bro...@gmail.com> wrote: > We're a bit late wrt our plan for RC1, but we're currently adding > emulation for many Java 8 APIs (new methods in collections, > java.util.functio

Re: XML Parsing error with Chrome in Windows 10 ? :(

2016-03-25 Thread Ed
the xml header " in the xml files, so that should be fine. It seems like a modern IE browser, so I would expect it to be able to correctly load and parse the xml,. - Ed -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe

Re: Can anyone help me to copy the text to clipboard in a simple way and which works on all browsers

2016-03-21 Thread Ed
event.setData("text/plain", YOURDATATOCOPY); event.getDataTransfer().setDragImage(CopyIcon.getElement(), 10, 10); } }, DragStartEvent.getType()); Hope this helps Ed On Mon, Mar 21, 2016 at 8:10 AM, Dhinakar Red

XML Parsing error with Chrome in Windows 10 ? :(

2016-03-19 Thread Ed
ns well on a Windows 10 desktop/laptop without touch functionality. Any idea? Please let me know how to solve/analyze this, as I found it hard to solve it and I am stuck. - Ed -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubs

Re: GoogleBot is using the wrong permutation?

2016-02-29 Thread Ed Bras
r Java code) which hopefully will let you know exactly what > is failing and why. > > > On Friday, February 26, 2016 at 2:29:21 AM UTC-7, Ed wrote: >> >> Ok, Still googlebot comes a long and after I deployed a new version I >> always get google bot exceptions. >

Re: What is best IDE for developing GWT applications?

2016-02-28 Thread Ed
instances for testing. Best Regards, Ed On Sun, Feb 28, 2016 at 12:21 PM, Stefan Falk <stefan.r.f...@gmail.com> wrote: > @Ed: Don't get me wrong. I like Eclipse and I am basically an Eclipse-only > developer. I would use it to brew coffee if there was a plug in. :D > > What I'm

Re: GoogleBot is using the wrong permutation?

2016-02-27 Thread Ed Bras
what "Kg" is (what its real > name is on your Java code) which hopefully will let you know exactly what > is failing and why. > > > On Friday, February 26, 2016 at 2:29:21 AM UTC-7, Ed wrote: >> >> Ok, Still googlebot comes a long and after I deployed a new ver

Re: What is best IDE for developing GWT applications?

2016-02-27 Thread Ed
Your comment barely supported is not justified. IMHO it is the BEST free ide available. Ed On Sat, Feb 27, 2016 at 6:43 AM, Stefan Falk <stefan.r.f...@gmail.com> wrote: > Is Eclipse still a thing in 2016? > > I mean it's basically working and such but I feel like I have to wor

Re: GoogleBot is using the wrong permutation?

2016-02-26 Thread Ed
by IE9 that result in similar errors. But how to work around this? It's hard to see the exact error that occurs. - Ed -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, sen

Re: GWT vs AngularJS

2016-02-24 Thread Ed
I update robots.txt to point to generated crawl able html files from the content. The gwt content comes from a data base that makes this process much easier Ed On Wed, Feb 24, 2016 at 10:58 AM, Adolfo Rodriguez < businessdynami...@gmail.com> wrote: > In my opinion, the main probl

Re: How to protect IP in GWT.

2016-02-22 Thread Ed
You can only see js code not the original java code. Best Regards Ed On Sat, Feb 20, 2016 at 1:27 AM, Kirill Prazdnikov <pkir...@gmail.com> wrote: > Hi Ed, > > I did that, I don't see java code. Please show me the original java code. > I only see this link >

Re: How to protect IP in GWT.

2016-02-19 Thread Ed
Use developer tools in your Browser edit and resend the call to the js files Ed On Fri, Feb 19, 2016 at 11:11 AM, Kirill Prazdnikov <pkir...@gmail.com> wrote: > This is my app build by GWT: http://kp219.ru/GraphicsTest.html#12 > How can one view original Java source code?

Re: GWT RPC in GWT 3.0+

2016-02-05 Thread Ed
RestyGWT is one of the options. Another less mentioned is the low level RequestBuilder. We moved to RB due to the large number of fields we are managing (400+) and use json on the client to consume the requests. Ed On Fri, Feb 5, 2016 at 5:44 AM, Vassilis Virvilis <vasv...@gmail.com>

Re: Click even on outer HTMLPanel on existing html ?

2016-01-26 Thread Ed
Can somebody please give me some tips on how to solve this ? How to get the click events on the outer div html, loaded in an HTMLPanel? Thank you, Ed On Tuesday, 12 January 2016 11:53:03 UTC+1, Ed wrote: > > Please some advice on this issue ? > -- You received this message be

Re: Click even on outer HTMLPanel on existing html ?

2016-01-26 Thread Ed Bras
... On 26 January 2016 at 22:02, Vassilis Virvilis <vasv...@gmail.com> wrote: > stupid suggestion but do you sink the events you want to listen for? > > On Tue, Jan 26, 2016 at 11:00 PM, Ed <post2edb...@gmail.com> wrote: > >> Can somebody please give me some tips on how

Re: Click even on outer HTMLPanel on existing html ?

2016-01-26 Thread Ed Bras
Hmmm,, so it should work for existing html, that is loaded from an xml file (so no wrap is needed). On 26 January 2016 at 23:31, Jens wrote: > > stupid suggestion but do you sink the events you want to listen for? >> > > addDomHandler() automatically sinks the

Re: Migrating to Super-dev mode?

2016-01-20 Thread Ed
ntains any error. Any idea where to look? I notice a warning in the compiler output, but not sure what to do with it, and what it could be (it contains old deprecated code). (If I enable debug the message gets lost in the mass output) - Ed === Compiler output 14:19:38.183 [m

Re: Migrating to Super-dev mode?

2016-01-16 Thread Ed
Thanks for the insight, sorry for the late replay. I haven't been able to have a further look, but I will during the next days. -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send

Migrating to Super-dev mode?

2016-01-13 Thread Ed
Please some advice on migrating to super-dev mode, as I can't seem to get it working. Current situation: 1) Using Eclipse launch fiile to start dev mode with arguments: war dir and -nosever. 2) I use Apache to map an url to the war dir and proxy any backend calls to Tomcat. 3) The index.html

Re: Click even on outer HTMLPanel on existing html ?

2016-01-12 Thread Ed
Please some advice on this issue ? -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send

Click even on outer HTMLPanel on existing html ?

2016-01-10 Thread Ed
a background color and is wrapping all loaded html. How to solve this? - Ed -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolki

How to solve RPC error: Character Encoding is 'text/'. Expected 'UTF-8'

2015-12-30 Thread Ed
Sometimes I do get the following stacktrace during RPC communication with the Tomcat backend. Any idea how to solve this, and what could cause this ? - Ed javax.servlet.ServletException: Character Encoding is 'text/'. Expected 'UTF-8

Re: How to solve RPC error: Character Encoding is 'text/'. Expected 'UTF-8'

2015-12-30 Thread Ed Bras
@Thomas: thanks for the tips, I will perform some logging of the Content-Type to see where it's coming from.​ -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: Getting rid of Dev mode for future GWT releases

2015-12-30 Thread Ed Bras
@Axel: thanks for sharing and you are 100% spot on I also like to know if/how SDBG can be improved to benefit the full debugging power ​ -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving

Re: How to register custom function with GSS

2015-12-24 Thread Ed
> That's a shame. Though > H, me too :( -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this

Re: Getting rid of Dev mode for future GWT releases

2015-12-22 Thread Ed Bras
Good to know, @DavidN, thanks for sharing... On 22 December 2015 at 10:45, DavidN <david.no...@gmail.com> wrote: > On Friday, December 18, 2015 at 10:17:27 AM UTC+1, Ed wrote: > >> I was reluctant at first to move over to SDM, but after some time with >>> it,

Re: GWT SDM Polymer

2015-12-21 Thread Ed
POLYMER 1.2.1.0 ECLIPSE Mars.1 Now SDM provides access without the JSINTEROP errors. The purpose of this is exploration and prototyping of a UI using POLYMER and modern design methodilogies. I was a newbie to maven but an quickly coming to be a fan. (Used ant for many many years). Thank You, Ed

Re: GWT SDM Polymer

2015-12-19 Thread Ed
. Thanks for your comment. Regards, Ed On Sat, Dec 19, 2015 at 10:37 AM, Michael Zhou <zhoumotongxue...@gmail.com> wrote: > Might be unrelated, but as far as I know *-XjsInteropMode *is deprecated > and might be removed in the final 2.8.0 release. GWT-Polymer will probab

Re: GWT SDM Polymer

2015-12-19 Thread Ed
er and issues the same error about activating jsInteropMode.JS. Perhaps I should wait for 2.8 release? Any help would be appreciated. Ed On Sat, Dec 19, 2015 at 11:30 AM, Ed <ej19...@gmail.com> wrote: > @michael Understood I am getting the deprecation message with 2.8.0 Beta 1 >

Re: GWT SDM Polymer

2015-12-19 Thread Ed
h 0 new/changed types. > Source Maps Enabled > I noticed that the unification process did not find any fields or methods. I am assuming that this is the problem when running the app. Any idea on what the cause of this is and how to fix? Regards, Ed On Sat, Dec 19, 2015

GWT SDM Polymer

2015-12-19 Thread Ed
the -XjsInteropMode JS flag > There are no errors in the console and the project re compiles in SDM. I have a working todolist and replicated the jar and bower components from the working project. Can some point me in the correct direction to resolve this? Ed -- You received this message

Re: Getting rid of Dev mode for future GWT releases

2015-12-18 Thread Ed Bras
> > I was reluctant at first to move over to SDM, but after some time with it, > I got used to it. I combine it with SDBG in eclipse and it works mostly ok. > What is exactly not woking well with the SDBG eclipse plugin? And why is this working well in IntelliJ ? What SDM brings is much faster

Re: GWT Polymer Tutorial

2015-12-17 Thread Ed
Hi Vadim, I just pulled down 2.8 SNAPSHOT, will give it a try, Yes I was referencing your post. Thanks for the info. Regards, Ed On Thu, Dec 17, 2015 at 1:40 AM, <va...@ant.ee> wrote: > Dear Ed, > >You probably has already seen my post a week ago about Polymer &g

Re: GWT Polymer Tutorial

2015-12-17 Thread Ed
@Evan Yes the snapshots can be flaky I will switch to beta 1 Thanks you for the reply. Regards, Ed On Thu, Dec 17, 2015 at 10:45 AM, Evan Ruff <evan.r...@gmail.com> wrote: > Hey Ed, > > 2.8-beta1 is available in Maven Central. I've been using it without > problems and

GWT Running SDM Problem

2015-12-17 Thread Ed
. Any help would be appreciated. Ed -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this g

Re: GWT Polymer Tutorial

2015-12-17 Thread Ed
@ALL Up and working thanks to everyone. I love Open Source!! Regards, Ed On Thu, Dec 17, 2015 at 11:35 AM, Ed <ej19...@gmail.com> wrote: > @Evan > > Yes the snapshots can be flaky > > I will switch to beta 1 > > Thanks you for the reply. > > Regards, > &g

GWT Polymer Tutorial

2015-12-16 Thread Ed
I have been trying for days to get this operational. Does this even have a chance of working with 2.7? I have seen some data about using parts of 2.8 and 2.7 to make things work. I do not feel this is a viable solution. Any suggestions would be appreciated. Ed -- You received this message

Re: GWT Polymer Tutorial

2015-12-16 Thread Ed
Michael: Thank you for you quick response. I have done this with no success. Perhaps I put it in the wrong section. The docs are specific and I am a newbie to maven. Ed On Wed, Dec 16, 2015 at 2:41 PM, Michael Joyner <mich...@newsrx.com> wrote: > For the Polymer tutorial to work with

Re: You have large GWT 2.x application and you don't know what to do when 3.0 is out ?

2015-12-11 Thread Ed
I migrated to RequestBuilder (got rid of rpc), dont use UI Binder. Are you saying that CellWidgets will be gone also? Regards, Ed On Fri, Dec 11, 2015 at 2:58 PM, CodeLess Solutions < codelessoluti...@gmail.com> wrote: > We all know by now that 3.0 will bring huge changes

Re: Getting rid of Dev mode for future GWT releases

2015-12-10 Thread Ed Bras
@Frank: you are absolutely right, but it's difficult to generalize this, as it highly depends on your situation. I have seen hello-world kind of code that was very easy to understand, but also very complex, but very clean code to meet a lot of financial (security) requirement, or code with many

Re: Getting rid of Dev mode for future GWT releases

2015-12-10 Thread Ed Bras
Interesting discussion about breakpoints ;)​ It all depends on your situations and requirements... I don't like breakpoints but need them: 1) Solve a problem quickly instead of reading the code for hours (like mentioned). 2) Easily understand the flow (stack) without setting many print stuff. 3)

Re: Getting rid of Dev mode for future GWT releases

2015-12-10 Thread Ed Bras
Thanks for sharing @Steve. Good to read that you do have "ok" experience with larger codebase. > SDM is the ability to debug a large codebase in reasonable time - startups for Dev mode can be very slow. I am always surprised when people say this. run a code base of total more then 2.5MB total

Re: Getting rid of Dev mode for future GWT releases

2015-12-10 Thread Ed Bras
@Steve: thanks for sharing your experience, good to know.​ When I have some more time the next coming month I want to try again Super DevMode, I really would love to use it. It's just easy not to use it when you work a lot and the DevMode works fine in my case... -- You received this message

Re: Getting rid of Dev mode for future GWT releases

2015-12-09 Thread Ed
I love DevMode, I will miss it :( Super DevMode, not Super enough for me... (tried it a few times with bigger apps, got lost in the chrome sources, takes too much time...) -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this

Re: GoogleBot is using the wrong permutation?

2015-12-03 Thread Ed Bras
What I did that probably solved it:​ instead of reading the permutation name through the HTTP header using RpcRequestBuilder.STRONG_NAME_HEADER, I now send the permutation name along from with the exception occurred in the client. At least I am not using any old cached http header. Let's see if

Re: GoogleBot is using the wrong permutation?

2015-12-01 Thread Ed
can be found. Any more ideas? - Ed -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this g

GoogleBot is using the wrong permutation?

2015-11-30 Thread Ed
deObfuscating (I don't want to put a pretty-version online, it's too big). Any idea ? - Ed -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-w

Re: SEO Google Crawlable experience ?

2015-11-17 Thread Ed Bras
> > It should be in Elemental 2.0 (I suppose); there's no need to bring an > abstraction on top, JsInterop should suffice. @Thomas, thanks, looking forward to it.​ -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and

Re: SEO Google Crawlable experience ?

2015-11-17 Thread Ed Bras
​@Thomas: besides the fallback hash support, will pushState not be supported at all in the gwt core in the future ? -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: SEO Google Crawlable experience ?

2015-11-16 Thread Ed Bras
@Thomas: thanks for your input. Yes, I remember I also looked at your Html5Historian code as example. Do you know if or how, the Html5 pushState will be supported in the gwt core? I think it should be possible to support it the way I implemented it: use pushState if the browser supports it, else

Re: SEO Google Crawlable experience ?

2015-11-16 Thread Ed Bras
@Pablo: cool, thanks for your input, however, i can't use GWTP framework and not even allowed to use it (giving the dependency issues we had in the past). We can use it if it's part of the core ;) ​ -- You received this message because you are subscribed to the Google Groups "GWT Users" group.

Re: SEO Google Crawlable experience ?

2015-11-15 Thread Ed Bras
​It's rather straight forward and the nice thing is that you can start your app in different way's, by inspecting the url it was started way. Example: I change my landing page on the client side, depending on the url. Compare www.leuker.nl and www.leuker.nl/trainmore or www.leuker.nl/flks (all

Re: SEO Google Crawlable experience ?

2015-11-15 Thread Ed Bras
Oeps, I wasn't finished yet, and pressed send. Let's continue were I left off: BTW: the above rewrite rule with resource in it, can be removed if you don't have that path. Ensure to put the above in the tag, else the REQUEST_FILENAME will not be filled yet and will contain the URI, and that's not

Re: SEO Google Crawlable experience ?

2015-11-14 Thread Ed
> > It will very useful if you write some article about that :) Good point. If there are enough people interested and I have a moment in the next months, it's my pleasure. However, I wouldn't be surprised if this would be supported in the core of GWT shortly. -- You received this message

Re: SEO Google Crawlable experience ?

2015-11-11 Thread Ed
I implemented html5 pushState and works very well: In the backend I use apache http rewrite rules to dispatch all requests to the index.html. In the frontend added the tag to the index.html to ensure the base path is correct as the url changes due to the pushState actions such that base path

Re: GWT browser plugin not used with Web rewrite rules?

2015-11-04 Thread Ed
I am going for the tag in the index.html, as solving it in the web server config is almost impossible. -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: GWT browser plugin not used with Web rewrite rules?

2015-11-03 Thread Ed Bras
One solution that seem to work: Use of the old fashion base tag in the index.html: I am just not so font of making the index.html location/url dependent, such that you have to edit the index.html during deployment.. but you have to tell the browser which base url to use when performing

Re: GWT browser plugin not used with Web rewrite rules?

2015-11-03 Thread Ed Bras
@Thomas: the plus.nocache.js is my script that is included in the index.html: Let me see if I understand you correctly: You think that it will look for /plus/bla1/plus.nocache.js which doesn't exists such that the server returns index.html ? H, just checked and I am afraid you are right

Re: GWT browser plugin not used with Web rewrite rules?

2015-11-03 Thread Ed Bras
BTW: I was just testing some more and for some reason the last rewrite rule "RewriteRule plus/(.*) plus/index.html [NC,L]" is changing something (even do it shouldn't). I should copy the query params. If I change this rule to "RewriteRule plus/(.*) - [NC,L]" such that nothing is changed and create

Re: GWT browser plugin not used with Web rewrite rules?

2015-11-03 Thread Ed Bras
it works. I think I always have to create this sub dir with the root content, not ? Else, how will the GWT plugin knows in which URL location to look not ? But why does the GWT plugin exactly look in that location? What does it do? - Ed ​ -- You received this message because you are subscribed

GWT browser plugin not used with Web rewrite rules?

2015-11-02 Thread Ed
the "loading..." text, that is normally removed when the GWT app is started and will remove it. However, the gwt app is never started. No idea why, the query param part is copied by default (accoding to the apache 2.4 doc). Please some help? (why/how is the gwt plugin triggered to start work

With ie9 I get: XMLParserImplIE6 Could not find appropriate version of DOMDocument ?

2015-10-30 Thread Ed
to solve it? - Ed -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send email

Re: With ie9 I get: XMLParserImplIE6 Could not find appropriate version of DOMDocument ?

2015-10-30 Thread Ed Bras
Thanks for the insight @Jens.​ -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send email

Re: SEO Google Crawlable experience ?

2015-10-29 Thread Ed Bras
> I have seen this page before. Where did you see that google requires #! (vs plain #) in its new scheme? Where can I find the new scheme details ? I find it hard to find the exact details, often you will find the old details. I notice in the Google Webmaster tools that the ur's with the # url

Re: SEO Google Crawlable experience ?

2015-10-28 Thread Ed Bras
​BTW: i noticed in this link, that I should use #! still such that Google will crawl it, else it will not crawl it: https://support.google.com/webmasters/answer/174993?hl=en Anybody any experience with it? -- You received this message because you are subscribed to the Google Groups "GWT

Re: SEO Google Crawlable experience ?

2015-10-27 Thread Ed Bras
@​Vassilis: I created a page sitemap.xml (exactly a sitemap index with a video sitemap and a page sitemap), that contains pages like: https://www.leuker.nl/index.html#DcNvUsg And if I submit this to Google it reports no errors and does indicate that 17 pages are found/indexed I

Re: SEO Google Crawlable experience ?

2015-10-27 Thread Ed Bras
I just noticed that GoogleBot is coming by and resulted in an error when the site tried to perform an animation through a javascript function that isn't present. It's because I use GreenSock animation that is loaded in the index.html, but apparently the function $wnd.TweenLite function isn't

  1   2   3   4   5   6   7   8   9   10   >