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

2009-07-05 Thread David Peterson
Hi Nathan, On Jul 5, 2:15 am, Nathan Wells nwwe...@gmail.com wrote: I updated my project to only use the two interfaces as suggested by David. Instead of using actionhandlers and registering them, I created an annotation for the IRemoteProcedureCall implementations that contains the

Re: New site created with GWT

2009-07-05 Thread 4F2E4A2E
i love the new one the old one is just so overloaded with stuff On Jul 4, 7:57 am, ytrewqsm ytrew...@gmail.com wrote: That site looks very very well ! On 4 Iul, 05:57, hazy1 matt.egyh...@gmail.com wrote: Wow, the text boxes are ginormous in FF 3.5. On Jun 30, 4:34 pm, Michael W

Re: Runtime.exec()

2009-07-05 Thread Mohsen Saboorian
You should execute it through an RPC server-side service, not in client Java code (which is compiled into Javascript). On Sat, Jul 4, 2009 at 6:38 PM, giovaneoce...@hotmail.com giovaneoce...@hotmail.com wrote: Hi, i have a problem in my project. I have to execute a dos command, a so i try the

Re: GWT - Main Servlets?

2009-07-05 Thread Mohsen Saboorian
Yes, there are many GWT-based frameworks working with a single dispatcher servlet. For a seamless integration with Spring I suggest http://code.google.com/p/gwtrpc-spring/. Mohsen. On Sat, Jul 4, 2009 at 11:25 AM, Anthony orangecr...@gmail.com wrote: I come from a J2EE background where I have

Google plugin for Eclipse 3.5 Galileo

2009-07-05 Thread PhatDog
Hi, When will the Galileo plugin be released? Thanks --~--~-~--~~~---~--~~ 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

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

2009-07-05 Thread martinhansen
Hello David, I've read your source code and your example. It is very interesting. But although it's short and simple, I still don't understand it. Especially GIN and GUICE confuses me a lot. Can I use your example without these technologies? Does anyone know a really simple example? The example

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

2009-07-05 Thread Herme Garcia
Martin, For really simple example, look at http://itsp.typepad.com/voip/2009/07/gwt-implementing-rpc-command-pattern-on-server.html This is really simple, far from complete, but you can see how the pattern works Herme On Jul 5, 10:16 am, martinhansen martin.hanse...@googlemail.com wrote:

GWT and .net server side (JSON)

2009-07-05 Thread roundcrisis
Hi there I was wondering if there are any recommendations regarding working with a .net server side. My idea on how to work with this scenario is to communicate with the GWT widgets via JSON and use my views as host pages so there is no problem with same origin principle. This seems to work,

Re: GWT and .net server side (JSON)

2009-07-05 Thread sqtz
Hi, I'm working with .net server side and gwt on the client. i use Jayrock JSON-RPC implementation on server side. On the client i use my own JSON-RPC implementation coded in GWT. I use GWT Javascript Overlays too. i do not use any asp.net page. Only a minimal host aspx page and the .net

Re: GWT and .net server side (JSON)

2009-07-05 Thread Roundcrisis
Hi Eduardo: Thanks for the info, I ll check out JSON-RPC by JayRock + JSON-RPC Cheers Andrea On Sun, Jul 5, 2009 at 1:42 PM, sqtz eduardo.guardi...@gmail.com wrote: Hi, I'm working with .net server side and gwt on the client. i use Jayrock JSON-RPC implementation on server side. On

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

2009-07-05 Thread David Peterson
On Jul 5, 6:16 pm, martinhansen martin.hanse...@googlemail.com wrote: Hello David, I've read your source code and your example. It is very interesting. But although it's short and simple, I still don't understand it. Especially GIN and GUICE confuses me a lot. Can I use your example

Re: Serialization

2009-07-05 Thread Nathan Wells
You would have to define an interface and then make those objects implement that interface thru inheritance or composition, like public interface Transferable extends IsSerializable { } public InheritanceExampleString extends String implements Transferable { } public CompositionExampleBoolean

Re: GWT - Main Servlets?

2009-07-05 Thread Kwhit
It's up to you. You can have as many servlets as you like - one acting as a switch or several handling different aspects of your application. In the project I'm working on now I have a JSON 'report' server for visualizations, an authentication servlet and a couple of others taking care of the

Re: GWT and .net server side (JSON)

2009-07-05 Thread Thomas Broyer
On 5 juil, 13:40, roundcrisis roundcri...@gmail.com wrote: Hi there I was wondering if there are any recommendations regarding working with a .net server side. My idea on how to work with this scenario is to communicate with the GWT widgets via JSON and use my views as host pages so

problem with rounded corners using DecoratorPanel + Firefox 3.5

2009-07-05 Thread mike
Rounded corners on GWT's DecoratorPanels don't look right for me in FF3.5. See the gap below this upper right-hand corner: http://img.skitch.com/20090705-c95g8b1cn33t22wnypk4h5mjwt.jpg Anyone else having this problem? The showcase app uses rounded corners without issue. What am I doing wrong

GWT Best Practices doubt

2009-07-05 Thread Geraldo Lopes
I've been trying to understand Ray's presentation and want to share some doubts hoping for clarification: http://dl.google.com/io/2009/pres/Th_0200_GoogleWebToolkitArchitecture-BestPracticesForArchitectingYourGWTApp.pdf Considering Page 21 interface ActionT extends Response { } interface

Re: GWT Best Practices doubt

2009-07-05 Thread David Peterson
Hey Geraldo, Check out this thread: http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/ccb5b07a24ac5a97/4b98bf080e8bf231?lnk=gstq=command+pattern#4b98bf080e8bf231 Also, I've posted an implementation of my understanding of Ray's example here:

Content Management System

2009-07-05 Thread Tracy
Hi, I am starting a new project and I'm am thinking of using GWT + Spring MVC with hibernate. My question: is there a way to use a content management system as well? Thanks, Tracy --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

Re: Content Management System

2009-07-05 Thread Artyom.Vorobyev
Hi, Tracy! What do you mean when talking about CMS usage? Beat regards, Artyom. On Jul 6, 12:51 am, Tracy tracyeringre...@gmail.com wrote: Hi, I am starting a new project and I'm am thinking of using GWT + Spring MVC with hibernate. My question: is there a way to use a content management

Re: Content Management System

2009-07-05 Thread Tracy Greene
I mean a way to allow my client to change content and publish changes. Something like Drupal. Thank you, Tracy On Jul 5, 10:35 am, Artyom.Vorobyev artyom.vorob...@gmail.com wrote: Hi, Tracy! What do you mean when talking about CMS usage? Beat regards, Artyom. On Jul 6, 12:51 am, Tracy

Get Object from ScrollTable

2009-07-05 Thread Maksim Ustinov
Right now I'm playing with ScrollTable from GWT Incubator. I'm trying to make functionality when user select one row then click on Edit button and then he will be able to edit that particular Object. Right now I have to check what row has been selected Integer secRowPosition =

xml bug?

2009-07-05 Thread Ngọc Minh
I tried this piece of code and the result is false! I'm running GWT 1.6 on Ubuntu 9.04 Document doc = XMLParser.createDocument(); Element elem = doc.createElement(chii); elem.setAttribute(test, ok?); Attr attr1 =

Re: Get Object from ScrollTable

2009-07-05 Thread Chad
Maksim, You can do as you suggest and store a reference to the object on the row or if you prefer to not extend the row objects, you could simply keep an array or list of the objects. You could get the proper object from the array or list with the index you are getting from the event now. HTH,

Re: xml bug?

2009-07-05 Thread Minh Le
this problem happends only in hosted mode 2009/7/6 Ngọc Minh cume...@gmail.com I tried this piece of code and the result is false! I'm running GWT 1.6 on Ubuntu 9.04 Document doc = XMLParser.createDocument(); Element elem = doc.createElement(chii);

[gwt-contrib] Add Gears' Blob::getBytes

2009-07-05 Thread t . broyer
Reviewers: t.broyer, Description: This patch adds getBytes() method to Blob (Gears 0.5.21.0) Please review this at http://galgwt-reviews.appspot.com/41604 Affected files: gears/src/com/google/gwt/gears/client/blob/Blob.java Index: gears/src/com/google/gwt/gears/client/blob/Blob.java

[gwt-contrib] Add Gears' BlobBuilder

2009-07-05 Thread Thomas Broyer
Reviewers: t.broyer, Description: This patch adds support for Gears 0.5.21 BlobBuilder API. Please review this at http://galgwt-reviews.appspot.com/41603 Affected files: gears/src/com/google/gwt/gears/client/Factory.java gears/src/com/google/gwt/gears/client/blobbuilder/BlobBuilder.java

[gwt-contrib] Re: Add Gears' Blob::getBytes

2009-07-05 Thread Eric Ayers
(Reitveld is really on the fritz tonight and I can't submit my comments there) Do you think this would make a good addition to the ArrayHelper class? http://code.google.com/p/gwt-google-apis/source/browse/trunk/ajaxloader/ajaxloader/src/com/google/gwt/ajaxloader/client/ArrayHelper.java On Sun,