Re: run via cmd

2011-05-20 Thread Juan Pablo Gardella
Try this http://code.google.com/webtoolkit/gettingstarted.html#run 2011/5/20 Carlos hbazz...@gmail.com thank you for your answer but am not using maven in my project On 20 mai, 13:22, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: http://mojo.codehaus.org/gwt-maven-plugin/user

Re: GWT meets Adobe Flex: gwt4air 2.1 is here !

2011-05-19 Thread Juan Pablo Gardella
Here are the examples http://www.gwt4air.appspot.com/ 2011/5/18 gwt.user gwt.u...@yahoo.fr Thanks Alain, I m playing around with the API right now and everything works great so far. I still cant beliebe i m writing a Flex application :) I hope your project will get more attention Good

Re: How to learn use GWT

2011-05-19 Thread Juan Pablo Gardella
Hi Bruno, I recomend: 1) Start with *Google Web Toolkit Applications by Ryan Dewsbury*. Is old but is very well written.�RyanDewsbur is old (2007) but a very nice . 2) Official docs 3) the archi famous best practices to learn about architecture your application

Re: How to speed up Hosted mode

2011-05-19 Thread Juan Pablo Gardella
Yes, in dev mode use IE it's much faster. 2011/5/19 Karthik Abram karthik.ab...@gmail.com As bizzare as it sounds, try IE 9 - seems to run faster than FF in dev mode. On Tue, Apr 19, 2011 at 8:06 PM, Aladdin alaamu...@gmail.com wrote: I know that you can use cluster to compile your app

Re: GWT Designer also compiles test and shared classes

2011-05-18 Thread Juan Pablo Gardella
You must declare in your *.gwt.xml the correct path for the modules. See: [ERROR] Line 24: No source code is available for type com.google.web.bindery.event.shared.EventBus; did you forget to inherit a required module? In GWT 2.3, EventBus were moved so, you must inherit from this package.

Re: Using a Single Servlet

2011-05-18 Thread Juan Pablo Gardella
See gwt-dispatch approach 2011/5/18 Adriano Lustoza aclust...@gmail.com Hi everybody! FirstSorry, but my english is poor. Well, I need to build a Single Servlet that receive call from client(GWT views) and using the design pattern Command And Factory, is possible to identify what is the

Re: GWT library Wizard

2011-05-18 Thread Juan Pablo Gardella
It run in dev mode? 2011/5/18 fedy2 defav...@gmail.com Hi, I'm using the GWT library Wizard (as explained here: http://code.google.com/webtoolkit/tools/gwtdesigner/wizards/gwt/library.html ) to create a new project for a GWT library. I've created an empty GWT project and then using the

Re: GWT Designer/Ext-GWT/UiBinder

2011-05-18 Thread Juan Pablo Gardella
try in Ext-GWT forum too 2011/5/18 Aza Tek azat...@gmail.com Any comments on this... Or is this just a bad question? On Tue, May 17, 2011 at 11:06 PM, Aza azat...@gmail.com wrote: Is code generated by Ext-GWT (integrated into GWT Designer) compatible with UiBinder? If yes, is it

Re: How to show a message while waiting on a RPC service request (not RequestFactory request)

2011-05-17 Thread Juan Pablo Gardella
Before you the rpc call, make visible a div with text processing... for example. In the onSuccess or onFail make invisible again. This approuch is used in Pro Web 2.0 Application Development with GWT. Juan 2011/5/16 Skip s...@planwithvoyant.com I'm looking for an approach on how to show a

Re: common entry method before any RPCServiceImpl method is called

2011-05-17 Thread Juan Pablo Gardella
A filter ? 2011/5/17 Jiunarayan jiunara...@gmail.com I want to have some kind of common method or like entry method for putting some common things in session attribute,based on some parameter, before any RPCSeviceImpl method is called. -- You received this message because you are

Re: Understanding of session behavior

2011-05-17 Thread Juan Pablo Gardella
+1 2011/5/17 Lars Meynberg lars.meynb...@gmail.com Hi everybody, I'm new in GWT. I have created a project for a single web app and using an (main-) entry point for my site. This site is showing a login page and when the user is logged in the underlying controller loads the application view

Re: Datepicker with multiselect

2011-05-17 Thread Juan Pablo Gardella
optimised code in the world but it gets the job done You can see it live running here: https://demo.reztrip.com/ We were thinking about taking the code and open sourcing it. Would this be useful to you? Others? Erik Uzureau ** On Thu, May 5, 2011 at 16:39, Juan Pablo Gardella

Re: Problem

2011-05-17 Thread Juan Pablo Gardella
java.lang.ClassNotFoundException: Annotator Is a classpath issue. You don't have the jar or class Annotator in your classpath. Put some information about your enviroment. Are you use GWT? what version?, etc Juan 2011/5/17 ggdmghk frggdm...@gmail.com I would appreciate any help. I am trying

Re: invoke

2011-05-17 Thread Juan Pablo Gardella
I never test it, but can check this: http://gwtreflection.sourceforge.net/ 2011/5/17 Bademus bade...@gmail.com Is it possible to implement something like this. I have problem with invoking method by name public class ExtColumnT, C extends ColumnT, C { private String name;

Re: Nesting of Panels

2011-05-17 Thread Juan Pablo Gardella
See http://stackoverflow.com/questions/1153097/gwt-panel-design-best-practices 2011/5/17 Nitish Upreti nitishupr...@gmail.com I would want to learn more on nesting of Panels. Should I put a vertical panel in a scroll panel or scroll panel in vertical panel? And If I want to use HTML too where

Re: RequestFactory error

2011-05-17 Thread Juan Pablo Gardella
See javadoc: RequestFactory has moved to com.google.web.bindery.requestfactory. This package will be removed in a future version of GWT. Check if the module is in the new package 2011/5/17 Pavel Byles pavelby...@gmail.com For some reason I'm getting this error while trying to set up my code

Re: redrawing table after sorting the column

2011-05-17 Thread Juan Pablo Gardella
Hi, try this: tableprovider.setList(result); table.redraw(); where tableprovider is for example ListDataProvider. Juan 2011/5/16 Rafal Janik rrafalja...@gmail.com Hi All, I quite new in GWT and I'm trying to do really simple Pager with CellTab wit sortable column. What should I do to make

Re: [gwt-contrib] GwtEvent.setSource visibility

2011-05-17 Thread Juan Pablo Gardella
+1 2011/5/17 Ray Ryan rj...@google.com Yes please, we shouldn't have broken existing code like that. On Tue, May 17, 2011 at 3:25 PM, Stephen Haberman stephen.haber...@gmail.com wrote: Hi, With the bindery package change, I have a custom EventBus implementation that no longer

Re: running GWT compiler low priority

2011-05-16 Thread Juan Pablo Gardella
Do you use windows? 2011/5/16 Erel Segal erel...@gmail.com The GWT compiler takes a lot of time, and slows the computer meanwhile. Is it possible to tell it to automatically run in a lower priority (something like renice in Linux), so that I can do other things on my computer while it

Re: GWT deployment

2011-05-16 Thread Juan Pablo Gardella
In WAS you always deploy an EAR. Your war must put inside in an EAR. For create a WAR you can use Eclipse or maven (more complicated if you are starting with gwt) 2011/5/16 Carlos hbazz...@gmail.com hey, I want to deploy my application to a webSphere server, i surfed the web for some answers

Re: String.format(String, String[]) undefined

2011-05-16 Thread Juan Pablo Gardella
It doesn't support yet 2011/5/16 ghost23 sven.bu...@googlemail.com hi, i have an issue with formatting an array and hope for your help. My code looks like this: String[] example = new String[] {one, two, three, four}); String.format(%s, , example); At runtime, it says ERROR: The

Re: Abort submit action on the form

2011-05-16 Thread Juan Pablo Gardella
If you upload async, put another button to cancel, you will code this. I don't know if there are another way 2011/5/16 Matej Jelovcan zuti...@gmail.com Hi guys. Simple and short question: can I cancel submit() action that I fired on the form? I'm uploading some files and well, I'd like to

Re: single service implementation class for multiple modules

2011-05-16 Thread Juan Pablo Gardella
Make the servlet in a jar and put as dependency in the the wars where you need. 2011/5/6 kaynix best...@gmail.com Can we have a single service implementation class(class that extends RemoteServiceServlet) for multiple modules? If yes how? -- You received this message because you are

Re: Single Sign On / GWT 2.3

2011-05-16 Thread Juan Pablo Gardella
+1 2011/5/16 cri chuck.irvine...@gmail.com I'm a little unclear on 2.3's new single sign on functionality (referenced at http://code.google.com/webtoolkit/doc/latest/ReleaseNotes.html). I'm not seeing any clear documentation on how to use it. Can someone provide me with a pointer? Also, is

Re: Unsupported GWT version: 2.3.0 ?

2011-05-16 Thread Juan Pablo Gardella
You are use old gwt-maven-plugin. See this thread * http://tinyurl.com/3o29xfh* Juan 2011/5/15 Vasil Zorev - online attendee vassil.zore...@gmail.com I have the following Maven dependency in my pom.xml: dependency groupIdcom.google.gwt/groupId artifactIdgwt-user/artifactId

Re: Building gwt to use bean validation errors

2011-05-16 Thread Juan Pablo Gardella
See *http://tinyurl.com/3o29xfh* 2011/5/16 Javier javierferre...@gmail.com I'm trying to evaluate bean validation for my project. For that purpose I checked out gwt and tools trunk and build gwt from source. The problem is that when using the builded gwt I receive plenty or errors. I would

Re: SimpleAppCacheLinker missing?

2011-05-16 Thread Juan Pablo Gardella
Past the stacktrace 2011/5/15 dudi dudi.mam...@gmail.com Hey, please help a newb :) I'm trying to follow the MobileWebApp example: [http://code.google.com/p/google-web-toolkit/source/browse/#svn%2Ftrunk %2Fsamples%2Fmobilewebapp] from i/o 2011

Re: RPC call no working after integrating gwt in jsp

2011-05-16 Thread Juan Pablo Gardella
Check the path of the javascript file in the html generated by jsp 2011/5/15 Brijesh brijesh.ra...@gmail.com Hi, I have integrated a GWT page in my web project, in a JSP page. Everythign is fine except RPC calls. RPC which works fine in GWT project, when executing project, but after

Re: Issue in method anonymous class in GWT

2011-05-16 Thread Juan Pablo Gardella
In gwt app you only have 1 thread. In swing you queue this actions in EDT thread. How do you manage this? 2011/5/16 ankit ankitsaxena0...@gmail.com i am making a GWT framework similar to Swing framework. in GWT, i have one method in which i am making a anonymous class in method. but problem

Re: Problem in slider bar

2011-05-16 Thread Juan Pablo Gardella
You use singletons views? 2011/5/16 VIKKY viccsj...@gmail.com Hi Everyone, I am using a slider in my application, Slider is attached with decorated tab panel. So when the application loads first time , it set the value for slider , but when i open the panel where actually slider present,

Re: gwt 2.3.0 + hibernate 3.0 + eclipse not working validation exception

2011-05-14 Thread Juan Pablo Gardella
Add javax.validation and hibernatevalidator to your classpath. Juan 2011/5/13 MazuGrazus modestas.mikuc...@gmail.com Hi i have some problems with gwt and hibernate. Then i am trying to get current session i am getting this error: [code] 2011-05-13 18:02:15.484 java[46803:903] [Java

Re: DevMode to test compiled app

2011-05-11 Thread Juan Pablo Gardella
Use gwt-maven-plugin 2011/5/10 Magno Machado magn...@gmail.com I'm using the DevMode as a conteiner so that I can test the compiled version of my app, I'm invoking the com.google.gwt.dev.DevMode directly via a Gradle task Is there a way (via command like arguments or whatever) to make the

Re: GWT 2.3 Upgrade breaks hibernate queries?

2011-05-11 Thread Juan Pablo Gardella
You need add javax.validation jar to your dependencies. dependency groupIdjavax.validation/groupId artifactIdvalidation-api/artifactId version1.0.0.GA http://1.0.0.ga//version scopeprovided/scope

Re: IE8 shows only my application's first page

2011-05-11 Thread Juan Pablo Gardella
What signal error? 2011/5/11 Alessio unibs cecchia...@libero.it GoodMorning everybody. I'm using GWT 2.0.4 and in IE8 appears only my application's first page and when i click on a button, IE8 shows a white page and in the bottom-left corner shows a signal error. What can i do? Thanks in

Re: DevMode to test compiled app

2011-05-11 Thread Juan Pablo Gardella
http://code.google.com/webtoolkit/doc/latest/DevGuideCompilingAndDebugging.html http://code.google.com/webtoolkit/doc/latest/DevGuideCompilingAndDebugging.html 2011/5/11 Magno Machado magn...@gmail.com I'm not using Maven On Wed, May 11, 2011 at 8:15 AM, Juan Pablo Gardella gardellajuanpa

Re: Dropdowns closing unexpectedly in IE

2011-05-11 Thread Juan Pablo Gardella
Perhaps is a bug. Make a sample to reproduce it and create an issue. 2011/5/11 SVR svr...@gmail.com Can somebody please tell me how to go about finding whats happening here? On Tue, May 10, 2011 at 12:16 PM, SVR svr...@gmail.com wrote: I have Focus, ValueChange and Change Handlers on some

Re: Getting errors after upgrading to 2.3

2011-05-11 Thread Juan Pablo Gardella
Desintall all plugin related to GWT in eclipse and reinstall. 2011/5/10 Swami mailsw...@gmail.com Hello, I built ran an Eclipse project (with ant) successfully using 2.2. After upgrading to 2.3, I'm getting errors even when falling back to 2.2. Running ant on a Gnome shell is fine. I'm new

Re: How to get GWT's Session Key?

2011-05-11 Thread Juan Pablo Gardella
For what? 2011/5/11 Alexander Orlov alexander.or...@loxal.net When I launch my GWT module I see... ## Loading module: availability Top URL: http://127.0.0.1:/availability/index.html?gwt.codesvr=127.0.0.1:9997 User agent: Safari Remote host: localhost:65177 Tab key:

Re: Getting errors after upgrading to 2.3

2011-05-11 Thread Juan Pablo Gardella
:08 am, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: Desintall all plugin related to GWT in eclipse and reinstall. 2011/5/10 Swami mailsw...@gmail.com Hello, I built ran an Eclipse project (with ant) successfully using 2.2. After upgrading to 2.3, I'm getting

Re: Getting errors after upgrading to 2.3

2011-05-11 Thread Juan Pablo Gardella
Thank for share!! 2011/5/11 Swami mailsw...@gmail.com I found the issue. There was a GWT version mismatch between the Eclipse-Windows-Preferences Project-Properties. Once the versions matched, this issue went away a new issue is now in place. I'll post that separately. Thanks everyone!

Re: use gwt EntryPoint from jar

2011-05-09 Thread Juan Pablo Gardella
Add the dependency and the dependency of the sources: dependency groupIdcom.foo/groupId artifactIdfooArtifact/artifactId version. http://1.0.0.ga/../version /dependency dependency

Re: ResettableEventBus

2011-05-09 Thread Juan Pablo Gardella
See javadoc of Activity#start: Any handlers attached to the provided event bus will be de-registered when the activity is stopped, so activities will rarely need to hold on to the

Re: Error StringIndexOutOfBoundsException when running GWT application on Tomcat

2011-05-09 Thread Juan Pablo Gardella
What version of GWT? 2011/5/9 Alex alex.m...@gmail.com I am getting the following error when running my GWT application on Tomcat. When running it on Jetty it works fine. I do not use the charAt function in my code. How can I trace down this error? SEVERE: Unexpected error

Re: GWT JUnit: com.google.gwt.dev.jjs.InternalCompilerException: Unexpected error during visit

2011-05-06 Thread Juan Pablo Gardella
Are you have a custom class define in package java.io? 2011/5/6 Kayode Odeyemi drey...@gmail.com Hello, As my application gets broadened, I have decided to apply JUnit test so I can prevent NullPointerException as much as possible especially in Activity Place as well as RequestFactory.

Re: Chart And Event Calendar

2011-05-06 Thread Juan Pablo Gardella
See: Calendar http://code.google.com/p/gwtchismes/ Charts thread: http://groups.google.com/group/google-web-toolkit/browse_thread/thread/134102f715576e0e http://code.google.com/p/gwtchismes/Juan 2011/5/6 Manvel Saroyan saroy...@gmail.com Hi. I need two components for my GWT application that

Re: Chart And Event Calendar

2011-05-06 Thread Juan Pablo Gardella
See http://code.google.com/p/gwt-cal/ 2011/5/6 Manvel Saroyan saroy...@gmail.com Thank you Juan for fast reply... I didn't know about google's visualization tools it's exactly what I want... But The calendar wasn't the one I expected.. I would like to get simple event calendar which will

Re: RemoteService referencing another RemoteService

2011-05-05 Thread Juan Pablo Gardella
In server side is plain Java. Use of DI can help you 2011/5/5 Benjamin S. b.stei...@gloeckle-direct.de I have multiple RemoteServices in my project. Now I need to call a method from another RemoteService, so a RemoteService should call another RemoteService. I tried to create the service with

Re: Datepicker with multiselect

2011-05-05 Thread Juan Pablo Gardella
See multiselect calendar in jqueryhttp://www.kelvinluck.com/assets/jquery/datePicker/v2/demo/ and see gwtquery http://code.google.com/p/gwtquery/ (jquery ported to GWT). You can try with this to integrate to your application. 2011/5/5 Dmitry Tikhomirov chani.l...@gmail.com Hi all, Does anyone

Re: Configuring a GWT application in both hosted mode and Tomcat

2011-05-05 Thread Juan Pablo Gardella
The simple way that I recommend use http://tomcat.apache.org/tomcat-6.0-doc/jndi-resources-howto.html. Then you must configure each server access to database. In your source code you doesn't need the information to access to database or other resources. Is the standard form. If your architecture

Re: Configuring a GWT application in both hosted mode and Tomcat

2011-05-05 Thread Juan Pablo Gardella
The simple way that I recommend use jndi resuorces. Then you must configure each server access to database. In your source code you doesn't need the information to access to database or other resources. Is the standard form. If your architecture is more complex you can define a custom resource

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

2011-05-05 Thread Juan Pablo Gardella
http://stackoverflow.com/questions/4950048/what-is-the-ivy-equivalent-of-mavens-versionsdisplay-dependency-updates 2011/5/5 pohl pohl.longs...@gmail.com 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

Re: Can not export to IE 7

2011-05-05 Thread Juan Pablo Gardella
Check http://code.google.com/webtoolkit/doc/latest/FAQ_Server.html#What_is_the_Same_Origin_Policy,_and_how_does_it_affect_GWT? http://code.google.com/webtoolkit/doc/latest/FAQ_Server.html#What_is_the_Same_Origin_Policy,_and_how_does_it_affect_GWT?Is relate to this? 2011/5/5 Greg Dougherty

Re: Fail upgrade to GWT 2.3

2011-05-05 Thread Juan Pablo Gardella
Can you past the .classpath file? 2011/5/5 Bert btrol...@yahoo.fr Hi, I got some errors when I upgrade my application from GWT 2.1.1 to GWT 2.3 in eclipse plugin. I change nothing in my code. [DEBUG] [erdilverbatimvisualisation] - Validating newly compiled units [ERROR]

Re: RPC Error after 2.3 upgrade: The response could not be deserialized

2011-05-05 Thread Juan Pablo Gardella
http://groups.google.com/group/google-web-toolkit/browse_thread/thread/6bd717b92ae4a708 2011/5/5 KevMo kevinps...@gmail.com After upgrading to GWT 2.3 some of my RPC services no longer work and fail with The response could not be deserialized. It seems to happen to services that are

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

2011-05-05 Thread Juan Pablo Gardella
If you use maven resolve this problem with this: dependency groupIdjavax.validation/groupId artifactIdvalidation-api/artifactId version1.0.0.GA http://1.0.0.ga//version scopeprovided/scope

Re: RPC Error after 2.3 upgrade: The response could not be deserialized

2011-05-05 Thread Juan Pablo Gardella
Can you paste to your .classpath file ? 2011/5/5 KevMo kevinps...@gmail.com Thanks for the suggestion. I've replaced all the GWT jars just to be double sure. I still have the same problem though. On May 5, 12:59 pm, Andrei Bulanau helper.h...@gmail.com wrote: May be you have old version

Re: gwt 2.3 linkedlist SerializationException

2011-05-05 Thread Juan Pablo Gardella
What types of objects are you sent in LinkedList? 2011/5/5 Peter Warren pe...@nomad.org I'm using the Google Plugin for Eclipse and upgraded today to gwt 2.3. Now when running my project I get the exception below about a problem serializing LinkedList. If I switch back to gwt 2.2 my app

Re: GWT 2.3 web server reload time

2011-05-05 Thread Juan Pablo Gardella
Is slow in chrome and firefox, in IE is faster in dev mode than other browser in Windows OS 2011/5/5 zip184 zip...@gmail.com I just upgraded to 2.3. Did anyone else notice the web server takes a lot longer to reload than it did before? Did it switch back to using tomcat again or something?

Re: How do you create your buttons, textfields...?

2011-05-05 Thread Juan Pablo Gardella
You must test in server mode. Is seem that not find javascript file. Check your paths 2011/5/5 Gomez revoll...@googlemail.com Hello people, i got this message here: http://stackoverflow.com/questions/5890484/gwt-best-way-to-setsize-of-buttons-design-buttons and exactly this is my question

Re: gwt 2.3 linkedlist SerializationException

2011-05-05 Thread Juan Pablo Gardella
Mmmm I don't know. I need more info. For example .classpath file and the object are you send, but if you said in gwt 2.2.0 works, perhaps is a bug. Make a sample that reproduce the bug and open a issue. But check this http://code.google.com/p/google-web-toolkit/issues/detail?id=5230 and check

Re: java.lang.NoClassDefFoundError: javax/jdo/spi/Detachable and java.io.IOException CreateProcess error=87, The parameter is incorrect

2011-05-04 Thread Juan Pablo Gardella
You have this exception: Caused by: java.lang.ClassNotFoundException: javax.jdo.spi.Detachable Are you use JDO in client side? 2011/5/4 Kayode Odeyemi drey...@gmail.com Firstly, about 2 weeks ago I started receiving the exception, CreateProcess error=87, The parameter is incorrect. This

Re: Where to store global (application) variables?

2011-05-04 Thread Juan Pablo Gardella
See this http://wanderingcanadian.posterous.com/hello-mvp-with-gin 2011/5/4 vehdra music veh...@gmail.com I am really newby to GIN. I was reading this GIN tutorial ( http://code.google.com/p/google-gin/wiki/GinTutorial ). But I can´t figure how can I use to store global data, and how can I

Re: Re : When will the gwt maven plugin be updated to match gwt-2.3

2011-05-04 Thread Juan Pablo Gardella
http://groups.google.com/group/codehaus-mojo-gwt-maven-plugin-users/browse_thread/thread/5f6c9324a3119c30followup=http://groups.google.com/group/codehaus-mojo-gwt-maven-plugin-users/browse_thread/thread/5f6c9324a3119c30 2011/5/4 Wandile Chamane wandile.cham...@gmail.com Hi, Thomas please

Re: How to add java.util.calendar in Gwt

2011-05-04 Thread Juan Pablo Gardella
Hi, java.util.Calendar is not supported yet. See http://code.google.com/intl/es-ES/webtoolkit/doc/latest/RefJreEmulation.html#Package_java_util http://code.google.com/intl/es-ES/webtoolkit/doc/latest/RefJreEmulation.html#Package_java_util See

Re: Migration issue

2011-05-03 Thread Juan Pablo Gardella
Are you use gin or another gwt library ? 2011/5/3 ruslan.mukhammad ruslan.mukham...@gmail.com Before I worked with GWT 2.1 M1 version and all functions worked normally without any exception. But when I moved to GWT 2.2 version, UI side works fine, but I can't receive any data from server side

Re: Client/Server serialization/deserialization for using Hibernate with GWT

2011-05-03 Thread Juan Pablo Gardella
+1 to remove final keyword 2011/5/3 Gal Dolber gal.dol...@gmail.com I have the same problem. In my project I override AbstractSerializationStreamWriter and got everything working. Works great, but its an ugly solution. A cleaner way to support hibernate will be really nice to have. On Tue,

Re: DialogBox.center does not center correctly

2011-05-01 Thread Juan Pablo Gardella
Delete the css style relationate to the size. Check if you have a file too with this style 2011/4/29 Magnus alpineblas...@googlemail.com Hi, I have a problem with centering a DialogBox. I create it, add some widgets (the size of which I set at the same time!), and call center:

Re: With GWT, when exactly do you need DTOs for your entities ?

2011-05-01 Thread Juan Pablo Gardella
In the book Pro Web 2.0 Application Development with GWT http://www.amazon.com/Pro-Application-Development-Experts-Voice/dp/1590599853 the author don't use DTO. He *hack *some GWT classes to put null this relations during serialization . This is a good solutions because you don't duplicate your

Re: RF for CRUD and RPC for others?

2011-04-29 Thread Juan Pablo Gardella
For example? What do you want to do? 2011/4/29 Diego Lovison diegolovi...@gmail.com how I can @Inject using RF? for RPC http://stuffthathappens.com/blog/2009/09/14/guice-with-gwt/ and I can @Inject my EJB too... Using RF I will @Inject my EJB on Entity? how? On 29 abr, 01:56, Juan Pablo

Re: URLs in Jetty

2011-04-29 Thread Juan Pablo Gardella
If you debug inside eclipse works? 2011/4/29 Tyo tyoma...@list.ru I'm novice in GWT. I'd make simple application and I'm tryig to test in in dev mode using Jetty. Strange thing: when I run URL http://127.0.0.1:/Maas.html my application works properly, but when running correct URL

Re: Deferred Binding error when upgrading to GWT 2.0.0

2011-04-29 Thread Juan Pablo Gardella
You must upgrade to gwt-maven-plugin - 2.2 2011/4/29 stockloser kde...@gmail.com I've finally hit a wall on trying to resolve this error and decided to post here to reach out for some advice/help. I have a GWT 1.5.3 application that works with Stripes 1.4.2 framework. In that configuration,

Re: additional web application on hosted mode jetty server

2011-04-29 Thread Juan Pablo Gardella
See http://docs.codehaus.org/display/JETTY/Maven+Jetty+Plugin the section Running Multiple Webapps 2011/4/29 cri chuck.irvine...@gmail.com we have a web application that's separate from our gwt web application. the gwt web application makes server calls (rest) to this separate application.

Re: com.google.gwt.user.client.rpc.SerializationException

2011-04-29 Thread Juan Pablo Gardella
Perhaps are you have an error in a query? See http://www.zkoss.org/forum/listComment/14349 2011/4/29 Nisha shilp...@gmail.com Hi All, Thanks for your response. I changed the exception class as suggested. It now implements Serializable interface and now that error has gone. But still I get

Re: GWT doesn't work in eclipse

2011-04-28 Thread Juan Pablo Gardella
'com.google.appengine.tools.development.gwt.AppEngineLauncher' java.lang.ClassNotFoundException: Add GAE to your classpath 2011/4/28 Uri Even-Chen urievenc...@gmail.com I upgraded GWT to the latest version (2.2.0), but I can't run my project (created with GWT 2.1.0). I receive this error:

Re: RF for CRUD and RPC for others?

2011-04-28 Thread Juan Pablo Gardella
I think as you. Where is the best place to put logic if we use RF? With RPC I have services and daos. Juan 2011/4/28 Diego Lovison diegolovi...@gmail.com hmmm.. using RF I need put the all logic on the Entity? for example: I would like save a employee, but I need verify other thinks that

Re: Error In Upgrade My Project to Gwt2.2

2011-04-28 Thread Juan Pablo Gardella
Paste .classpath file. I think is classpath problem 2011/4/28 Qadez scientist@gmail.com Hi I was Using Gwt2.0.3 To develop Some Application On Eclipse By new Project Dynamic Web Project and on the Project (right click google web toolkit Convert Project Into GWT Project ) And Then

Re: Call EJB 3 from GWT

2011-04-28 Thread Juan Pablo Gardella
Use a wrapper. When you are in server side is plain Java. With plain Java you can communicate with a EJB 2011/4/28 NahumMor nahum...@gmail.com hi, i trying to call EJB 3 from GWT RPC, i use Eclipse 3.6 GWT 2.2.0 and Glassfish 3.1, i write simple ejb, the EJB work fine if i call him from

Re: Call EJB 3 from GWT

2011-04-28 Thread Juan Pablo Gardella
, probably not support, i try call the ejb from gwt in netbeans and it's work fine. On 28 אפריל, 22:01, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: Use a wrapper. When you are in server side is plain Java. With plain Java you can communicate with a EJB 2011/4/28 NahumMor nahum

Re: com.google.gwt.user.client.rpc.SerializationException

2011-04-28 Thread Juan Pablo Gardella
What version of gwt are you use? 2011/4/28 Nisha shilp...@gmail.com Hi All, I am working on GWT+Spring+Hibernate integration. But I am getting the following error. Could any any one please help. java.lang.RuntimeException: com.google.gwt.user.client.rpc.SerializationException: Type

Re: Navigation Buttons: first, previous, next, last?

2011-04-28 Thread Juan Pablo Gardella
good answer 2011/4/28 Jim Douglas jdou...@basis.com http://www.google.com/search?tbm=ischq=first+button+icon http://www.google.com/search?tbm=ischq=previous+button+icon http://www.google.com/search?tbm=ischq=next+button+icon http://www.google.com/search?tbm=ischq=last+button+icon On Apr

Re: RF for CRUD and RPC for others?

2011-04-28 Thread Juan Pablo Gardella
For this cases, is more simple use RPC. 2011/4/28 -sowdri- sow...@gmail.com RF could be used to perform: 1. CRUD operations on entities (without a service layer at all) 2. Call methods on your service layer, which can again return Entities or ValueProxies or Simple types! So you are free

Re: RF for CRUD and RPC for others?

2011-04-28 Thread Juan Pablo Gardella
Option 2. I think in this case use RPC is more simple and better. If not, why is not? Juan 2011/4/28 Juan Pablo Gardella gardellajuanpa...@gmail.com For this cases, is more simple use RPC. 2011/4/28 -sowdri- sow...@gmail.com RF could be used to perform: 1. CRUD operations on entities

Re: RF for CRUD and RPC for others?

2011-04-28 Thread Juan Pablo Gardella
RF perhaps is better to tools, like Roo 2011/4/28 -sowdri- sow...@gmail.com In fact RF is simple compared to RPC! -- 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: GWT + Tomcat + MySQL: How to set up a development environment

2011-04-26 Thread Juan Pablo Gardella
Hi, I am about to create a web application using GWT + MySQL. My understanding is that I need to set up an external server (Tomcat) in order to use a MySQL back-end No really, GWT is to build frontend. So you can do your backend in other language, for example PHP and communicate with GWT via

Re: seralization problem

2011-04-25 Thread Juan Pablo Gardella
org.springframework.orm.jpa.JpaSystemException is not Serializable 2011/4/22 karq kar...@gmail.com Hey everyone! I'm developing a GWT + Spring + Hibernate app. I got GWT +Spring working.But when I implemented hibernate and my services and run my app then I get this error: [WARN] Exception

Re: How to speed up Hosted mode

2011-04-18 Thread Juan Pablo Gardella
+1 2011/4/18 maticpetek maticpe...@gmail.com Hello, We are developing our app in GWT now for a couple of years. And code base is becoming bigger every day And hosted mode is also become very slow. Refresh in browser takes around 1 minute. Forms opening a couple of seconds. All this

Re: 2.3.0m1 errors import javax.validation.ConstraintViolation

2011-04-18 Thread Juan Pablo Gardella
You need add javax.validation.api classes in your classpath. Now, gwt has this dependency 2011/4/17 Sunyc sunyuc...@gmail.com [ERROR] [xxx] - Line 20: The import javax.validation.ConstraintViolation cannot be resolved This seems to be a j2ee class. -- You received this message because you

Re: Transporting data from a JDO Query via RPC

2011-04-15 Thread Juan Pablo Gardella
Use DTO can help with this, or see http://code.google.com/intl/es-ES/webtoolkit/articles/using_gwt_with_hibernate.html that have other strategies. 2011/4/15 levan sandoval...@gmail.com Hi guys, I'm new at GWT, I've got a persistent class named Customer which implements Serialized, on the

Re: Custom Server Validation in GWT 2.2

2011-04-15 Thread Juan Pablo Gardella
See http://gwt-vl.sourceforge.net/ 2011/4/15 Andy andylamyinc...@gmail.com Hi, May I know if it is possible to do custom server validation in GWT 2.2? I saw the sample in

Re: Custom Server Validation in GWT 2.2

2011-04-15 Thread Juan Pablo Gardella
Yes, validation in gwt at now is young I think. So we use gwt-vl in my project and work well. 2011/4/15 Andy andylamyinc...@gmail.com Many thanks for the answer Juan, I am aware of the project gwt-vl, but this is not a standard from GWT. Since GWT already have this, I prefer to use it, Plus

Re: GWT and Spring

2011-04-14 Thread Juan Pablo Gardella
Welcome to GWT. You can try read this first: 1) Best Practices!!! gwt http://dl.google.com/io/2009/pres/Th_0200_GoogleWebToolkitArchitecture-BestPracticesForArchitectingYourGWTApp.pdf 2) gwt-dispatch + spring http://pgt.de/2009/09/16/use-spring-with-gwt-dispatch/

Re: How to connect postgres database

2011-04-13 Thread Juan Pablo Gardella
See http://jdbc.postgresql.org/documentation/80/connect.html 2011/4/13 Ahrom brah...@gmail.com Good afternoon, I'm a newbie, can someone tell me how to connect to a postgres database? Thanks -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: How to connect postgres database

2011-04-13 Thread Juan Pablo Gardella
See http://code.google.com/webtoolkit/doc/latest/DevGuideUiCellWidgets.html 2011/4/13 Ahrom brah...@gmail.com Ok, thank you very much, so I have it and it works well the query, I thought maybe that was my error. Now, with this: ResultSet rs = stmt.executeQuery (select * from my_table); How

Re: Webapp runs in development mode perfectly but fails on test server

2011-04-13 Thread Juan Pablo Gardella
is there other stacktrace?. There aren't an error 2011/4/13 Rob Tanner caspersg...@gmail.com Hi, My webapp runs perfectly in development mode, but when I build the WAR file and move onto a test server, I have problems. Database connections are failing and hitting the return key does not

Re: Data Structure between client and server

2011-04-13 Thread Juan Pablo Gardella
I think use the most simple approach is better. So, if share structure data is simple and enough, use it. I take this approach 2011/4/13 Angelo Brandimarte angelobrandima...@gmail.com I have just started working with GWT, for an University Project. I have to create a classic client-server

Re: ClassNotFoundException: http:?

2011-04-11 Thread Juan Pablo Gardella
How do you run the app? 2011/4/11 kevin kalo...@gmail.com Has anyone seen this before? I have a pretty large set of Serializable object but to overly simpllity our classes, we have a Request object and a Query Object. class Request extends Serialiable { } Caused by:

Re: ClassNotFoundException: http:?

2011-04-11 Thread Juan Pablo Gardella
class Query is not mark as Serializable 2011/4/11 kevin kalo...@gmail.com This happens in production and devmode in either JUnit test or a live system. On Apr 11, 9:40 am, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: How do you run the app? 2011/4/11 kevin kalo

Re: ClassNotFoundException: http:?

2011-04-11 Thread Juan Pablo Gardella
Debug in dev mode and put a breakpoint here: com.google.gwt.user.server.rpc.impl.ServerSerializationStreamReader.deserialize(ServerSerializationStreamReader.java: 542) 2011/4/11 kevin kalo...@gmail.com Here is the RCP request that is getting posted. If I debug it, it gets to at [107] (which

Re: Google Eclipse Plugin deletes gwt-servlet.jar when running?

2011-04-11 Thread Juan Pablo Gardella
Are you doing all this steps? http://googlewebtoolkit.blogspot.com/2010/08/how-to-use-google-plugin-for-eclipse.html 2011/4/11 Philippe Beaudoin philippe.beaud...@gmail.com I use Maven + Eclipse and I have a strange problem with the Google Eclipse Plugin deleting some dependencies from the

Re: Google Eclipse Plugin deletes gwt-servlet.jar when running?

2011-04-11 Thread Juan Pablo Gardella
run mvn eclipse:clean eclipse:eclipse and refresh the project 2011/4/11 Philippe Beaudoin philippe.beaud...@gmail.com Yes, I am following all of these steps, with the exception of step number 7: Finally, and this is very important, the first time you launch your project using Run As | Web

<    3   4   5   6   7   8   9   10   >