Re: GWT JSON-B

2018-05-20 Thread Ahmad Bawaneh
As long as you can limit your classes to jstypes - double, arrays, jsDate 
...etc- this could be the right choice, but when the classes are shared with 
the server you might end up with JsType for each bean in the server, or you can 
use a lib that allows you to share the bean between the client and server.

-- 
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@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: GWT JSON-B

2018-05-20 Thread Nándor Előd Fekete
I needed portable code between client/server and polymorphism (through { 
'type': 'SomeTypeIdentifier', ...other properties...}). Is there some 
straightforward way to do that with jsinterop annotations?

On Monday, May 21, 2018 at 12:43:59 AM UTC+2, Thomas Broyer wrote:
>
> How about "just" using @JsType classes?

-- 
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@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: GWT JSON-B

2018-05-20 Thread Thomas Broyer
How about "just" using @JsType classes?

-- 
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@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Unable to download eclipse plugin

2018-05-20 Thread J.J.Chao Tao
Hi, 

  I am trying to install GWT plugin for Eclipse (Oxygen or Neon), using the 
Eclipse market place, but got "No repository found at 
http://storage.googleapis.com/gwt-eclipse-plugin/v3/release;. Can anyone 
help?

  Thanks.

--J.J Chao--



-- 
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@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Future of GWT

2018-05-20 Thread Ahmad Bawaneh
according to my experience codeserver issues happens when client and server 
dependencies are mixed up, one good way to solve such mix is split the code 
into client and server module as it is in the default project created by 
tbroyer gwt modular webapp https://github.com/tbroyer/gwt-maven-archetypes 

On Thursday, May 10, 2018 at 11:32:35 AM UTC+3, Slick Technologies wrote:
>
> I have a huge code base written in GWT. What you guys think about general 
> future of the framework.
>
>
>
>

-- 
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@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: GWT JSON-B

2018-05-20 Thread Ahmad Bawaneh
Thank you Nándor Előd Fekete for pointing out to my gwt-jackson-apt lib, i 
would like also to add that my lib is using Annotation processors instead 
of reflection and generators, and you can also use the same object mapper 
for both client side and server side, i would really love to have any kind 
of feedback, feature requests, issues in the github repo.

Thanks

On Saturday, May 19, 2018 at 11:07:35 PM UTC+3, richip wrote:
>
> Is there support for JSON-B or any other JSON-object binding API in GWT? 
> If not, is it possible to implement this without reflection? I wouldn't 
> mind taking a stab at it, but am not sure how I'd do it without Java 
> reflection. The goal is to call a R
>

-- 
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@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: GWT JSON-B

2018-05-20 Thread Nándor Előd Fekete
I had great success with https://github.com/nmorel/gwt-jackson, which is a 
json library written for gwt that emulates much of jackson's functionality. 
But note that it uses gwt generator infrastructure and hence is not 
forward-compatible with future GWT3.
There's also https://github.com/vegegoku/gwt-jackson-apt that should be 
forward compatible with GWT3, but I haven't tried it out yet. Check their 
roadmap for a quick picture on supported/not-yet-supported 
features: https://github.com/vegegoku/gwt-jackson-apt#road-map. Instagram 
also has something, but I haven't tried that 
either: https://github.com/Instagram/ig-json-parser

On Saturday, May 19, 2018 at 10:09:38 PM UTC+2, richip wrote:
>
>
>
> On Saturday, 19 May 2018 14:07:35 UTC-6, richip wrote:
>>
>> Is there support for JSON-B or any other JSON-object binding API in GWT? 
>> If not, is it possible to implement this without reflection? I wouldn't 
>> mind taking a stab at it, but am not sure how I'd do it without Java 
>> reflection. The goal is to call a RESTful service passing a Java object and 
>> getting a Java object in response. All nice and Java-like.
>>
>

-- 
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@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.