Re: GWT + UI Design (best practices)

2009-10-20 Thread PJ Gray
On Mon, Oct 19, 2009 at 4:54 AM, Thomas Broyer t.bro...@gmail.com wrote: The problem is that your designer won't use ui:mph or GWT widgets, and it probably won't use CssResource specific syntax helpers (@def, @if user.agent ie6 { }, etc.) so you'll have to copy/paste/adapt, and

GWT + UI Design (best practices)

2009-10-18 Thread PJ Gray
I have used GWT for a while now, both on a large project and on small experimental projects. However, I am still somewhat of a newbie... One thing I am confused about is the ideal workflow for a UI designer when working with a GWT project. In a perfect world, I would want everyone to be

Re: Read Xml File from RPC Servlet

2009-10-03 Thread PJ Gray
Good you solved your problem. But you should really check out this page on the gwt incubator...might help you with your login process, and making it (more) secure: http://code.google.com/p/google-web-toolkit-incubator/wiki/LoginSecurityFAQ -pj On Sat, Oct 3, 2009 at 6:18 PM, Nickelnext

(de)Serialization of gwt rpc objects

2009-09-29 Thread PJ Gray
My project works fine under hosted mode, but I tried a test deployment last night and ran into issues with deserializing gwt rpc objects. It looks to me like the serialization is working fine, and finding the gwt.rpc whitelist file, which lists my various classes. However, once on the server, it

Re: CommandPattern vs Server side Event Bus?

2009-09-29 Thread PJ Gray
Yeah, I have thought the same thing as I was implementing MVP/CommandPattern. I have a few eventbus events that I handle with EventHandlers, but then I have the whole gwt rpc mechanism that uses my own generic action classes. Combining the two might be a good move, however it might get tricky

Re: advantages of hibernate

2009-09-27 Thread PJ Gray
Hello, I was in a similar situationlots of technology around and everyone seems to talk about hibernate.As far as I can tell, the advantages are being able to refer to your objects AS OBJECTS, yet have them persisted in the database. ie: you don't have to write the code to persist them

Re: Cookies and RPC

2009-09-24 Thread PJ Gray
Client side (cookie gets stored in the users browser). But looking at your whole question, it appears you are doing some sort of user authentication? (ie: sign on).You should read this FAQ: http://code.google.com/p/google-web-toolkit-incubator/wiki/LoginSecurityFAQ Describes using session

GWT + mysql (noob questions)

2009-09-23 Thread PJ Gray
I am writing a fairly large web app using GWT in Eclipse.My background is as a c++ desktop developer, so while I have used java before, sometimes I stumble on easy stuff. Anyway, I am currently attempting to implement a database to store data from my webapp. I am far from an expert in SQL,

Re: GWT + mysql (noob questions)

2009-09-23 Thread PJ Gray
off getting a good grip on GWT and GWT's RPC mechanism first. but as always, ymmv On Sep 23, 10:53 am, PJ Gray pj4...@gmail.com wrote: I am writing a fairly large web app using GWT in Eclipse.My background is as a c++ desktop developer, so while I have used java before, sometimes I

Re: Eclipse client server separation

2009-09-23 Thread PJ Gray
I don't understand what the problem is that the original poster is having? I have Client/Server/Shared folders for implementing the command pattern and it seems to be working fine. I have compiled to javascript and run under a browser as well. I took most the ideas from the gwt-dispatch

Re: Testing MVP Applications when using Overlay Types

2009-09-23 Thread PJ Gray
Couldn't you do something like make the class that actually does the parsing be a dependency of the callback (ie passed in). Then create a mock version of that class that just returns whatever data (for verification)? This mock version wouldn't be based off the JSNI overlay abstract class,

(Issue 2374) Generic Methods on RPC....

2009-09-22 Thread PJ Gray
(I posted this to the gwt-dispatch list, but figure I'd mention it here toolarger audience and whatnot) I am implementing the command pattern as per Ray Ryan's fantastic talk. I have it working, however I ran across a known issue in GWT when implementing my servlet (Which Ray Ryan skips

Vertical Collapsible Panel?

2009-09-15 Thread PJ Gray
I was looking around at some of the custom widget libraries (gwt-ext etc), and I like the collapsible panel widget a bunch, but I was wondering if anyone knew of a library that made one that is vertical, and opens to form a column-ish panel.So you could have a bunch of vertical bars, click on

Re: GWT + Eclipse + Subversion?

2009-09-13 Thread PJ Gray
On Sat, Sep 12, 2009 at 3:33 PM, Jeff Chimene jchim...@gmail.com wrote: On 09/12/2009 10:41 AM, PJ Gray wrote: So maybe I am not fully understanding the versioning situation. I did some research last night, and attempted to get my project under source control, without any luck

twitter4j + gwt + oauth....

2009-09-13 Thread PJ Gray
jchim...@gmail.com wrote: On 09/13/2009 08:39 AM, PJ Gray wrote: Thanks for the help. I messed around with it a bit more, and just kept getting frustrated. Uggg, just isn't this hard if I want a non-integrated solution in XCodewhy is it here? Anyway, I settled on just zipping up my

Re: GWT + Eclipse + Subversion?

2009-09-12 Thread PJ Gray
don't have under version control: war/project war/WEB-INF/classes On Sep 11, 3:32 am, PJ Gray pj4...@gmail.com wrote: I am new to GWT and I have been using the plugin in Eclipse. I have written my first project, and feel confident in using the toolkit now. And I feel fairly comfortable