Re: if i use RequestFactory am i tied to the API, meaning, will i be able to use other clients?

2011-07-19 Thread kim young ill
is there any example how can i call RF from non-gwt or non js client ? eg. can i call it directly from hand-written js ? thanx On Tue, Jul 19, 2011 at 12:18 PM, Elhanan Maayan elh.mailg...@gmail.comwrote: what do you mean by open api? btw on a similar note, what's exactly Titanium

xxx.ui.xml is not in GWT client package

2011-07-26 Thread kim young ill
hi there as long as gwt-project get a deeper/complexer package layout, gwt-designer fails to open with message You are attempting to use UiBinder for ...ui.xml, however it is not in GWT client package. compile/running just fine, but gwt-designer is useless, is there a way to fix it without

Re: xxx.ui.xml is not in GWT client package

2011-07-28 Thread kim young ill
i tried but it desnt help On Wed, Jul 27, 2011 at 9:57 PM, Tomasz Gawel tomaszga...@op.pl wrote: And did you try to take use of @UiTemplate annotation to point the actual location of ui.xml file? -- You received this message because you are subscribed to the Google Groups Google Web

Re: Converting raw JSON to a JSONObject / JSONValue

2011-08-03 Thread kim young ill
try this : return eval('(' + json + ')'); On Wed, Aug 3, 2011 at 4:43 PM, Alexander Orlov alexander.or...@loxal.netwrote: The JSONObject takes only JavaScriptObject as its constructor parameter. JavaScriptObject can be returned only by a JSNI function which I wrote: public static native

Re: java.lang.ClassNotFoundException: org.apache.http.HttpEntity

2011-08-08 Thread kim young ill
looks like u want to use apache-httpclient for gae 1. not all jdk-packages are useable in gwt-clientside 2. limitations of gae : networkconnections (outbounds ) ??? On Mon, Aug 8, 2011 at 10:35 AM, Ashwin Desikan ashwin.desi...@gmail.comwrote: ** what version of gwt are you running? Also is

Re: java.lang.ClassNotFoundException: org.apache.http.HttpEntity

2011-08-08 Thread kim young ill
these to call a rest ws . so what is the option to do it on GWT+GAE platform. Just to mention i am invoking this code from server side i.e from a serviceImpl Thankx and Regards Vik Founder http://www.sakshum.org http://blog.sakshum.org On Mon, Aug 8, 2011 at 2:09 PM, kim young ill khi

Re: Access static file from onModuleLoad() method

2011-09-01 Thread kim young ill
it's running in browser, so u have to access it via http, the servers filesystem is not available On Thu, Sep 1, 2011 at 8:01 PM, AThinerCoin athinerc...@gmail.com wrote: Thank you for your help. This helped me get my source code to find my config.xml file. For anyone else who has a

editor framework suggestion ?

2011-09-07 Thread kim young ill
Hi gwt gurus i want to to use editorframework implement this: Person extends ValueProxy -name:String -attributes:ListKeyValueProxy KeyValueProxy extends ValueProxy -key:String -value:String want to populate a popup-editor where you can edit person : add/remove/edit attributes, change

mvn gwt:run failed

2011-09-14 Thread kim young ill
hi, i just updated my gwt-maven project to gwt 2.4 cannot use jsp anymore: got this on the webpage: Compile failed; see the compiler error output for details. at org.apache.tools.ant.taskdefs.Javac.compile(Javac.java:933) at

Re: Problem to migrate requestfactory 2.3 to 2.4

2011-09-14 Thread kim young ill
i have other prob. updating from 2.3 to 2.4 with request-factory java.lang.ArrayIndexOutOfBoundsException: 1 [ERROR] at com.google.web.bindery.requestfactory.server.SimpleRequestProcessor.processInvocationMessages(SimpleRequestProcessor.java:425) [ERROR] at

Re: mvn gwt:run failed

2011-09-15 Thread kim young ill
problem solved: http://code.google.com/p/google-web-toolkit/issues/detail?id=3557 i just use the approach with JDTCompiler adapter add this line to my pom.xml extraJvmArgs-Xmx1024m -Dbuild.compiler=de.webapp.JDTCompiler16/extraJvmArgs just strange that there're not so many complaints, looks

Re: Saving Object to fole on Server

2011-11-07 Thread kim young ill
i dont think i understand what you want to do here. if you want to save an object, you have to serialize it write it to server. if you want to use http, you can do it with POST (multipart), on serverside, you need to write a servlet to handle the request: parse it write it to wherever you want

GWTimageresource load seperately

2011-11-25 Thread kim young ill
Hi, i want to use ClientBundle to put all images together, plain simple like this: @Source(img/priv.png) ImageResource priv(); @Source(img/logo.png) ImageResource logo(); @Source(img/back.png) ImageResource back(); @Source(img/print.jpg) ImageResource

Re: GWTimageresource load seperately

2011-11-25 Thread kim young ill
deploying a new version. I don't like to tell my clients to first clear their browser cache... That is: if they don't, they have a good change of seeing the old image for a few day's more.. (it all depends on the proxies and browser being used) - Ed On Nov 25, 2:22 pm, kim young ill khi

Re: FTP file upload in gwt

2011-12-07 Thread kim young ill
doesnt work, gwt/web uses HTTP which is not FTP if u want FTP, its enough to use an ftp client, (Window$) Explorer will do the job (if u use it), otherwise use Finder(mac) or Nautilus (Linux) hth On Mon, Dec 5, 2011 at 1:17 PM, Rahul Sharma rahul.sharma1...@gmail.comwrote: Hello, I want to

Re: GWT and Generated file download

2011-12-11 Thread kim young ill
depends how long u wanna keep the files. u can store files somewhere, put filepath in session, when session got destroyed ( put a listener in contextlistener), read out the paths and remove them. hth On Mon, Dec 12, 2011 at 8:17 AM, Appien appienvanv...@gmail.com wrote: Thanks so far.

Re: hosted mode with netbeans

2011-12-12 Thread kim young ill
use maven (mvn gwt:run) On Mon, Dec 12, 2011 at 10:18 AM, András Csányi sayusi.a...@gmail.comwrote: Dear All, I'm struggling with these IDEs and I fed up a little bit with them, to be honest. I faced the linked issue with Netbeans. Does anybody have any idea what could be the problem and

Re: Session management in GWT

2011-12-14 Thread kim young ill
try to get Request from your rpc or rf public-implementation pass it to getFromSession() Wed, Dec 14, 2011 at 7:51 AM, Appien appienvanv...@gmail.com wrote: The thing is that I use the local I use the built-in Jetty server of GWT as development server. In the end the application will run on

Re: Session management in GWT

2011-12-14 Thread kim young ill
session? For one part of the functionality it works as it is calling the same servlet twice... On Dec 14, 9:13 am, kim young ill khi...@googlemail.com wrote: try to get Request from your rpc or rf public-implementation pass it to getFromSession() Wed, Dec 14, 2011 at 7:51 AM, Appien

Re: Session management in GWT

2011-12-14 Thread kim young ill
let me know if you need more information. Many thanks! On Dec 14, 2:04 pm, kim young ill khi...@googlemail.com wrote: can u post some more code ? a bit more information would be more helpfull On Wed, Dec 14, 2011 at 2:01 PM, Appien appienvanv...@gmail.com wrote

Re: Session management in GWT

2011-12-14 Thread kim young ill
)); } } else { log.warn(Session invalid); invalidateSession(session); } return returnedValues; On Dec 14, 2:44 pm, kim young ill khi...@googlemail.com wrote: in your

Re: CappuccinoGWT

2012-01-27 Thread kim young ill
looks very promising. nice work. On Fri, Jan 27, 2012 at 11:25 PM, Alain Ekambi jazzmatad...@googlemail.comwrote: Good wor is always welcome. Keep it up :) 2012/1/27 cbruno cbruno.li...@gmail.com GWT users, Ive launched a repository for a GWT UI framework im building, called

Re: How to add a link (anchor) to a CellTable?

2012-01-28 Thread kim young ill
write your own cell override method render hth On Sat, Jan 28, 2012 at 1:46 PM, Magnus alpineblas...@googlemail.comwrote: Hi, can I add an anchor object to a cell table? I just found TextColumn as the only reasonable subclass of Column: TextColumnEntry col_myCol = new TextColumnEntry()

Re: How to add a link (anchor) to a CellTable?

2012-01-28 Thread kim young ill
check out the gwt-showcase for some examples. On Sat, Jan 28, 2012 at 4:37 PM, Andrea Boscolo andrew...@gmail.com wrote: See docs: http://code.google.com/webtoolkit/doc/latest/DevGuideUiCustomCells.html -- You received this message because you are subscribed to the Google Groups Google

fileupload in gwt

2012-02-14 Thread kim young ill
hi there what's the best approach to handle a simple fileupload in gwt ? normally it would be a normal POST with File-Field, problem is that a post to a servlet will make the page refresh, that means user will be redirect from current page. is there a lightweight-approach which doesnt require this

Re: fileupload in gwt

2012-02-14 Thread kim young ill
ahh, thanx, i'll have a look. On Tue, Feb 14, 2012 at 11:29 AM, Thomas Broyer t.bro...@gmail.com wrote: FormPanel defaults to submitting to an hidden iframe; couple that with a FileUpload widget and you're done. Have a look at the GWTUploader project too. -- You received this message

Re: Uploading a file 1MB

2012-03-08 Thread kim young ill
need to be more specific what your BlobstoreService is doing/used library On Wed, Mar 7, 2012 at 4:01 PM, learning coding learning.codin...@gmail.com wrote: Hi all , I have to make webapplication using java, I have to upload a file which is bigger then 1MB . Actually i need the

Re: fileupload in gwt

2012-03-08 Thread kim young ill
anyone know how to handle a cancel-upload case ? i guess if the client just cut the line. server will get IOException can handle that. what about clientside with FileUpload widget (or i guess Formpanel should do sth here )? thanx On Wed, Feb 15, 2012 at 5:56 AM, Amith K Bharathan

Re: fileupload in gwt

2012-03-10 Thread kim young ill
thanx, i'll try it out. that's weird thou since its not documented anywhere. On Sat, Mar 10, 2012 at 11:31 PM, Brandon Donnelson branflake2...@gmail.com wrote: I've found can trick the formpanel self target by setting the target to null. If you wanted to post and redirect to servlet this is

Re: GWT FileUpload - Servlet options and handling response

2012-03-20 Thread kim young ill
On Fri, Mar 16, 2012 at 10:27 PM, Ashish testysi...@gmail.com wrote: I am new to GWT and am trying to implement a file upload functionality. Found some implementation help over the internet and used that as reference. But have some questions related to that: The actual upload or writing the

Re: ff11 gwt dev plugin

2012-03-21 Thread kim young ill
thanx alot On Tue, Mar 20, 2012 at 5:38 PM, Trevor Skaife tska...@gmail.com wrote: Thanks a lot, it's now working on my mac. -Trevor -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: Debugging with Xcode

2012-03-21 Thread kim young ill
xcode with for java/gwt ??? it'd be much (IMHO) easier for you to switch to eclipse/netbeans/ . On Wed, Mar 21, 2012 at 11:41 AM, Olivier Scherler oliv...@gasser-media.chwrote: Hello, Has anyone ever been able to run a GWT project in devmode using Xcode on the Mac and use the debugger?

Re: Call for action: Time to rethink a road-map and more frequent updates for GWT.

2012-04-18 Thread kim young ill
+1 no feedback from googlers ??? look like people who bet on GWT is out of luck now. i start getting nervous right now On Wed, Apr 18, 2012 at 6:52 PM, Mike Dee mdichiapp...@gmail.com wrote: Google needs to step up to the plate. If you want to be the caretaker for GWT and you want me (and

drag/drop/re-ordering of rows inside celltable/datagrid

2012-04-25 Thread kim young ill
hi, has someone tried to do this ? how to keep the data-provider stays in sync ? would be great for some hints thanx -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com.

Re: Novice GWT question: Parallel Post Requests

2012-04-25 Thread kim young ill
On Mon, Apr 23, 2012 at 11:20 PM, LogicalGoetz digital.go...@gmail.comwrote: This may be a terribly novice question, but for each POST performed by, say, a FormPanel, is there a subsequent HttpResponse generated by the Servlet? Obviously in standard situations this will play out as follows:

Re: How to get connected client count ?

2012-05-16 Thread kim young ill
normally it's the container (webserver) who can handle this. also depends how you define connect ( socket connection or openning http session) hth On Wed, May 16, 2012 at 8:16 PM, nofear adnba...@gmail.com wrote: Hello guys, I have a simple question and i couldn't find the answer yet, -

Re: How to access a GWT Servlet from a C# application?

2012-05-23 Thread kim young ill
make a http-request to the right url/path. at http level it doesnt make matter if u're using servlet or php or whatever On Mon, May 21, 2012 at 7:08 PM, Clemens Bartz clemens.bart...@gmail.comwrote: Hy, I am trying to access a GWT Servlet from a C# application. How do I do that? To

Re: GWT and HttpServletResponse

2012-05-28 Thread kim young ill
you can generate some metadata on serverside send back to client (via rpc) let client generate the path to your file then either redirect (with Window.assign(url) or let user click to the generated link to get the file. i dont think you can get binary input stream from client to get the file

Re: SessionHandling in RequestFactory

2012-05-28 Thread kim young ill
i think you can just call the localthread request/response to get the corresponding (servlet) request/response can work with it as u always do with servlet/jsp hth On Mon, May 28, 2012 at 5:09 PM, Thomas Broyer t.bro...@gmail.com wrote: On Monday, May 28, 2012 5:02:15 PM UTC+2, lucky wrote:

Re: GWT and HttpServletResponse

2012-05-29 Thread kim young ill
On Tue, May 29, 2012 at 11:46 AM, Akis akismitra...@gmail.com wrote: The generated file has to be automatically downloaded on button pressing. Maybe, in future, the generated file could also be a zip file, containing several resources generated from input client-side data, so it could also be

Re: Celltable performance issue

2012-06-05 Thread kim young ill
check out the showcase this: https://developers.google.com/web-toolkit/doc/latest/DevGuideUiCellWidgets#data-provider On Mon, Jun 4, 2012 at 1:23 PM, lucky lucky.begum...@gmail.com wrote: Could you please provide me the sample example for this? -- You received this message because

Re: GWT cross-site request without JSNI..?

2012-06-18 Thread kim young ill
is the request done by post or get ? On Mon, Jun 18, 2012 at 9:54 PM, Jens jens.nehlme...@gmail.com wrote: Sure you can do the same thing with JsonpRequestBuilder ( http://google-web-toolkit.googlecode.com/svn/javadoc/2.4/com/google/gwt/jsonp/client/JsonpRequestBuilder.html ). -- J. Am

Re: GWT cross-site request without JSNI..?

2012-06-18 Thread kim young ill
thanx On Mon, Jun 18, 2012 at 11:14 PM, Jens jens.nehlme...@gmail.com wrote: is the request done by post or get ? JSONP is always a GET request. -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the

Re: RequestBuilder and Browser same-origin-policy

2012-07-16 Thread kim young ill
you can have a look at apache http-client or if it's simple, just the built-in httpurlConnection of the jdk hth On Mon, Jul 16, 2012 at 7:28 PM, Deepak Singh deepaksingh...@gmail.comwrote: Hi All, I have a situation as follows, Environment: GWT 2.5 , GAE 1.7 I have to make a POST

Re: RequestBuilder and Browser same-origin-policy

2012-07-16 Thread kim young ill
On Mon, Jul 16, 2012 at 9:30 PM, Deepak Singh deepaksingh...@gmail.comwrote: Does anyone of them allow form submission with POST method and get the response without page refresh ? Thanks Deepak On Tue, Jul 17, 2012 at 12:44 AM, kim young ill khi...@googlemail.comwrote: you can have a look

Re: RequestBuilder and Browser same-origin-policy

2012-07-17 Thread kim young ill
catch the request at your server code (either servlets or rpc-impl, make httpurlconnection to remote host post the params with it. get result write back to your client On Tue, Jul 17, 2012 at 11:06 AM, Deepak Singh deepaksingh...@gmail.comwrote: So how can i create such GWT 'Proxy' ? On

Re: DevMode for Firefox 14

2012-07-24 Thread kim young ill
thanx Alan for the efforts. it was a great help. On Tue, Jul 24, 2012 at 8:21 AM, Frank Hossfeld frank.hossf...@web.dewrote: Fantastic! Thank you! Am Dienstag, 24. Juli 2012 07:49:30 UTC+2 schrieb Alan Leung: Last but not least,

Re: SuperDevMode Compiler Options

2012-08-23 Thread kim young ill
does someone know if the issue with old jsp-compiler (which doesnt support generics...) is resolved ? thanx On Thu, Aug 23, 2012 at 7:34 AM, Brian Slesinsky skybr...@google.comwrote: On Tuesday, August 21, 2012 1:25:43 AM UTC-7, Thomas Broyer wrote: On Monday, August 20, 2012 3:35:06 PM

Re: Scary: GWT Team does not fix serious GWT Compiler Bugs

2012-10-02 Thread kim young ill
+1 too On Tue, Oct 2, 2012 at 7:24 PM, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: +1 too 2012/10/2 Jeff Chimene jchim...@gmail.com +1 on Manolo's point. However, in the interests of debugging: what happens if you use the boxed version of boolean? On Tue, Oct 2, 2012 at

gwt-maven-archetypes with multiple client modules

2012-12-07 Thread kim young ill
Hi there, i start using this for gwt-modular webapp, quite great, but now i put a second gwt-module in the client package, how to configure the pom file so that both are avail. in -Ddev ? thanx -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

client-side validation with request factory

2012-12-19 Thread kim young ill
Hi there, how can i use client-side validation with rf ? in the sample project of gwt-2.5, the client-pojos are annotated directly, but what about proxies ? thanx -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: client-side validation with request factory

2012-12-20 Thread kim young ill
, Dec 19, 2012 at 1:55 PM, kim young ill khi...@googlemail.comwrote: Hi there, how can i use client-side validation with rf ? in the sample project of gwt-2.5, the client-pojos are annotated directly, but what about proxies ? thanx -- You received this message because you are subscribed

Re: client-side validation with request factory

2012-12-20 Thread kim young ill
well, it tooks me a while to realize that @Email doesnt work at all, allways give me Violation On Thu, Dec 20, 2012 at 11:37 AM, kim young ill khi...@googlemail.comwrote: thanx, that works On Thu, Dec 20, 2012 at 4:28 AM, ashwin.desi...@gmail.com ashwin.desi...@gmail.com wrote: all

Re: client-side validation with request factory

2012-12-21 Thread kim young ill
(); abstract void setEmail(String email); ~Ashwin On Thu, Dec 20, 2012 at 6:39 PM, kim young ill khi...@googlemail.comwrote: well, it tooks me a while to realize that @Email doesnt work at all, allways give me Violation On Thu, Dec 20, 2012 at 11:37 AM, kim young ill khi

Re: Eclipse Plugin and SSL/TLS with the internal server

2013-01-10 Thread kim young ill
are u sure the wireshark catch the right channel/device ? try with openssl to localhost to see if the connection is ssl or not sth like: openssl s_client -connect host:port hth On Thu, Jan 10, 2013 at 5:24 PM, Thomas Broyer t.bro...@gmail.com wrote: On Thursday, January 10, 2013 4:59:47 PM

gin field injection

2013-04-01 Thread kim young ill
hi there, i got into an issue with gin, like this: bind(MyMessages.class)in(SingleTon.class) interface MyMessages extends Messages{ String txt1(); } @ImlementsBy(MyWidgetImpl.class) interface MyWidget { } @Singleton class MyWigetIml implements MyWiget{ @Inject MyMesages msg public

Re: Joda Time Jodatime in GWT server

2013-04-16 Thread kim young ill
dont think so, u need to check if the jar is copied into WEB-INF/lib of your webapp. On Mon, Apr 15, 2013 at 11:36 PM, Steve Morgan stevemorga...@gmail.comwrote: I'm using Jodatime in my GWT application, server only. I'm getting a runtime message: java.lang.ClassNotFoundException:

Re: Problem With GWT 2.5.1 and Postgres 9.2. JDBC Driver

2013-04-24 Thread kim young ill
are you using app-engine ? it doesnt support everything your normal jdk would do (e.g no network connection), that's why your db-connection fails. try without app-engine On Sat, Apr 20, 2013 at 11:00 AM, tsst...@googlemail.com wrote: Hello, I try to set up a small GWT application which

Re: Slider for GWT?

2013-05-06 Thread kim young ill
this could help http://turbomanage.wordpress.com/2011/03/23/a-partially-updated-sliderbar-for-gwt-2-2/ On Sun, May 5, 2013 at 8:05 PM, Jens jens.nehlme...@gmail.com wrote: GWT doesn't have a slider widget but there are some 3rd party libraries that provide them. -- J. -- You received

vanilla-gwt with errai

2013-05-11 Thread kim young ill
hi there, anyone out there has any experience using vanilla gwt with errai ? there're some cool things from errai (event-bus, server-push) i want to use, but i dont want to rewrite the existing-app to use errai, especially gin/guice (i'm using mainly request-factory with guice/gin,

Re: GWT project with maven

2013-05-23 Thread kim young ill
cannot believe you know know this yet: https://github.com/tbroyer/gwt-maven-archetypes On Thu, May 23, 2013 at 5:36 AM, Navin Surtani navssurt...@gmail.comwrote: Take a look here for source code for the basic HelloWorld example: https://github.com/steinsag/gwt-maven-example I used that as

Re: Get Data CellTable

2013-06-05 Thread kim young ill
does the fieldupdater doenst fit your need ? On Wed, Jun 5, 2013 at 9:41 PM, sebastien.rib...@isen-lille.fr wrote: Nobody? Le mercredi 29 mai 2013 14:46:48 UTC-4, sebastie...@isen-lille.fr a écrit : Hi everyone, I have a simple CellTable with editable cells. I add a button save outside

Re: How to access WebAppContext's attributes while running GWT app as WAR file using Jetty?

2013-06-19 Thread kim young ill
from your jetty-code, it should be like this: webapp.getServletContext.setAttribute(foo,bar); hth On Wed, Jun 19, 2013 at 3:53 AM, Gaurav Kumar gauravphoe...@gmail.comwrote: I am running my GWT app as follows in Jetty - http://pastebin.com/Hvj5ieZf Now, I would like to access the magic

Re: Using RequestFactory with php backend. Is it possible?

2013-11-16 Thread kim young ill
hmm, interesting, i dont think it's worth it, you would need to be able to decode/encode the json-format of RF @ your php-serverside (method call, entity-identity payload ...), i think the Rest-way would make you move faster, so you can keep your php part exchange the client part for whatever

Re: Mojo's maven-gwt-plugin or Thomas's maven-gwt-plugin?

2015-12-06 Thread 'kim young ill' via GWT Users
my project structure look like this: webapp-parent -webapp-client -weapp-shared -webapp-server -webapp-utils ...some other small non gwt-related modules i come up with this: (in webapp-client module) but gwt:compile still complaining : on project webapp-client: The parameters

Re: Mojo's maven-gwt-plugin or Thomas's maven-gwt-plugin?

2015-12-06 Thread 'kim young ill' via GWT Users
hi there, i'm considering moving to gwt2.8 for (mostly because of jdk8) and switching to Thomas's plugin, i have several separate gwt modules in webapp-client-module, in the mojo plugin i can put it like this: org.codehaus.mojo gwt-maven-plugin

Re: Mojo's maven-gwt-plugin or Thomas's maven-gwt-plugin?

2015-12-06 Thread 'kim young ill' via GWT Users
thanx, i got further with compile and true, but now got hit by guava18. (similar to this: https://groups.google.com/forum/m/#!topic/google-web-toolkit-contributors/VbokswmVz9w ), i'll see how to overcome this On Sun, Dec 6, 2015 at 10:14 PM, Thomas Broyer wrote: > I don't

Re: 2.8.0 RC1 is here!

2016-07-29 Thread 'kim young ill' via GWT Users
ok, didn"t know gin work with jdk7, just saw this in the release note : https://github.com/gwtproject/gwt/issues/9311 i'm on jdk7, guava18 and gin 2. On Fri, Jul 29, 2016 at 12:20 PM, Thomas Broyer wrote: > > > On Friday, July 29, 2016 at 12:16:30 PM UTC+2, Juan Pablo

Re: 2.8.0 RC1 is here!

2016-07-29 Thread 'kim young ill' via GWT Users
nice, thanx for the great work. the only blocking point for me now is GIN. On Fri, Jul 29, 2016 at 7:40 AM, 'Daniel Kurka' via GWT Users < google-web-toolkit@googlegroups.com> wrote: > Hi all, > > I just build the GWT 2.8.0 RC1 and pushed it to maven central. The > complete SDK is also