Re: Why Don’t You Use Java for Programming the Client-Side Web Apps on Web Browser?

2020-09-29 Thread Rodolfo M. Raya
>>>>>>>>> >>>>>>>>>> Class com.sun.net.httpserver.HttpServer is more than enough for >>>>>>>>>> running a Java server with REST interface on the desktop. >>>>>>>>>> >>>>>>>

Re: Why Don’t You Use Java for Programming the Client-Side Web Apps on Web Browser?

2020-09-29 Thread Rodolfo M. Raya
t;>>> thanks a lot for the feedbacks! >>>>>>>>> >>>>>>>>> TypeScript is not bad. After all it's coming from Anders Helsjberg >>>>>>>>> creator of Turbo Pascal, Delphi, VisualJ++, C#. He is a great language >>>>>

Re: Why Don’t You Use Java for Programming the Client-Side Web Apps on Web Browser?

2020-09-28 Thread Rodolfo M. Raya
;>>>>> Hello Lofi, >>>>>> >>>>>> Java + GWT + GXT + Eclipse was my main toolkit for over a decade. >>>>>> When Sencha went crazy with the price of license renewals, I started >>>>>> looking for alternatives. >>>>>

Re: Why Don’t You Use Java for Programming the Client-Side Web Apps on Web Browser?

2020-09-28 Thread Rodolfo M. Raya
t;>>> Now I'm free to choose any UI style I like, my code has simplified a >>>> lot and there is a clearer separation between server and client code. There >>>> are no license costs and I don't have to deal with GWT and GXT, except for >>>> an old project I still ha

Re: Why Don’t You Use Java for Programming the Client-Side Web Apps on Web Browser?

2020-09-28 Thread Rodolfo M. Raya
that are actually web >> apps running on a local Java server. >> >> I don't regret moving away from GWT + GXT. Actually, I'm quite happy with >> the refreshed coding experience. >> >> Regards, >> Rodolfo M. Raya >> >> >> On Thu, Sep 24, 2020 at 4

Re: Why Don’t You Use Java for Programming the Client-Side Web Apps on Web Browser?

2020-09-28 Thread Rodolfo M. Raya
quite happy with the refreshed coding experience. Regards, Rodolfo M. Raya On Thu, Sep 24, 2020 at 4:02 PM lofid...@gmail.com wrote: > I would like to know, what are the *obstacles* for you as *Java > developers* not using *Java as programming language for writing Web > browser a

Re: Chrome Canary 73.0.3680.0 breaks pretty much ALL GWT apps :(

2019-01-25 Thread Rodolfo M. Raya
nge the gwtVersion from > 2.7.0 to 2.8.2. > > On Friday, January 25, 2019 at 9:30:03 AM UTC-5, Rodolfo M. Raya wrote: >> >> I have an app that uses GWT 2.7.0 and fails in Canary. I can't upgrade to >> GWT 2.8.2 because the app uses an old version of GXT. >> >> What can I

Re: Chrome Canary 73.0.3680.0 breaks pretty much ALL GWT apps :(

2019-01-25 Thread Rodolfo M. Raya
legroups.com. > To post to this group, send email to google-web-toolkit@googlegroups.com. > Visit this group at https://groups.google.com/group/google-web-toolkit. > For more options, visit https://groups.google.com/d/optout. > -- Rodolfo M. Raya http://www.maxprograms.com -- You r

Re: Advice needed - url request

2018-05-02 Thread Rodolfo M. Raya
Don't send the request to the other server directly from the client. You will have problems with cross-origin content. Client side should request to GWT's server side to fetch content from the other server and return it as the result of a standard RPC or JSON request. GWT's server portion is not

Re: What is Wrong With GWT Widgets

2018-01-28 Thread Rodolfo M. Raya
See https://github.com/GwtMaterialDesign/gwt-material/issues/448 Regards, Rodolfo On Sun, Jan 28, 2018 at 6:31 AM Alexander Koch wrote: > Has anyone information on what this could mean for the GWT material > project? > > -- > You received this message because you are

Re: GWT - Auto logout after user inactivity

2017-12-28 Thread Rodolfo M. Raya
lt[0].equals(Responses.SUCCESS)) { // TODO display login screen } } }); return false; } return true;//as long as it returns true the execute is repeated after XX milliseconds } }, 1); Hope this helps, Rodolfo M. Raya On

Re: GWT 2.7 upgrade is tabbing to not work on grids

2017-12-06 Thread Rodolfo M. Raya
The picture shows a grid from GXT, not from GWT. You have to ask in a Sencha forum. Rodolfo On Wed, Dec 6, 2017 at 3:51 PM Mo Baig wrote: > We would like to use the tab key to move from field to field. > > This was working well on the 2.6 version but seems to not work in

Re: Code Scanner Reporting Vulnerabilities on GWT-generated code

2017-11-24 Thread Rodolfo M. Raya
Hi Aleks, SonarQube used to throw lots of warnings on GWT generated code. Upgrading to version 6.3 was enough to get rid of most warnings (there are no miracles, sometimes I get a warning or two when analyzing an app that had just a minor change in the Java code) Hope this helps, Rodolfo On

Re: Issues with GWT Eclipse Plugin and Eclise Oxygen 1.a

2017-10-12 Thread Rodolfo M. Raya
Also experienced problems with Oxygen 1a. Had to go back to Oxygen 1 to keep the GWT plugin working. FWIW, I don't have the Groovy plugin in my system. Regards, Rodolfo On Thu, Oct 12, 2017 at 9:03 AM Sebastian wrote: > Same here, Oxygen 1a asked to be installed and

Re: How to embed an external page in GWT application?

2017-09-20 Thread Rodolfo M. Raya
Add an HTML panel to your app and populate the panel with the page that you want to embed. On Wed, Sep 20, 2017 at 4:49 AM wrote: > Is there a solution to this problem?? > > On Wednesday, January 27, 2010 at 12:31:32 PM UTC-6, kelvin.huang wrote: >> >> Thanks Stevko!