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

2012-04-18 Thread Pohl Longsine
I would expect a certain amount of radio-silence in the few months leading up to Google I/O. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/

Re: Is command-pattern RPC using RequsetFactory now possible?

2011-09-09 Thread pohl
On Sep 9, 9:53 am, Thomas Broyer wrote: > I guess it would now be possible yes. > > I'm still not sure how it would be an improvement though, unless you intend > to serialize the commands somewhere (localStorage?) to play them later, but > even then you could add a field telling which method to

Is command-pattern RPC using RequsetFactory now possible?

2011-09-09 Thread pohl
rrent http://code.google.com/p/google-web-toolkit/issues/detail?id=5367 See also... http://code.google.com/p/google-web-toolkit/issues/detail?id=6234 On Jan 25, 6:06 pm, Thomas Broyer wrote: > On Tuesday, January 25, 2011 11:59:28 PM UTC+1, pohl wrote: > > > Great post, Thomas. > &

Re: gwt 2.3 gwt-servlet-deps.jar from Ant Ivy build

2011-05-06 Thread pohl
Ok, I'm going to run to the loving, conventional arms of maven now. Goodbye, cruel Ivy. Thanks to all for trying to help. Maybe I'll be back after beating my head against a wall of archetypes for the umpteenth time. On May 6, 3:29 pm, pohl wrote: > That's what I'm

Re: gwt 2.3 gwt-servlet-deps.jar from Ant Ivy build

2011-05-06 Thread pohl
That's what I'm using for gin too. Hmm... -- 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. To unsubscribe from this group, send email to google-web-toolkit+unsubscr

Re: gwt 2.3 gwt-servlet-deps.jar from Ant Ivy build

2011-05-06 Thread pohl
The exception that I'm getting now appears to be the result of Gin 1.5. It looks like the dependency information in the ibiblio package must be pulling in gwt-servlet.jar from 2.2.0, and it is not getting evicted for some reason. (I can tell this by the ivy:report that I am generating, thanks to

Re: gwt 2.3 gwt-servlet-deps.jar from Ant Ivy build

2011-05-06 Thread pohl
ut at least I'm getting a different error now: Compiling module org.screaming.web.ui.Main [java][ERROR] Errors in 'jar:file:/home/pohl/.ant/playpen/ gwt.compile/gwt-user-2.3.0.jar!/com/google/gwt/user/client/ui/ DisclosurePanel.java' [java] [ERROR] Inte

Re: gwt 2.3 gwt-servlet-deps.jar from Ant Ivy build

2011-05-06 Thread pohl
This smells like it should work to me, but I get this: impossible to ivy retrieve: java.lang.RuntimeException: problem during retrieve Multiple artifacts of the module javax.validation#validation-api;1.0.0.GA are retrieved to the same file! Update the retrieve pattern to fix this error. I

Re: Running GWT Developing mode

2011-05-05 Thread pohl
Does this translate to Ant Ivy in some way? Same issue there. On May 5, 5:18 pm, David Chandler wrote: > Remove provided from the validation-api dependency since it > appears your app server doesn't provide it. > > /dmc -- You received this message because you are subscribed to the Google G

Re: gwt 2.3 gwt-servlet-deps.jar from Ant Ivy build

2011-05-05 Thread pohl
Filipe, I found that issue in the tracker yesterday. You may want to star this. It looks like you, at least, have a workaround if you're willing to add that jar directly to your classpath. http://code.google.com/p/google-web-toolkit/issues/detail?id=6225 On May 5, 3:22 pm, Filipe Sousa wrote:

Re: gwt 2.3 gwt-servlet-deps.jar from Ant Ivy build

2011-05-05 Thread pohl
http://stackoverflow.com/questions/4950048/what-is-the-ivy-equivalent-of-mavens-versionsdisplay-dependency-updates Could you elaborate as to what lesson I'm supposed to draw from this link? The use of ivy::report seems like a good idea, but i'm not sure how it helps me. I have implemented an eq

gwt 2.3 gwt-servlet-deps.jar from Ant Ivy build

2011-05-05 Thread pohl
I am trying to get a simple GWT 2.3 project working in DevMode with an Ant Ivy build. I have used Ivy for GWT projects prior to 2.3 (GWT 2.0.x in particular), and the following dependencies (in my Ivy module xml file) have worked for me in the past: (I have removed the specific names for my Ivy con

Re: GWT 2.1 vs GWT 2.2 and this forum

2011-05-03 Thread pohl
On Apr 28, 5:24 pm, David Chandler wrote: > We announced the 2.2 RC here, but evidently posted the 2.2 release > announcement only on the > blog:http://googlewebtoolkit.blogspot.com/2011/02/google-plugin-for-eclips... > > I'll announce here when 2.3 is available and update the sticky post. I j

GWT 2.1 vs GWT 2.2 and this forum

2011-04-28 Thread pohl
GWT 2.2 has been out for a while now, and I haven't seen an announcement for it here. The old announcement for GWT 2.1 is still pinned to the top of the page. It still looks like a lot of libraries haven't released jars that work with 2.2 yet, either. Is 2.2 just a release candidate? Did someon

Re: Why should I use Request Factory instead RPC?

2011-01-25 Thread pohl
Great post, Thomas. Does anybody know if there are examples out there of using RequestFactory to implement a command-pattern-style ActionService? -- 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-

Re: How to implement a fancy zoom with GWT ?

2009-12-23 Thread pohl
Absolutely. If another javascript manages to do something in a browser, then you can do it in GWT. A good starting place would be to look at is the following class: com.google.gwt.animation.client.Animation It's an abstract class that you extend. There's a mechanism that repeatedly calls t

Re: MVP Beginner Question

2009-12-21 Thread pohl
I haven't used any of the pre-packaged frameworks, so I can't help you select from them. However, my team is using this architecture, having been inspired by the original talk at Google I/O. In my opinion, there is no better source of wisdom than that presentation, and its slides. If you haven'

Re: A new Netbeans 'UPDATED' Plugin, please!!

2009-10-13 Thread pohl
The GWT4NB plugin was not created by Google, nor has it ever been maintained by them. This question is probably better raised at http://gwt4nb.dev.java.net/ (Either by filing specific issues in the issue tracking system, or by posting on the web forum there.) --~--~-~--~~

Re: MVP: One page with many views and presenters?

2009-10-13 Thread pohl
Absolutely, there may be several disconnected components on a given 'page', each with its own presenter. The AddressBook application used in Ray's presentation at Google I/O, for example, probably has a ContactListPresenter for the ContactList, and a ContactDetailPresenter for some ContactDetailV

Re: Con artists have likely gained admin access to the Client-side GChart project.

2009-10-13 Thread pohl
Does this mean that the gchart code no longer has a maintainer? Or does it mean that it will find a new home and that you'll continue from a different email address & web location? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Go

Re: Does GWT work in Snow Leopard?

2009-08-29 Thread pohl
I noticed that it should be possible for Google to release a quick patch of GWT 1.6.x that should allow users to run the legacy hosted mode under a Java 1.6 VM now. GWT's hosted mode, on the Mac, does an explicit check to ensure that Java 1.5 is being used. This check only existed because under

Re: "Use an Event Bus" - Ray

2009-08-19 Thread pohl
On Aug 18, 1:48 pm, Nathan wrote: > Hey GWT peoples, > >   In Ray's GWT talk, he suggests using the Event Bus pattern in GWT > applications, to keep things clean.  Does anyone have suggestions on > how to approach this? I've discovered that Ray Ryan actually left very little unspoken in his pr

Re: optimistic ui

2009-08-08 Thread pohl
The ability of the wave interface to be optimistic rests upon the nature of Operational Transformation concept that the protocol is based on. http://www.waveprotocol.org/whitepapers/operational-transform "These properties of OT play a big part in providing the Optimistic User Interface (UI) of W

Re: GWT-RPC will pick-up a wrong implementation?

2009-08-08 Thread pohl
To add to Paul's answer: the practice that Ray Ryan advocated is not to prevent GWT-RPC from picking up the wrong implementation. Rather, it is to prevent GWT-RPC from including all possible implementations, even those that you will never use. For example, if you use List the GWT-RPC magic-gene

Re: Quick fix for broken hosted mode with Snow Leopard 10A380 on x86_64

2009-08-02 Thread pohl
> GWT 0.0.0 At revision 5593. I noticed that you are using a trunk build of GWT here. Do you believe this is a necessary step in getting this to work? Also, does this mean that it is the new OOPHM that you got to work, or the legacy hosted mode? I just pre-ordered 10.6 today, and don't wan

Re: Best practice to implement Command Pattern RPC on server?

2009-07-07 Thread pohl
> Essentially, I couldn't get the GWT compiler to work with a service > with the following definition: > > public interface DispatchService extends RemoteService { >     , R extends Result> R execute( A action ) > throws Exception; > > } I tried to do the same thing, inspired by Ray Ryan's talk

Re: does com.google.gwt.dev.Compiler need to run prior to hosted mode?

2009-04-14 Thread pohl
On Apr 13, 6:48 pm, Jeff Chimene wrote: > > Also, remember that GWT does not implement the entire JRE. From the > looks of the above error, you might be hitting that limitation, i.e. > "delete method not implemented", as well. Well, I started with a working application, and only changed the va

Re: does com.google.gwt.dev.Compiler need to run prior to hosted mode?

2009-04-13 Thread pohl
ly see that the hotfix was applied): init: deps-jar: Compiling 1 source file to /Users/pohl/Source/CP/trunk/CPLib/build/ classes Note: /Users/pohl/Source/CP/trunk/CPLib/src/net/nanonation/ui/client/ widget/LoginPanel.java uses or overrides a deprecated API. Note: Recom

does com.google.gwt.dev.Compiler need to run prior to hosted mode?

2009-04-13 Thread pohl
I have a basic question about what is required in the build process in order to invoke hosted mode. I'm trying to speed up my compilation times, and I noticed that the Java-2-Javascript compiler is running even in the case when I'm debugging in hosted mode. Now I'm not using the same tools as y'

Re: problems upgrading an existing project to 1.6.x

2009-04-13 Thread pohl
I was able to work around this. My original solution (in comment #8 of the issue mentioned above) did not need to be altered at all. This time all I needed to do was replace the older GWTx-20070605.jar with the newer gwtx-1.5.2.jar Their change in the naming scheme didn't make it obvious to

Re: problems upgrading an existing project to 1.6.x

2009-04-13 Thread pohl
A minor breakthrough, but still no resolution. I googled for the above error message and found this old issue in the GWT tracking system.I had even commented in that thread! http://code.google.com/p/google-web-toolkit/issues/detail?id=923 So this appears to be something GWTx related that b

Re: problems upgrading an existing project to 1.6.x

2009-04-13 Thread pohl
Have there been any tweaks to generics in Java since version 1.5? Maybe the newer GWT depends upon a newer version of Java itself, and I'm using a JRE that's too old? fnord:pohl$ java -version java version "1.5.0_16" Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_16- b06-284) Java

Re: problems upgrading an existing project to 1.6.x

2009-04-13 Thread pohl
n some ways. Consider these errors: [ERROR] Errors in 'jar:file:/Users/pohl/Source/CP/trunk/ Libraries/GWT_Packaged/gwt-user.jar!/com/google/gwt/emul/java/util/ Collections.java' [ERROR] Line 647: The type Enumeration is not generic; it cannot be parameterized with argumen

problems upgrading an existing project to 1.6.x

2009-04-10 Thread pohl
http://pastebin.com/d2cc79d8e I have an existing project that I'm trying to upgrade to GWT 1.6.4, and the errors that I'm getting from GWTCompiler aren't giving me a strong indication of what my problem may be. (See the pastebin link above.) I have ensured, I believe, that the 3 GWT jars (user,

Re: PagingScrollTable + how to sort locally

2008-12-09 Thread pohl
On Dec 5, 8:38 am, Suri <[EMAIL PROTECTED]> wrote: > Hi Pohl, > Thanks for the idea. I figured there could be a way around it maybe, > but from what I read about the gen2PagingScrollTablefrom the > incubator's synopsis, it seemed like they mentioned the sorting ca

Re: PagingScrollTable + how to sort locally

2008-12-04 Thread pohl
On Dec 4, 8:13 pm, Suri <[EMAIL PROTECTED]> wrote: > Hi all, > I'm trying to figure out how you can sort locally using the > PagingScroll table. Not sure what the syntax is so any help is > appreciated. Thanks > > Suri I've just started using the PagingScrollTable myself, but I think I can point

Re: SortableFixedWidthGrid missing in gwt-incubator_1-5_Sept_04?

2008-09-10 Thread pohl
Thank you for your reply. I was looking for those other methods too. Will post if i discover. --~--~-~--~~~---~--~~ 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-We

SortableFixedWidthGrid missing in gwt-incubator_1-5_Sept_04?

2008-09-09 Thread pohl
I wanted to try the latest incubator drop with my project, and it appears that a class that I'm using in my project has gone missing: SortableFixedWidthGrid. Has there been some renaming/refactoring? Does anybody know what class I should be using? --~--~-~--~~~---~--~

Re: Tip for reducing the size of the compiled app

2008-08-30 Thread pohl
On Aug 29, 10:09 am, Alan Williamson <[EMAIL PROTECTED]> wrote: > I was just throwing the question out there to see if someone had any > experience to see if there was an API or library that would suddenly > balloon things out. What libraries are you using? An exhaustive list might generate s

Re: GWT 1.5 Now Available

2008-08-29 Thread pohl
> Cheers, > The GWT Team I wanted to thank the GWT team for all of the hard work that went into this cycle. You're all rock stars in my book. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" gro