Re: Servlet problem after upgrade

2024-12-06 Thread 'dav...@googlemail.com' via GWT Users
red in how you are signaling to your servlet container >> how it should find and load the required servlets. >> >> On Tuesday, December 3, 2024 at 6:04:49 AM UTC-6 dav...@googlemail.com >> wrote: >> >>> Thanks Shaik & Jens for your replies, but I've sti

Re: Servlet problem after upgrade

2024-12-06 Thread 'dav...@googlemail.com' via GWT Users
e signaling to your servlet container > how it should find and load the required servlets. > > On Tuesday, December 3, 2024 at 6:04:49 AM UTC-6 dav...@googlemail.com > wrote: > >> Thanks Shaik & Jens for your replies, but I've still got the same >> problem. To recap th

Re: Servlet problem after upgrade

2024-12-03 Thread Colin Alworth
49 AM UTC-6 dav...@googlemail.com wrote: > Thanks Shaik & Jens for your replies, but I've still got the same problem. > To recap the project includes a servlet (yes it is gwt-rpc) that simply > grabs the remote IP and makes it available to client code. If I browse to > the servlet, I

Re: Servlet problem after upgrade

2024-12-03 Thread 'dav...@googlemail.com' via GWT Users
Thanks Shaik & Jens for your replies, but I've still got the same problem. To recap the project includes a servlet (yes it is gwt-rpc) that simply grabs the remote IP and makes it available to client code. If I browse to the servlet, I should get a 405 signifying that the servlet is ru

Re: Servlet problem after upgrade

2024-12-02 Thread SHAIK FAYAZ
1. Check How the Servlet is Set Up Look at the file where your servlet is connected to a URL, like web.xml or in your annotations (comments in the code). Make sure the URL path for your servlet is correct, so it gets triggered when you visit the right link. 2. Ensure You Updated All Java Imports Wh

Re: Servlet problem after upgrade

2024-12-02 Thread SHAIK FAYAZ
Almost path problem it would be or check the path names correctly On Sun, Dec 1, 2024, 7:05 AM SHAIK FAYAZ wrote: > 1. Check How the Servlet is Set Up > Look at the file where your servlet is connected to a URL, like web.xml or > in your annotations (comments in the code). Make sur

Re: Servlet problem after upgrade

2024-11-30 Thread Jens
GWT doesn't really have any servlet magic so I doubt that the GWT upgrade has caused the issue. Are you double sure you haven't changed anything else except the GWT library? No Tomcat update? No Apache update? No update of Apache proxy rules? It sounds like your servlet is a GWT-RPC service be

Servlet problem after upgrade

2024-11-30 Thread 'dav...@googlemail.com' via GWT Users
hi I'm trying to upgrade from 2.10.0 to 2.12.1. My app runs in tomcat / java 21 with apache using it as a proxy. It's mostly client code except for a servlet whose sole function is to grab the remote ip and make it available to client code. With the 2.10.0 setup I had to run the server class th

Re: GWT Eclipse Plugin 4 Problem

2024-06-20 Thread Craig Mitchell
around is straightforward - 2023-09 was the latest as of > 60 days ago, falling back to it will likely not destroy any development > workflows. > > > On Wednesday, January 31, 2024 at 8:09:53 PM UTC-6 Fred Andrews wrote: > > No response to this man's issue after 6

Re: GWT Eclipse Plugin 4 Problem

2024-06-20 Thread 'Daniel Webb' via GWT Users
ponse to this man's issue after 6 weeks and I just hit the same problem. This is shocking. The plugin cannot be installed. Is GWT a dead product? On Monday, December 11, 2023 at 2:12:30 PM UTC-6 Bob Lacatena wrote: Hey. My coworker and I ran into trouble installing the GWT plugin on Ecli

Re: Session Management problem in flask application

2024-04-05 Thread Aakash Rathor
thank you for providing the information for managing the session or troubleshoot the problem through private window or containers of Firefox @Thomas Broyer @Jens i implement the methods according to you but again occur the problem as below 1)if i login inside the incognito window or private

Re: Session Management problem in flask application

2024-04-05 Thread Aakash Rathor
@Thomas Broyer i implement the methods according to you but again occur the problem as below 1)if i login inside the incognito window or private window i see in all tabs or all windows session id will be same and if login user A then login user B on same browser then user A is logout

Re: Session Management problem in flask application

2024-04-04 Thread Aakash Rathor
Thank you very much @Jens for more useful information On Thursday, April 4, 2024 at 9:54:49 PM UTC+5:30 Jens wrote: > 2)i wants to test my flask app in same browser but i wants to different > user login and if new user login then previous user don't logout > automatically > > > If you use C

Re: Session Management problem in flask application

2024-04-04 Thread Aakash Rathor
On Wednesday, April 3, 2024 at 6:02:06 PM UTC+5:30 Thomas Broyer wrote: > > On Wednesday, April 3, 2024 at 1:16:58 PM UTC+2 aakashrathor@gmail.com > wrote: > > Hello everyone, > In my flask application there is some issue related to login system and > issue as below

Re: Session Management problem in flask application

2024-04-04 Thread Jens
2)i wants to test my flask app in same browser but i wants to different user login and if new user login then previous user don't logout automatically If you use Chrome or a Chrome based browser then you could also create two chrome profiles. Profiles are fully independent of each other a

Re: Session Management problem in flask application

2024-04-04 Thread Thomas Broyer
ated to login system and issue as below 1)in flask app there are multiple users(roles) like admin ,indentor.etc. and the problem is that if any user login on same browser where already any user logged in then previous user automatically logout and recent user logging successfully 2)i

Re: Session Management problem in flask application

2024-04-04 Thread Aakash Rathor
gt; > On Wednesday, April 3, 2024 at 1:16:58 PM UTC+2 aakashrathor@gmail.com > wrote: > > Hello everyone, > In my flask application there is some issue related to login system and > issue as below 1)in flask app there are multiple users(roles) like > admin ,inde

Re: Session Management problem in flask application

2024-04-04 Thread Thomas Broyer
n there is some issue related to login system and issue as below 1)in flask app there are multiple users(roles) like admin ,indentor.etc. and the problem is that if any user login on same browser where already any user logged in then previous user automatically logout and recent use

Re: Session Management problem in flask application

2024-04-04 Thread Aakash Rathor
gt; In my flask application there is some issue related to login system and > issue as below 1)in flask app there are multiple users(roles) like > admin ,indentor.etc. and the problem is that if any user login on same > browser where already any user logged in then previous user aut

Re: Session Management problem in flask application

2024-04-03 Thread Thomas Broyer
On Wednesday, April 3, 2024 at 1:16:58 PM UTC+2 aakashrathor@gmail.com wrote: Hello everyone, In my flask application there is some issue related to login system and issue as below 1)in flask app there are multiple users(roles) like admin ,indentor.etc. and the problem is

Session Management problem in flask application

2024-04-03 Thread Aakash Rathor
Hello everyone, In my flask application there is some issue related to login system and issue as below 1)in flask app there are multiple users(roles) like admin ,indentor.etc. and the problem is that if any user login on same browser where already any user logged in then previous

Re: Problem with GWT?

2024-03-30 Thread Colin Alworth
page, it remains blank. I tried different browsers, > even on different computers, and they all showed the same problem. I am > using the gwt-2.8.2 SDK Until a few days ago, was it working correctly? > The curious thing is that the website works locally, that is, it is > normally displayed

Problem with GWT?

2024-03-26 Thread Germán Díaz
When I access the web page, it remains blank. I tried different browsers, even on different computers, and they all showed the same problem. I am using the gwt-2.8.2 SDK Until a few days ago, was it working correctly? The curious thing is that the website works locally, that is, it is normally

Re: Had a problem trying GWT 2.11.0

2024-02-05 Thread Thomas Broyer
Just published version 2024.2.5 of the archetypes that adds a DOCTYPE linking to the DTD to the context.xml. I could reproduce the jetty_overlays error in env=prod, but that really looks like a bug in the jetty-maven-plugin (and creating the directory allows the server to start, but it was stil

Re: Had a problem trying GWT 2.11.0

2024-02-05 Thread 'tim_mac...@yahoo.co.uk' via GWT Users
I also found that out eventually. Another thing: The server module needs /target /jetty_overlays folder for running env-prod. On Sunday, February 4, 2024 at 5:43:59 PM UTC jamal@gmail.com wrote: > After generating a project skeleton using the latest gwt-maven-archetypes >

Had a problem trying GWT 2.11.0

2024-02-04 Thread jamal....@gmail.com
After generating a project skeleton using the latest gwt-maven-archetypes , done the usual: - mvn gwt:codeserver -pl *-client -am - mvn jetty:run -pl *-server -am -Denv=dev The first command executed without problems, however the second one failed

Re: GWT Eclipse Plugin 4 Problem

2024-01-31 Thread Colin Alworth
project going. Finally, the workaround is straightforward - 2023-09 was the latest as of 60 days ago, falling back to it will likely not destroy any development workflows. On Wednesday, January 31, 2024 at 8:09:53 PM UTC-6 Fred Andrews wrote: > No response to this man's issue after 6 we

Re: GWT Eclipse Plugin 4 Problem

2024-01-31 Thread Fred Andrews
No response to this man's issue after 6 weeks and I just hit the same problem. This is shocking. The plugin cannot be installed. Is GWT a dead product? On Monday, December 11, 2023 at 2:12:30 PM UTC-6 Bob Lacatena wrote: > Hey. My coworker and I ran into trouble installing the GW

GWT Eclipse Plugin 4 Problem

2023-12-11 Thread Bob Lacatena
Hey. My coworker and I ran into trouble installing the GWT plugin on Eclipse 2023-12 (worked fine on 2023-09, so this isn't urgent, I'm just letting you know). A couple of weeks ago I got a new Mac, installed Eclipse 2023-09 and the GWT plugin, no problem. My coworker just go

Re: user.agent problem with GWT 2.1.0 and GXT 4.1

2023-12-11 Thread Jens
Generally Java 17 works for running GWT but source level still needs to be 11 for GWT client/shared code as GWT only supports compiling Java 11 source files. Server code can be anything. If you use GWT-RPC you might need to add some --add-opens to your server JVM: https://github.com/gwtproject/

Re: user.agent problem with GWT 2.1.0 and GXT 4.1

2023-12-08 Thread 'Frank Hossfeld' via GWT Users
I think so, as long as you are not using any language features of Java > 8 Victor Colina schrieb am Freitag, 8. Dezember 2023 um 14:55:58 UTC+1: > Thanks for the response, If I change to GWT 2.9 I can still use jdk 17? Or > I have to go lower? > > On Friday, December 8, 2023 at 9:05:37 AM UTC-4

Re: user.agent problem with GWT 2.1.0 and GXT 4.1

2023-12-08 Thread Victor Colina
Thanks for the response, If I change to GWT 2.9 I can still use jdk 17? Or I have to go lower? On Friday, December 8, 2023 at 9:05:37 AM UTC-4 Frank Hossfeld wrote: > Assuming you are using GWT 2.10.0, GXT expects a few things, (f.e.: > user-agent ie8) which have been removed in GWT 2.10.0. > Y

Re: user.agent problem with GWT 2.1.0 and GXT 4.1

2023-12-08 Thread 'Frank Hossfeld' via GWT Users
Assuming you are using GWT 2.10.0, GXT expects a few things, (f.e.: user-agent ie8) which have been removed in GWT 2.10.0. You have to stay with GWT 2.9.0. (see: https://docs.sencha.com/gxt/4.x/guides/announcements/Announcements.html) Victor Colina schrieb am Donnerstag, 7. Dezember 2023 um 17:4

user.agent problem with GWT 2.1.0 and GXT 4.1

2023-12-07 Thread Victor Colina
I'm trying to compile a simple GWT project with GXT 4. The compilation works unitl I add the gxt. [image: imagen_2023-12-07_124453814.png] This is my gwt.xml file. [image: imagen_2023-12-07_124712961.png] If anybody can help me, thanks in advance. -- You received this message because you a

Re: undefined String problem

2023-11-07 Thread 'dav...@googlemail.com' via GWT Users
This is my bad :-) The problem is me losing track of threading issues, which I've solved It's *not* a GWT problem On Tuesday, 7 November 2023 at 04:08:06 UTC dav...@googlemail.com wrote: > I'm using GWT 2.10 > My app client code calls the server to get the ip address of th

undefined String problem

2023-11-06 Thread 'dav...@googlemail.com' via GWT Users
I'm using GWT 2.10 My app client code calls the server to get the ip address of the client. Testing locally, I have this snippet String lp = remoteIP.getIP(); Window.alert(ip); the pop up says 127.0.0.1 as expected, but trying to include the ip string in some HTML output gives "undefined" as

Re: Migrating to ltgt gwt-maven-plugin causes compile problem with HibernateValidation

2022-08-25 Thread Thomas
No, didn't set gwtSdkFirstInClasspath and the default seems to be false. Anyways, the old mojo was working and the new version compiles now. Distracted by lots of BAU today and yet to actually test it. On Wednesday, August 24, 2022 at 11:48:55 PM UTC+8 t.br...@gmail.com wrote: > Did you maybe h

Re: Migrating to ltgt gwt-maven-plugin causes compile problem with HibernateValidation

2022-08-24 Thread Thomas Broyer
Did you maybe have gwtSdkFirstInClasspath set to true? That would have put gwt-user and gwt-dev and all their dependencies into the classpath before your own dependencies, putting javax.validation 1.0.0.GA before javax.validation 1.1.0.Final and therefore shadowing it (I'd expect Hibernate Vali

Re: Migrating to ltgt gwt-maven-plugin causes compile problem with HibernateValidation

2022-08-24 Thread Thomas
Thanks Thomas. That's working now. Over the years I've updated the dependencies and interestingly the mojo gwt-maven-plugin worked fine with these dependencies. On Wednesday, August 24, 2022 at 4:53:05 PM UTC+8 t.br...@gmail.com wrote: > GWT does not support javax.validation 1.1.0, only 1.0.0.

Re: Migrating to ltgt gwt-maven-plugin causes compile problem with HibernateValidation

2022-08-24 Thread Thomas
Thanks @eliasbalasis - that helped me. I was referencing the wrong versions of hibernate-validator and javax.validation. These need to be 4.1.0.Final and 1.0.0.GA respectively. I have no clue however how that was working with the old/mojo gwt-maven-plugin. On Wednesday, August 24, 2022 at 3:2

Re: Migrating to ltgt gwt-maven-plugin causes compile problem with HibernateValidation

2022-08-24 Thread Thomas Broyer
GWT does not support javax.validation 1.1.0, only 1.0.0. Because you're building a gwt-app, which only contains client-side code by definition, I see no reason for having javax.validation 1.1.0 (and Hibernate Validator 5, as well as gwt-servlet which is a subset of gwt-user). Stick to javax.vali

Re: Migrating to ltgt gwt-maven-plugin causes compile problem with HibernateValidation

2022-08-24 Thread eliasbala...@gmail.com
This looks like a classpath issue, from which I have suffered in the past but eventually managed to control. I suggest using Maven dependency control to force the correct implementation of the offending classes, particularly if you are running with "GWT Eclipse Plugin" which doesn't respect inh

Migrating to ltgt gwt-maven-plugin causes compile problem with HibernateValidation

2022-08-23 Thread Thomas
Hi all, I'm in the progress of modularising a GWT app and migrating it to use the newer ltgt gwt-maven-plugin. I have a GWT module which compiles correctly using the old gwt-maven-plugin, but fails with the following errors using the new gwt-maven-plugin: [INFO] --- gwt-maven-plugin:1.0.1:comp

Re: Problem decoding complex AutoBean

2020-07-10 Thread Colin Alworth
I'm not seeing any issue with that code and sample JSON. Here's a quick entrypoint that I made: @Override public void onModuleLoad() { IWebchatThemeConfigurationBean bean = deserializeFromJson("{\n" + "\"themeId\": 1,\n" + "\"name\": \"rpc\"

Re: Problem decoding complex AutoBean

2020-07-10 Thread Akshay Kumar
Can anyone help me? My json string is - { "themeId": 1, "name": "rpc", "enabled": true, "propertiesList": [ { "id": 1, "themeConfigurationId": 1, "chatScreen": "chatScreen", "component": "header", "property": "text", "value": "HELLO" }, { "id": 3, "themeConfigurationId": 1, "chatScreen": "chatScre

Re: GWT 2.8.2 to 2.9.0 - Possible problem with your *.gwt.xml module file.The compile time user.agent value (safari) does not match the runtime user.agent value (gecko1_8).Expect more errors.

2020-05-18 Thread Freddy Boucher
wrote: >> >> Hi, >> >> So I upgraded our app from GWT 2.8.2 to 2.9.0 and I'm facing an issue >> with Firefox (it's a GXT 4.0.3 app but I don't think it's relevant in this >> issue) >> >> It throws an Exception: >> >> P

GWT 2.8.2 to 2.9.0 - Possible problem with your *.gwt.xml module file.The compile time user.agent value (safari) does not match the runtime user.agent value (gecko1_8).Expect more errors.

2020-05-18 Thread Freddy Boucher
Hi, So I upgraded our app from GWT 2.8.2 to 2.9.0 and I'm facing an issue with Firefox (it's a GXT 4.0.3 app but I don't think it's relevant in this issue) It throws an Exception: Possible problem with your *.gwt.xml module file.The compile time > user.agent value (saf

Re: How to correct IE font size problem?

2020-02-16 Thread justanotherpg
I know this is old stuff.. but just had to say.. the page zoom worked fine for me.. Yes, fonts vary per browser, but when your talking 20% bigger.. then check the page zoom...just saying On Thursday, March 4, 2010 at 3:57:08 PM UTC-5, Sorinel C wrote: > > Are you sure isn't it the IE8 option "

Strange problem with casting an object to Comparable in GWT 2.8.2

2019-05-02 Thread David Nouls
I'm having a problem with Date objects in GWT 2.8.2. As part of a GUI component to create query objects for searching through our database I have this piece of code that tries to compare from/to objects (Object types are normally Date/BigDecimal/Integer/...) I have this piece of code:

jsinterop problem

2019-04-26 Thread David
I want to convert the following js code into Java code using Jsinterop: var disWorld = new AMap.DistrictLayer.World({ zIndex:10, styles:{ 'nation-stroke':function(props){ //props:{type:Nation_Border_China/Nation_Border_Foreign} if(props.type=='Nation_Border_

Re: Problem with using gwtmockito and

2018-08-27 Thread Lars
Cool :-) -- 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 google-web-toolkit@go

Re: Problem with using gwtmockito and

2018-08-27 Thread alexander . koch
I added "net.bytebuddy" as an extra package in the getPackagesToLoadViaStandardClassloader () method, This did the trick! Thank you so much Lars! On Thursday, August 23, 2018 at 4:33:12 PM UTC+2, Lars wrote: > > May, but this only guessing, because we did not use java9/10 at the moment > (sti

Re: Problem with using gwtmockito and

2018-08-23 Thread Lars
In addition I found this issue https://github.com/google/gwtmockito/issues/72 to get Java9 running... -- 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-to

Re: Problem with using gwtmockito and

2018-08-23 Thread Lars
May, but this only guessing, because we did not use java9/10 at the moment (still with java8) and in addition stepped away from the classloader handling of gwtmockito (after having some issues), you have to include net.bytebuddy to the list of classes loaded by the standard classloader. You co

Re: Problem with using gwtmockito and

2018-08-23 Thread alexander . koch
Hi Lars, I really appreciate your support, thanks. Yes we had a small patch In GwtMockitotestRunner, but I tested with the unpatched version also (different test now): [ERROR] testGetMissingActivity(de.***.***.client.app.init.***ActivityMapperTest) Time elapsed: 0 s <<< ERROR! java.lang.Ill

Re: Problem with using gwtmockito and

2018-08-22 Thread Lars
Even if it's not latest (bytebuddy), it looks good... Your trace in the issue (https://github.com/google/gwtmockito/issues/75) points to line 197 of GwtMockitoTestRunner (btw. the only gwtmockito line in the trace) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)

Re: Problem with using gwtmockito and

2018-08-22 Thread alexander . koch
bytebuddy 1.8.15 [INFO] +- org.mockito:mockito-core:jar:2.21.0:test [INFO] | +- net.bytebuddy:byte-buddy:jar:1.8.15:test [INFO] | +- net.bytebuddy:byte-buddy-agent:jar:1.8.15:test -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe fr

Problem with using gwtmockito and

2018-08-21 Thread Lars
What version of bytebuddy do you use? -- 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 e

Problem with using gwtmockito and

2018-08-21 Thread alexander . koch
Hello All, sorry if this is not a pure GWT question. I was wondering if any of you is successfully using gwtmockito with Java 9 or later (I tried with Java 10). Apparently by updating mockito and gwtmockito to recent versions it should work. I am using gwtmockito 1.1.8 and mockito2.21.0 and I

Re: Problem with refreshing a Flextable after changes

2018-08-21 Thread Joyce
Hi Jens, how can I add a CloseHandler? I thought that the class MyCampaign should implemts the CloseHandler for the EditCampaign class. My Problem is then: How do I get the changed Campaign data to the MyCampaign class? Do you have any ideas? Thank you! -- You received this message because

Re: Problem with refreshing a Flextable after changes

2018-08-20 Thread Jens
Add a close handler to your edit campaign dialog box and once it closes re-render the corresponding row. -- J. -- 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 goo

Problem with refreshing a Flextable after changes

2018-08-19 Thread Joyce
Hello everybody, I build my own GWT App which shows mainly a FlexTable (*campaignTable*) with campaign objects in it. The campaign objects are saved in an array in my main class. To change the data of the campaign, I have a button ( *editButton*) which opens with its clickhandler a popup. In that

Re: Problem with replacing the class

2018-07-23 Thread Kirill Prazdnikov
> > What you want to achieve can be done through "super sourcing". See > “Overriding one package implementation with another” at > http://www.gwtproject.org/doc/latest/DevGuideOrganizingProjects.html#DevGuideModuleXml > Thanks, that works. -- You received this message because you are subscri

Re: Problem with replacing the class

2018-07-19 Thread Thomas Broyer
is related to "deferred binding", i.e. creating an instance through GWT.create(), where the actual class being instantiated is "bound" at compile-time, depending on properties (and/or permutations). What you want to achieve can be done through "super sourcing". See “Overriding one package impl

Problem with replacing the class

2018-07-19 Thread Kirill Prazdnikov
Hi I`m having troubles to replace one class by another This is the class I want to replace: package delightex.math.fp; public class FloatBits { public static int floatToRawIntBits(float v) { return Float.floatToIntBits(v); } public static float intBitsToFloat(int v) { return Float.intBitsT

Re: Method Reference problem in SDM

2018-05-15 Thread Paul Sitarz
Hello Alexander, I got the same kind problem. I fixed it by adding "-noincremental " to the launch configuration. It is slightly slower to compile, but at least it works. I hope it will help you! Best, Paul Xalys.com <https://www.xalys.com> On Monday, May 14, 2018 at

Method Reference problem in SDM

2018-05-14 Thread Alexander Tarasov
Hello. I faced several times a problem with Method References in SuperDevMode. I got an error that "getId" method was undefined for "User::getId". It can be fixed by restarting Jetty or by replacing with Lambda. Maybe the problem is with UnitCache. Any ideas? Thanks in advan

Re: Migrating from GWT 2.5.1 to 2.8.2 - Problem with Super dev mode

2018-02-05 Thread Martones
All right thank you Thomas, I will try one of these solutions! Ludovit Le lundi 5 février 2018 11:23:01 UTC+1, Thomas Broyer a écrit : > > According to > https://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html, > > the system scope is similar to the provided one

Re: Migrating from GWT 2.5.1 to 2.8.2 - Problem with Super dev mode

2018-02-05 Thread Thomas Broyer
According to https://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html, the system scope is similar to the provided one, so it's not transitive and must be added to the web-client and mobile-client modules as well. (also note that this page says the system scope is

Re: Migrating from GWT 2.5.1 to 2.8.2 - Problem with Super dev mode

2018-02-05 Thread Martones
Yes it works with package! :) Great, once more thanks a lot Thomas! I hope this is the last point, but I didnt manage to include a "standalone" jar. I think I might as well try to find some up to date solution (not sure the legacy code will be GWT 2.8 compliant). But I admit I would at least l

Re: Migrating from GWT 2.5.1 to 2.8.2 - Problem with Super dev mode

2018-02-04 Thread Thomas Broyer
Try package instead of prepare-package then (my bad, you should never use a phase earlier than package in a multi-module Maven project, as a rule if thumb --there are few exceptions, as always, depends on the project though) -- You received this message because you are subscribed to the Google

Re: Migrating from GWT 2.5.1 to 2.8.2 - Problem with Super dev mode

2018-02-04 Thread Martones
I'm sorry I went a bit too fast on the last e-mail. So just to precise: the problem is while copiling web-client the source code from shared are not available. (i'm inoking mvn on the root as usual) Many thanks again ! Ludovit Le dimanche 4 février 2018 18:51:50 UTC+1, Marton

Re: Migrating from GWT 2.5.1 to 2.8.2 - Problem with Super dev mode

2018-02-04 Thread Martones
All right many thanks. Oddly enough I have errors while mvn prepare-package, I don't have these when I mvn install or codeserver. [INFO] Compiling module com.test.WebClient [INFO]Tracing compile failure path for type 'com.test.client.token.PanelFilterLotToken' [INFO] [ERROR] Errors in

Re: Migrating from GWT 2.5.1 to 2.8.2 - Problem with Super dev mode

2018-02-03 Thread Thomas Broyer
mvn prepare-package -pl web-client -am -DskipTests ? (you don't just want to gwt:compile, you want to compile the shared module, process ressources, compile the web-client module, and gwt:compile it) -- You received this message because you are subscribed to the Google Groups "GWT Users" group

Re: Migrating from GWT 2.5.1 to 2.8.2 - Problem with Super dev mode

2018-02-03 Thread Martones
Oh alright, I really was messing things, thinking the previous bookmarklet methods were not working anymore. This suits me well and works perfectly! Although I'm not sure I understand how is the compilation / packaging supposed to work now. To generate my client files, I shall use gwt:compile

Re: Migrating from GWT 2.5.1 to 2.8.2 - Problem with Super dev mode

2018-02-03 Thread Thomas Broyer
You can also use Super Dev Mode with bookmarklets (without -launcherDir), or setup a reverse proxy. -- 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-tool

Re: Migrating from GWT 2.5.1 to 2.8.2 - Problem with Super dev mode

2018-02-02 Thread Martones
pp-example. > > Although I face a new problem with the codeserver now: It runs on my > http://127.0.0.1:9876/ , and I'm using "launcherDir" to put the output > into a folder served by the remote server (I know this sucks > but can't really run this otherwise). So

Re: Migrating from GWT 2.5.1 to 2.8.2 - Problem with Super dev mode

2018-02-02 Thread Martones
/gwt-modular-app-example. Although I face a new problem with the codeserver now: It runs on my http://127.0.0.1:9876/ , and I'm using "launcherDir" to put the output into a folder served by the remote server (I know this sucks but can't really run this otherwise). So I h

Re: Migrating from GWT 2.5.1 to 2.8.2 - Problem with Super dev mode

2018-02-01 Thread Thomas Broyer
On Thursday, February 1, 2018 at 6:11:51 PM UTC+1, Martones wrote: > > Hi everyone, and Thomas especially :p > > I'm migrating a larger legacy project to the actual GWT standards. I'm > running into many problems but I'm sure they are all due to my > misunderstanding of how to wire modules betw

Re: Migrating from GWT 2.5.1 to 2.8.2 - Problem with Super dev mode

2018-02-01 Thread Martones
Hi everyone, and Thomas especially :p I'm migrating a larger legacy project to the actual GWT standards. I'm running into many problems but I'm sure they are all due to my misunderstanding of how to wire modules between them. Here is the context and my questions : *My old project structure wa

Re: Problem compiling GWT code with Java9

2018-01-04 Thread James Nelson
If you aren't using java 9 modules, the latest release will work. It does this by reading the classpath from System.getProperty("java.class.path"), so if you are using standard tools for creating classpath, everything should work fine. If you are doing anything non-standard for assigning clas

Re: Problem compiling GWT code with Java9

2018-01-02 Thread Dave Bradlee
ef10889e8dfe3f3a >> [2] >> https://github.com/gwtproject/gwt/commit/5b7560c4bb6376e997981387e4f2feee1816e1dc >> >> On Wednesday, September 20, 2017 at 9:49:20 AM UTC+2, Pratik Parikh wrote: >>> >>> does anyone have an update on this sissu? I am running into the same &g

Problem writing module-info.java for gwt modules using jsinterop

2017-11-06 Thread Bruno Salmon
hi, I'm moving a maven java/gwt multi-modules project to java 9 and would like to write module-info.java files also for gwt modules (why not?). I'm using GWT 2.8.2. Since it doesn't provide java 9 modules info, I need to rely on automatic module names. I wrote my module-info.java as follow: mo

Re: Migrating from GWT 2.5.1 to 2.8.2 - Problem with Super dev mode

2017-10-31 Thread Martones
Hi Thomas, Many thanks for your time and answer! I was indeed playing with the legacy plugin ... :) Things work much better now. The super dev mode is really great by the way. I used your plugin and revamped slightly the client project (moved my main mymodule.gwt.xml to /src/main/java/module.

Re: Migrating from GWT 2.5.1 to 2.8.2 - Problem with Super dev mode

2017-10-31 Thread Thomas Broyer
On Tuesday, October 31, 2017 at 10:31:39 AM UTC+1, Martones wrote: > > Hey guys, > > I'm trying to migrate my app which looks like this : > GWT 2.5.1 front, PHP back, no maven -> GWT 2.8.2 front, PHP back, maven > with gwt-maven-plugin. > > I manage to *mvn gwt:compile* and *mvn gwt:run-codeser

Migrating from GWT 2.5.1 to 2.8.2 - Problem with Super dev mode

2017-10-31 Thread Martones
Hey guys, I'm trying to migrate my app which looks like this : GWT 2.5.1 front, PHP back, no maven -> GWT 2.8.2 front, PHP back, maven with gwt-maven-plugin. I manage to *mvn gwt:compile* and *mvn gwt:run-codeserver*. I actually think I'm confused about how the SDM runs now in 2.7+ but here i

Very big performance problem with Long

2017-10-26 Thread Kirill Prazdnikov
Hi, the problem is that Long.rotateLeft is more then 10x times slower then its copy paste as private long rotateLeft(long w, int r) { return (w << r) | (w >>> -r); } can this be fixed ? -- You received this message because you are subscribed to the Google Groups &qu

Re: Problem compiling GWT code with Java9

2017-09-21 Thread Thomas Broyer
thub.com/gwtproject/gwt/commit/5b7560c4bb6376e997981387e4f2feee1816e1dc > > On Wednesday, September 20, 2017 at 9:49:20 AM UTC+2, Pratik Parikh wrote: >> >> does anyone have an update on this sissu? I am running into the same >> problem, so an update would help. >> >> On Tuesday,

Re: Problem compiling GWT code with Java9

2017-09-20 Thread Pratik Parikh
:49:20 AM UTC+2, Pratik Parikh wrote: >> >> does anyone have an update on this sissu? I am running into the same >> problem, so an update would help. >> >> On Tuesday, June 13, 2017 at 12:08:29 PM UTC-4, James Nelson wrote: >>> >>> Hi. >>> >

Re: Problem compiling GWT code with Java9

2017-09-20 Thread Thomas Broyer
/87f27659af55d7d549521405ef10889e8dfe3f3a [2] https://github.com/gwtproject/gwt/commit/5b7560c4bb6376e997981387e4f2feee1816e1dc On Wednesday, September 20, 2017 at 9:49:20 AM UTC+2, Pratik Parikh wrote: > > does anyone have an update on this sissu? I am running into the same > problem, so an update w

Re: Problem compiling GWT code with Java9

2017-09-20 Thread Pratik Parikh
does anyone have an update on this sissu? I am running into the same problem, so an update would help. On Tuesday, June 13, 2017 at 12:08:29 PM UTC-4, James Nelson wrote: > > Hi. > > I am currently very busy this week, but can try to schedule a push to > maven central this

Re: Problem with RegularImmutableList and SingletonImmutableSet Deserialization

2017-09-17 Thread ahmed ali
I solved it by moving the dependencies for gwt & guava-gwt to parent project of client, server and shared pojects On Sunday, September 17, 2017 at 2:39:44 PM UTC+2, ahmed ali wrote: > > I have a question regarding GWT RPC calls > > I'm using guava & guava-gwt version 22 and I inherited this modul

Problem with RegularImmutableList and SingletonImmutableSet Deserialization

2017-09-17 Thread ahmed ali
I have a question regarding GWT RPC calls I'm using guava & guava-gwt version 22 and I inherited this module When I call any service and the return type is Set then if the server returns SingletonImmutableSet this exception is thrown "com.google.gwt.user.client.rpc.SerializationException: co

Re: Problem compiling GWT code with Java9

2017-06-13 Thread James Nelson
Hi. I am currently very busy this week, but can try to schedule a push to maven central this weekend (I have other people waiting on it to use various other tools I dabble in as well). Please remind me if I don't post links back here by next Monday. Worst case scenario, I can just upload jars

Re: Problem compiling GWT code with Java9

2017-06-08 Thread shital patil
erences, instead of only local variable declarations)... > The biggest problem was the changes to the classloading system. > > Specifically, they no longer use URLClassLoader for system classloaders, > meaning that any attempts to "rip out the classpath" will not work any > longer

Re: Problem compiling GWT code with Java9

2017-06-07 Thread James Nelson
Also, the reason gwt.xml files aren't loading sanely has to do with how resources are handled in java 9. You are going to have to either declare your source modules (with the gwt.xml) as `open` (no documentation for this, I found it trolling JCP forums), or you can open your module to your gwt

Re: Problem compiling GWT code with Java9

2017-06-07 Thread James Nelson
from eclipse jdt), or a tiny change for try-with-resources (allows effectively final variable references, instead of only local variable declarations)... The biggest problem was the changes to the classloading system. Specifically, they no longer use URLClassLoader for system classloaders

Re: Problem compiling GWT code with Java9

2017-06-07 Thread shital patil
Did you find any solution to this. I am facing same issue I tried to pass vm arg --add-modules=java.se.ee but still it doesnot work. On Wednesday, February 15, 2017 at 2:47:30 PM UTC+5:30, Dave Bradlee wrote: > > At Labkey.com we're trying to compile all of our code, which includes GWT > code, w

Re: Eclipse plugin problem: GWT 2.8.1 with Guava 21

2017-05-23 Thread Alexander Tarasov
I also have a similar issue only with GUAVA 21 Tracing compile failure path for type 'com.google.common.collect.ImmutableMap' [INFO] Errors in 'jar:file:/C:/Users/Public/Documents/maven/repository/com/google/guava/guava-gwt/21.0/guava-gwt-21.0.jar!/com/google/common/collect/super/com/goog

Eclipse plugin problem: GWT 2.8.1 with Guava 21

2017-05-16 Thread ahmed ali
1.1 provided I can now generate the war from my project and it is working fine the problem is when I want to run it from eclipse it gives me the following error Compile with -strict or with -logLevel set to TRACE or DEBUG to see all errors. [ERROR] Errors in 'com/google/comm

  1   2   3   4   5   6   7   8   9   10   >