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

2011-04-11 Thread Juan Pablo Gardella
I don't use m2eclipse and work well 2011/4/11 Juan Pablo Gardella gardellajuanpa...@gmail.com Try delete the project of the workspace and import again. 2011/4/11 Philippe Beaudoin philippe.beaud...@gmail.com @Juan: I did the mvn eclipse:clean eclipse:eclipse a bunch of times yet, doesn't

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

2011-04-11 Thread Juan Pablo Gardella
Try delete the project of the workspace and import again. 2011/4/11 Philippe Beaudoin philippe.beaud...@gmail.com @Juan: I did the mvn eclipse:clean eclipse:eclipse a bunch of times yet, doesn't help. @Jeff: It's not marked as provided... I've just tried making it scopecompile/scope

Re: Deploying on Apache

2011-04-11 Thread Juan Pablo Gardella
Are you mean Tomcat Apache? Because if you use GWT-RPC communication you need a Servlet Container. 2011/4/11 John Doran john.do...@hotmail.com Hi all, I'm just trying to deploy my application for the first time, I want to do it through Apache, there's a lot of stuff online about it, but some

Re: Deploying on Apache

2011-04-11 Thread Juan Pablo Gardella
You simple paste war file in webapps. Don't create any folder 2011/4/11 John Doran john.do...@hotmail.com Yes, Tomcat Apache.That is a servlet container as far as I know. On Mon, Apr 11, 2011 at 9:48 PM, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: Are you mean Tomcat Apache

Re: Can't compile gadget with GWT Plugin 2.2 or 2.3 Beta

2011-04-09 Thread Juan Pablo Gardella
Is gwt-gadgets compatible with gwt 2.2? Perhaps you must compile gwt-gadgets sources with 2.2, and then you can use it 2011/4/8 dicko d...@mothdesign.com.au Hi there, I've seen a few posts complaining about this error but they seem to refer to issues using the Maps.jar. Anyway, I've

Re: Can't compile gadget with GWT Plugin 2.2 or 2.3 Beta

2011-04-09 Thread Juan Pablo Gardella
Is gwt-gadgets compatible with gwt 2.2? Perhaps you must compile gwt-gadgets sources with gwt 2.2 for use in your project. 2011/4/8 dicko d...@mothdesign.com.au Hi there, I've seen a few posts complaining about this error but they seem to refer to issues using the Maps.jar. Anyway, I've

Re: RemoteServiceServlet.processCall

2011-04-09 Thread Juan Pablo Gardella
See JSR 250 2011/4/9 Jorge demeus1...@gmail.com Hi, I was trying to implement some user control in my application and I've found some problems in my server side: I was thinking about creating an annotation to mark those methods that need an authorized user and validate the session from an

Re: GWT Developper plugin without internet connection

2011-04-08 Thread Juan Pablo Gardella
/FAQ_DebuggingAndCompiling.html#How_do_I_use_my_own_server_in_hosted_mode_instead_of_GWT%27s 2011/4/7 guymage gdon...@gmail.com Hi, This link only contains files for eclipse plugin installation, not for the web browser plugin ? On 7 avr, 22:12, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: Seehttp

Re: GWT Developper plugin without internet connection

2011-04-07 Thread Juan Pablo Gardella
See http://code.google.com/intl/es/eclipse/docs/install-from-zip.htmlhttp://www.google.com/url?sa=Dq=http://code.google.com/intl/es/eclipse/docs/install-from-zip.html Juan 2011/4/6 guymage gdon...@gmail.com Hi, I'm working on a computer which does not have any internet connection. I try

Re: Huge WAR file

2011-04-07 Thread Juan Pablo Gardella
See http://groups.google.com/group/google-web-toolkit/browse_thread/thread/afb6466401b90e32 2011/4/7 JeanV jve...@gmail.com My current project is generating a WAR file of around 120MB (yes that's right!) - prior to version 2.x, the same project would generate WAR files of less then 30Mb. Any

Re: Login screen

2011-04-07 Thread Juan Pablo Gardella
I do the login page in plain html. I use Spring Securty 2011/4/7 Something Something mailinglist...@gmail.com Hello, I need to add a login page to my GWT application. After Googling I came across the following two links:

Re: Show progress of RPC call

2011-04-07 Thread Juan Pablo Gardella
In Pro Web 2.0 Application Development with GWT is there an example 2011/4/7 Ben Imp benlee...@gmail.com I've seen something like this. We kick off a long-running process, then have the browser ask for updates from the server every X seconds and update the user. This requires storing the

Re: JDBC Connection on GWT

2011-04-06 Thread Juan Pablo Gardella
) at com.google.gwt.user.server.rpc.RPC.invokeAndEncodeResponse(RPC.java: 569) ... 30 more On Apr 5, 8:51 pm, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: Put postgresql driver in WEB-INF/lib Juan 2011/4/5 Jose Luis Hernandez jose.hernande...@gmail.com Hello

Re: JDBC Connection on GWT

2011-04-06 Thread Juan Pablo Gardella
that is permited. On Apr 6, 3:14 pm, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: You are used restricted classes: java.lang.NoClassDefFoundError: java.net.Socket is a restricted class. See whitelist http://code.google.com/appengine/docs/java/jrewhitelist.html classes 2011/4

Re: JDBC Connection on GWT

2011-04-06 Thread Juan Pablo Gardella
If is a GAE application, I think that you can't use SQL database, but I don't know GAE- 2011/4/6 Jose Luis Hernandez jose.hernande...@gmail.com It is an application, but in future it should be integrated into OSGi, then deploy in Felix server! On Apr 6, 4:15 pm, Juan Pablo Gardella

Re: Plugin failed to connect in development mode

2011-04-06 Thread Juan Pablo Gardella
Are you test with the sample provided by the eclipse plugin? New - Web Application Project 2011/4/6 avn avni...@gmail.com I am using windows 7. i installed latest gwt for eclipse 3.6 (Helios) and created the sample program using the gwt. When i try to run the program from the development mode

Trouble with CheckboxCell in CellTable

2011-04-06 Thread Juan Pablo Gardella
Hi, I have problem with update a checkbox column. I try make a sample, but I can't reproduce, but when I debug my app, I reach CheckboxCell.render method: pre @Override public void render(Context context, Boolean value, SafeHtmlBuilder sb) { // Get the view data. Object key =

Re: Trouble with CheckboxCell in CellTable

2011-04-06 Thread Juan Pablo Gardella
A workaround is http://code.google.com/p/google-web-toolkit/issues/detail?id=5964 On 6 abr, 12:01, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: Hi, I have problem with update a checkbox column. I try make a sample, but I can't reproduce, but when I debug my app, I reach

Re: Passing data from Dialog Box

2011-04-05 Thread Juan Pablo Gardella
You can use EventBus 2011/4/4 Mittal mitt...@gmail.com I have following use case, Master Form - has button called Add Row - that shall open Dialog Box to collect data, lets say First Name , Last Name etc. When Dialog Box is closed or based on some other event how to I send this data

Re: Passing data from Dialog Box

2011-04-05 Thread Juan Pablo Gardella
See this post: http://stackoverflow.com/questions/3162399/gwt-confirmation-dialog-box 2011/4/5 Mittal mitt...@gmail.com Can you share any examples - how you are sending data back from Dialog Box to window that opened dialog box. Mittal On Apr 5, 3:11 am, Alexandre Ardhuin

Re: JDBC Connection on GWT

2011-04-05 Thread Juan Pablo Gardella
Put postgresql driver in WEB-INF/lib Juan 2011/4/5 Jose Luis Hernandez jose.hernande...@gmail.com Hello! I am trying to connect my gwt server with postgreSQL database, but I do not get it. It appears the following error message: [ERROR] javax.servlet.ServletContext log: Exception while

Re: Can't run the Samples in development mode

2011-04-05 Thread Juan Pablo Gardella
Try make a war and test in a servlet container and tell me if work juan 2011/4/4 BrucePPI bmt...@gmail.com Using the following configuration OS: Ubuntu 10.10 GWT: makes no difference with 2.2.0 or 2.1.1 Java: 1.5 GTK: 2.10.0 ant: 1.8.0 RAM: 2GB DISK: 150GB When

Re: What are WEB-INF\deploy\module\symbolMaps and rpcPolicyManifest directories?

2011-04-05 Thread Juan Pablo Gardella
+1 on this 2011/4/5 anatoliy anatoliy.arteme...@gmail.com What are WEB-INF\deploy\module\symbolMaps and rpcPolicyManifest directories? I found that GWT compiler creates those after each compilation. Total size of these dirs is now over 150MB for my three modules and this prevents me to

Re: GWT Date Serialization problem

2011-04-01 Thread Juan Pablo Gardella
But is the same time. I think gwt serialize the long value of the time and then create a date in client side with this value. Is this correct? 2011/4/1 Brendan Doherty bren...@propertysimplified.com How will noon fix the problem? Assuming your server is running on central time (UTC-6) and you

Re: gwt-dispatch with spring exception on async request

2011-04-01 Thread Juan Pablo Gardella
You can debug and put a breakpoint in at com.google.gwt.user.client.rpc.impl.SerializerBase.instantiate(SerializerBase.java:115) to see why fail. 2011/4/1 mariyan nenchev nenchev.mari...@gmail.com Hi, I integrated gwt-dispatch with spring, but when i try to execute gwt-dispatch Action it

Re: GWT 2.2 + JPA problem?

2011-03-31 Thread Juan Pablo Gardella
What is the package of entity.User ? Are you put in client package? Juan 2011/3/30 zoejules ngspki...@gmail.com I am working with GWT 2.2, JPA, Java EE 6 Web, glassfish v3. My problem is that I receive the following error if I use my entity in an RPC call: No source code is available for

Re: Spring

2011-03-31 Thread Juan Pablo Gardella
You can make a service that provide it. Juan 2011/3/30 l3dx thomas.skar...@gmail.com Hi! I'm also interested in this. How can one get information about the authenticated user from within GWT? I'm not even sure if I need this, but I started to think about it and became curious :) /Thomas

Re: GWT 2.2 + JPA problem?

2011-03-31 Thread Juan Pablo Gardella
, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: What is the package of entity.User ? Are you put in client package? Juan 2011/3/30 zoejules ngspki...@gmail.com I am working with GWT 2.2, JPA, Java EE 6 Web, glassfish v3. My problem is that I receive

Re: GWT 2.2 + JPA problem?

2011-03-31 Thread Juan Pablo Gardella
. And it is working. Thanks for the help! :) On Mar 31, 3:33 pm, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: If you want use it in client side, you must define a module in the ejb module and in the war proyect, use it. For example: ejb - MyModule.gwt.xml: In this file, you put

Re: Few problems with creating/ updating entities with requestfactory and appengine

2011-03-31 Thread Juan Pablo Gardella
Hi, only relationate with JPA. 1) you can fix with lazy annotationshttp://docs.jboss.org/hibernate/annotations/3.5/reference/en/html/entity.html#entity-hibspec-singleassoc-fetching . 2) Are you run in a transactional method? Juan 2011/3/31 Marcin Misiewicz misq...@gmail.com Hi i have a few

Re: Few problems with creating/ updating entities with requestfactory and appengine

2011-03-31 Thread Juan Pablo Gardella
I'm don't know appengine, but if you want update something you must do in a transaction scope. See Jpa transactionshttp://en.wikibooks.org/wiki/Java_Persistence/Transactions Juan 2011/3/31 Marcin Misiewicz misq...@gmail.com Hi Juan 1. I added @Basic annotation with fetch type eager and it

Re: GWT Date Serialization problem

2011-03-31 Thread Juan Pablo Gardella
How are you do when I set the Date field on the client? The serialization to server-client is Ok, but to client-server fail? Juan 2011/3/31 SVR svr...@gmail.com Has anybody noticed a problem with dates and RPC. Basically I receive a date from the backend and able to see the correct date in

Re: GWT Date Serialization problem

2011-03-31 Thread Juan Pablo Gardella
the RPC call, the value is Jan 30, 1979. On Thu, Mar 31, 2011 at 3:08 PM, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: How are you do when I set the Date field on the client? The serialization to server-client is Ok, but to client-server fail? Juan 2011/3/31 SVR svr...@gmail.com

Re: GWT Date Serialization problem

2011-03-31 Thread Juan Pablo Gardella
) this.birthDate.setText(DateTimeFormat.getFormat(medDateFormat).format( sender.getDateOfBirth())); else birthDate.setText(); Now I see the value on the textBox has changed, is off by a day! On Thu, Mar 31, 2011 at 3:27 PM, Juan Pablo Gardella gardellajuanpa

Re: Spring Security with GWT : how to condition access to fields in a page ?

2011-03-30 Thread Juan Pablo Gardella
Check this framework: http://code.google.com/p/acris/wiki/SecurityClient http://code.google.com/p/acris/wiki/SecurityClient 2011/3/30 Celinio cel...@gmail.com Hi, i read that someone else already asked for information on how to use Spring Security with GWT, so i will not ask again. I got

Re: hudson + soyc trend?

2011-03-30 Thread Juan Pablo Gardella
Are you see this post? http://raibledesigns.com/rd/entry/how_to_use_gwt_2 http://raibledesigns.com/rd/entry/how_to_use_gwt_2 2011/3/30 Gal Dolber gal.dol...@gmail.com Where anyone able to plug hudson with a Soyc Trend? like the Checkstyle plugin? It will be great to control that metrics

Re: hudson + soyc trend?

2011-03-30 Thread Juan Pablo Gardella
Its not related with hudson. Forget the post 2011/3/30 Juan Pablo Gardella gardellajuanpa...@gmail.com Are you see this post? http://raibledesigns.com/rd/entry/how_to_use_gwt_2 http://raibledesigns.com/rd/entry/how_to_use_gwt_2 2011/3/30 Gal Dolber gal.dol...@gmail.com Where anyone able

Re: SafeHtmlUtils on the server side

2011-03-29 Thread Juan Pablo Gardella
it fully function. I am a bit hesitant to put gwt-dev.jar on my classpath as it is not supposed to be used server side. Perhaps I am just standing on principle. Thanks for your help. --Matt-- On Mar 25, 12:35 pm, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: I suppose you need some

Re: Spring Security

2011-03-29 Thread Juan Pablo Gardella
I protect the app with spring security in two manner: 1) Protect URL with filter provided with spring security. 2) I protect my service with JSR250 (you can enable in spring). 3) Implement a interface, a wrapper of SpringSecurity classes, that I query userid and if the user is logged. Juan

Re: Alguien de Argentina?

2011-03-29 Thread Juan Pablo Gardella
jajaj 2011/3/29 Gal Dolber gal.dol...@gmail.com -- Guit: Elegant, beautiful, modular and *production ready* gwt applications. http://code.google.com/p/guit/ -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Re: problema de integracion con Eclipse

2011-03-28 Thread Juan Pablo Gardella
Es raro, probá desinstalar los plugins que tengas instalados de gwt y reintenta de esta forma: http://code.google.com/intl/es/eclipse/docs/install-from-zip.htmlhttp://www.google.com/url?sa=Dq=http://code.google.com/intl/es/eclipse/docs/install-from-zip.html Juan 2011/3/25 David

Re: Import GWT prj

2011-03-28 Thread Juan Pablo Gardella
gwt-user.jar think as a util. You must package the jar with the sources and define your custom modules. Juan 2011/3/28 Marco Gadaleta gadaleta.ma...@gmail.com Please.. On Mon, Mar 28, 2011 at 11:10 AM, Marco Gadaleta gadaleta.ma...@gmail.com wrote: Hello everyone, I'm trying to create a

Re: One GWT WebApp but more than one WAR files

2011-03-28 Thread Juan Pablo Gardella
You can use a SCM repository, for ex. SVN, Mercurial Juan 2011/3/28 deejay j.plessm...@googlemail.com Is it possible to create one Webapp which is splitted into multiple WAR files (e.g. every module in one WAR file)? Is this a bad approach? How to develop a gwt application with more than

Re: One GWT WebApp but more than one WAR files

2011-03-28 Thread Juan Pablo Gardella
repository. The main question was, how to develop a GWT application which is splitted in MULTIPLE war files which could be deployed separately in the webapp server... On 28 Mrz., 15:39, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: You can use a SCM repository, for ex. SVN, Mercurial

Re: One GWT WebApp but more than one WAR files

2011-03-28 Thread Juan Pablo Gardella
You can handle with SSO, for example Josso. Juan 2011/3/28 deejay j.plessm...@googlemail.com How to handle the session if my app is splitted into more than one war? On 28 Mrz., 15:59, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: I think, is your wars are related, you can

Re: gwt + spring + maven

2011-03-28 Thread Juan Pablo Gardella
The exception: com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException: This application is out of date, please click the refresh button on your browser. ( Expecting version 5 from client, got 7. ) Mean that you must recompile (I don't know why :( ), recompile and test again Juan

Re: GWT CellTable Reading Json Data.

2011-03-28 Thread Juan Pablo Gardella
some exception in stacktrace? 2011/3/25 Ankit shahan...@gmail.com Hi All, I am new to the GWT looking for some help in the following code. Basically want to iterate over some json data and display it in a cell Table. Here is how it looks like. (1) JsonIntegrate.gwt.xml ?xml

Re: Error when installing GWT plugin for Eclipse 3.6

2011-03-28 Thread Juan Pablo Gardella
Try this: http://code.google.com/intl/es/eclipse/docs/install-from-zip.htmlhttp://www.google.com/url?sa=Dq=http://code.google.com/intl/es/eclipse/docs/install-from-zip.html 2011/3/26 Andrey metallal...@gmail.com Hi all! When i'm installing and it is already half a progress bar i recieve

Re: GWT: com.google.gwt.core.client.JavaScriptException. only using Internet Explorer

2011-03-28 Thread Juan Pablo Gardella
+1 on this, I have the same error El 28 de marzo de 2011 06:04, Sergio García sergiotrapie...@gmail.comescribió: Hi, Before explain my problem, I have to say that my GWT version is 2.2.0 and the error only has place when I use Internet Explorer (in this case IE 8). I have a little GWT

Re: Help: How to refresh Button Text?

2011-03-28 Thread Juan Pablo Gardella
Why you add again the button in refreshStopList()? // Button is added to the Screen. hPanel.add(Stop1Button); 2011/3/25 Rodrigo JS rjs_...@excite.com Hi All, I am new to GWT and was trying to create an horizontal panel with 5 Buttons on it. So far, so good. Point is that when I

Re: IE v Firefox

2011-03-28 Thread Juan Pablo Gardella
See this thread http://groups.google.com/group/google-web-toolkit/browse_thread/thread/c4c2e25bf0a2065f 2011/3/28 Greg Dougherty dougherty.greg...@mayo.edu So, I have a quirks mode web app using GWT 2.1.2. It runs just fine under Firefox, Sea Monkey (Mozilla derivative), and even Safari (on

Re: Part III of RequestFactory article

2011-03-28 Thread Juan Pablo Gardella
Italian 2011/3/28 Greg Dougherty dougherty.greg...@mayo.edu Would it really be too much to expect you to post what language the article is in (since, unlike the post announcing the article, the article's not in English)? Greg On Mar 28, 10:30 am, Luca luca.mas...@gmail.com wrote: Hi, on

Re: Designer Problem : « uibinder template should be in client package »

2011-03-28 Thread Juan Pablo Gardella
I supposed that you must put the file in client package. 2011/3/28 HommeDeJava claude.coulo...@gmail.com Greetings folks, I've tried to add UIBinder Composite widget in a project which was initiated without UiBinder using GWT plugin. So, when I tried to open xxx.ui.xml into the designer

Re: gwt + spring + maven

2011-03-25 Thread Juan Pablo Gardella
Best Practices!!! gwt http://dl.google.com/io/2009/pres/Th_0200_GoogleWebToolkitArchitecture-BestPracticesForArchitectingYourGWTApp.pdf Places, Activities: http://tbroyer.posterous.com/gwt-21-activities http://tbroyer.posterous.com/gwt-21-places MVP

Re: SafeHtmlUtils on the server side

2011-03-25 Thread Juan Pablo Gardella
I suppose you need some class in the server side. Put gwt-user.jar in server side and test 2011/3/25 Matt viper2...@gmail.com I am trying to use the SafeHtmlUtils class on the server side to make sure some HTML I am sending back to the client side is placed in a SafeHtml object before it is

Re: RPC Serializable = invalid objects graph?

2011-03-24 Thread Juan Pablo Gardella
GWT-RPC serialize objets graphs by POST and isn't do exact JVM serialization. You must implement equals and hashcode and then if you compare with equals then: Before serialization: instance x of A.bs equals instance x of C.bs. After deserialization: instance x of A.bs equals instance x of C.bs.

Re: Is gwt serialization backward compatible ?

2011-03-24 Thread Juan Pablo Gardella
I would not recommend either use GWT serialization or JVM serialization to store in a file, it isn't the main purpose. First, don't trust that GWT never change Serialization method in the future. Second, JVM serialization use serialversionuid to check if the .class is compatible and the version of

Re: complex example GWT Activity and Place

2011-03-24 Thread Juan Pablo Gardella
See this http://tbroyer.posterous.com/gwt-21-activities-nesting-yagni 2011/3/24 Kayode Odeyemi drey...@gmail.com Hello, Is there any complex example on how to nest Views when using the GWT Activity and Place. For example, I have a MainWidget which acts as a parent View for all other Views

Re: Out of memory: PermGen space

2011-03-24 Thread Juan Pablo Gardella
Increase Permgem memory ( http://wiki.eclipse.org/FAQ_How_do_I_increase_the_permgen_size_available_to_Eclipse%3F), perhaps its too low 2011/3/24 azuniga alessandro.zun...@gmail.com I'm using Eclipse IDE on RHEL. I am trying to determine if the problem is from the jvm, birt, gwt or my code. I

Re: GIN and different views implementations

2011-03-24 Thread Juan Pablo Gardella
Post in guice forum, perhaps you can receive best help 2011/3/24 Ernesto Reig erniru...@gmail.com Hello everybody. I have a view (interface extending IsWidget) and binded in the GinModule: bind(MyView.class).to(MyViewImpl.class).in(Singleton.class); And the question is: if I had several

Re: Error while connecting to the Oracle DB

2011-03-22 Thread Juan Pablo Gardella
java.net.Socket isn't in white list class: http://code.google.com/appengine/docs/java/jrewhitelist.html Juan 2011/3/22 sapna.dr sapna...@gmail.com Hi, We have implemented a GWT application. Now, while trying to connect to the Oracle DB to the GWT we are facing the exceptions like below

Re: One Session(HTTP) for multiple GWT-Modules?

2011-03-22 Thread Juan Pablo Gardella
Mrz., 05:04, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: No. SessionId is create. 2011/3/17 Johannes Stein johannes.st...@googlemail.com Cookies are fine, but what happens if cookies are disabled? Then two sessions will be created by the server

Re: how to debug java.lang.RuntimeException: Deferred binding failed for...

2011-03-18 Thread Juan Pablo Gardella
Show the file persistence.xml Juan 2011/3/18 tanteanni tantea...@hotmail.com 1) here ist the stacktrace (taken from eclipse console): Starting Jetty on port [WARN] Exception while dispatching incoming RPC call com.google.gwt.user.server.rpc.UnexpectedException: Service method

Re: how to debug java.lang.RuntimeException: Deferred binding failed for...

2011-03-18 Thread Juan Pablo Gardella
/ property name=javax.persistence.jdbc.driver value=com.mysql.jdbc.Driver/ property name=javax.persistence.jdbc.user value=gwz/ /properties /persistence-unit /persistence On 18 Mrz., 13:29, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: Show the file

Re: how to debug java.lang.RuntimeException: Deferred binding failed for...

2011-03-18 Thread Juan Pablo Gardella
. Tomcat can access them. Probably it's best to make a new thread - we are now very far away from topic of this thread. On 18 Mrz., 14:58, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: See thishttp://forum.springsource.org/archive/index.php/t-37014.html http

Re: MySQL server in development mode

2011-03-17 Thread Juan Pablo Gardella
for jdbc:mysql://localhost:3306/gwtchat?... On 15 מרץ, 13:16, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: It seems that your classpath is good. When you said: But then I restarted the server (from the eclipse development pane), and I started getting errors saying that the server cannot

Re: have to invoke eclipse/project/clean for modified server classes

2011-03-17 Thread Juan Pablo Gardella
Are you open your project after run mvn eclipse:eclipse? Probably your pom.xml is bad configurate. I use this plugin and work well with eclipse 2011/3/17 cri chuck.irvine...@gmail.com I've got a gwt project that accesses a Spring server back end. The project was initially created using the

Re: GWT Error

2011-03-17 Thread Juan Pablo Gardella
See: Problem accessing /ria2/calendar. And in your web.xml have this:/riaca2/calendar Juan 2011/3/17 but43r gvug...@gmail.com Ok. So I'm trying to create login page for my Application from this article http://checkappointments.com/gwt/ All is good until I click login button. I get this

Re: MySQL server in development mode

2011-03-17 Thread Juan Pablo Gardella
/resource-ref /web-app * I restarted Tomcat. Now, in the Tomcat log file, I get the following exception: No suitable driver found for jdbc:mysql://localhost:3306/gwtchat?... On 15 מרץ, 13:16, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: It seems that your classpath

Re: how to debug java.lang.RuntimeException: Deferred binding failed for...

2011-03-17 Thread Juan Pablo Gardella
Put the persistence.xml in your source in the correct place. Juan 2011/3/17 tanteanni tantea...@hotmail.com I feel a bit sheepish about it.But the Failure was much simpler then you all could imagine (obviously): simply i missed extends RemoteService ! but now it seems i got a real

Re: One Session(HTTP) for multiple GWT-Modules?

2011-03-17 Thread Juan Pablo Gardella
No. SessionId is create. 2011/3/17 Johannes Stein johannes.st...@googlemail.com Cookies are fine, but what happens if cookies are disabled? Then two sessions will be created by the server, or not? On 17 Mrz., 12:40, Uemit uemit.se...@gmail.com wrote: It depends how session management is

Re: GWT in Eclipse class load order

2011-03-16 Thread Juan Pablo Gardella
/ org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6/ classpathentry kind=output path=war/WEB-INF/classes/ /classpath On Mar 11, 8:17 am, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: 1) Can you post the code in com.gwt.ReportGeneration.server.ReportGenerationServiceImpl. getReport

Re: How to automatically download image to client from server when button clicked

2011-03-16 Thread Juan Pablo Gardella
You can generate an URL to make the report and use http://google-web-toolkit.googlecode.com/svn/javadoc/2.2/com/google/gwt/user/client/ui/Image.html . Juan 2011/3/16 azuniga alessandro.zun...@gmail.com I am having the user click a button that will generate a report on the server side. The

Re: java.lang.ClassCastException: org.mortbay.jetty.nio.SelectChannelConnector$RetryContinuation cannot be cast to org.mortbay.util.ajax.Continuation

2011-03-16 Thread Juan Pablo Gardella
What code? Paste here if you want help Juan 2011/3/16 Ramya rmjayasan...@gmail.com Hi, I am using GWT 2.2 and trying to integrate it with apache- activemq..When I run the code I get the following error.. java.lang.ClassCastException:

Re: java.lang.ClassCastException: org.mortbay.jetty.nio.SelectChannelConnector$RetryContinuation cannot be cast to org.mortbay.util.ajax.Continuation

2011-03-16 Thread Juan Pablo Gardella
) at org.mortbay.thread.QueuedThreadPool$PoolThread.run(QueuedThreadPool.java:582) Can u please help??? On Wed, Mar 16, 2011 at 5:58 AM, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: http://code.google.com/p/gwt-activemq/ is compatible with GWT 2.2? See http://groups.google.com/group

Re: Error: uncaught exception: com.google.gwt.event.shared.UmbrellaException: One or more exceptions caught, see full set in UmbrellaException#getCauses

2011-03-16 Thread Juan Pablo Gardella
Paste the complete stacktrace Juan 2011/3/16 Mgr gan.tan...@gmail.com In Mozilla browser. NetBean IDE 6.9 run the below code throws the exception Error: uncaught exception: com.google.gwt.event.shared.UmbrellaException: One or more exceptions caught, see full set in

Re: One Session(HTTP) for multiple GWT-Modules?

2011-03-16 Thread Juan Pablo Gardella
The modules is in client side. Session is in the server side. Juan 2011/3/16 Johannes Stein johannes.st...@googlemail.com hello, im implementing a little online-game with gwt. this game contains two modules - one ui for the game itself and a seperate user-area. if a user is logged-in into

Re: One Session(HTTP) for multiple GWT-Modules?

2011-03-16 Thread Juan Pablo Gardella
? Is there a way to rewrite the url like in JSP or Servlets? On 16 Mrz., 18:47, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: The modules is in client side. Session is in the server side. Juan 2011/3/16 Johannes Stein johannes.st...@googlemail.com hello, im

Re: MySQL server in development mode

2011-03-15 Thread Juan Pablo Gardella
-java-5.1.15-bin.jar/ classpathentry kind=output path=war/WEB-INF/classes/ /classpath On 9 מרץ, 18:49, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: Is classpath error problem. Show the .classpath file Juan 2011/3/9 Erel Segal erel...@gmail.com I added a mysql

Re: Can not run GWT application?

2011-03-15 Thread Juan Pablo Gardella
Follow this instructions http://code.google.com/webtoolkit/gettingstarted.html http://code.google.com/webtoolkit/gettingstarted.html 2011/3/14 Quoc Hoan nmqh...@gmail.com I created a GWT hello project following these instruction in this document:

Re: GWT 2.2 and gwt-maps.jar not compatible

2011-03-15 Thread Juan Pablo Gardella
Compile the sources with gwt 2.2 2011/3/15 culov cul...@gmail.com This problem here. Is there a solution to this? On Feb 13, 3:34 pm, pac parvez.chau...@gmail.com wrote: Just upgraded to GWT 2.2 and getting in error in project compilation, looks gwt-maps library no longer compatible.

Re: Manage dependent GWT projects with Eclipse

2011-03-15 Thread Juan Pablo Gardella
You can use maven and add sources dependencies: dependency groupIdjavax.inject/groupId artifactIdjavax.inject/artifactId version1/version classifiersources/classifier scopeprovided/scope typejar/type /dependency Juan 2011/3/15 Samuru Jackson samurujack...@googlemail.com Hi, I have a project

Re: element type web-app must match

2011-03-15 Thread Juan Pablo Gardella
Change http://java.sun.com/dtd/web-app_2_3.dtd; for 2.5 Juan 2011/3/15 QCS Info i...@quinlancomputing.com Noobie here. I want to run the StockWatcher example. I have ran in development mode. After a successful GWT 2.2.0 build in Eclipse Helios 3.6.1, while attempting to deploy the

Re: GWT in Eclipse class load order

2011-03-14 Thread Juan Pablo Gardella
/ org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6/ classpathentry kind=output path=war/WEB-INF/classes/ /classpath On Mar 11, 8:17 am, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: 1) Can you post the code in com.gwt.ReportGeneration.server.ReportGenerationServiceImpl. getReport

Re: Need Help for gwt-rpc mysql database connectivity

2011-03-14 Thread Juan Pablo Gardella
This help? http://stackoverflow.com/questions/2297356/mysqlnontransientconnectionexception-in-jdbc-program-at-run-time http://stackoverflow.com/questions/2297356/mysqlnontransientconnectionexception-in-jdbc-program-at-run-time Juan 2011/3/14 Dilip Rathod rathod...@gmail.com I can gwt-rpc

Re: DropDown Button

2011-03-14 Thread Juan Pablo Gardella
+1 2011/3/14 Marco Gadaleta gadaleta.ma...@gmail.com Nothing??? On Wed, Mar 9, 2011 at 1:53 PM, gadaleta.marco gadaleta.ma...@gmail.comwrote: hello everyone, there a way to create a button in gwt like gmail more actions button without using external library? Thx, hope you can help me.

Re: How to send an Email with GWT to a specific Address?

2011-03-13 Thread Juan Pablo Gardella
=javamail.sqlid=18274Juan 2011/3/12 antrox y...@live.de This example if fully working? I dont understand how it works to be honest. Where is the SMPT Server set up? And there is no password required? antrox On 11 Mrz., 14:46, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote

Re: GWT in Eclipse class load order

2011-03-11 Thread Juan Pablo Gardella
1) Can you post the code in com.gwt.ReportGeneration.server.ReportGenerationServiceImpl. getReport(ReportGenerationServiceImpl.java:31)? 2) Can you attach .classpath? Juan 2011/3/10 azuniga alessandro.zun...@gmail.com Is there a way to tell the GWT project which order to load the classes in

Re: How to send an Email with GWT to a specific Address?

2011-03-11 Thread Juan Pablo Gardella
already? where i just have to put my text into it :)`? i hope u understood me. regards On 11 Mrz., 06:20, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: Can make a rpc call? If yes do in plain Java in the server side. Juan 2011/3/10 antrox y...@live.de Hello Guys

Re: How to send an Email with GWT to a specific Address?

2011-03-11 Thread Juan Pablo Gardella
? Another API? antrox On 11 Mrz., 14:25, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: If you use Spring you can use MailProvider. Juan 2011/3/11 antrox y...@live.de Hello, yes, i know how to save the data into an arraylist and send it to the server via RPC calls

Re: java.lang.NoClassDefFoundError: com/google/gwt/user/client/rpc/IsSerializable

2011-03-11 Thread Juan Pablo Gardella
This error happen if you put gwt-server.jar in ear/lib? Make a test and tell me Juan 2011/3/11 András Csányi sayusi.a...@gmail.com Hi all! I'm developing a small application and when my application calls the server I get this error message on server side: 15:43:42,725 ERROR

Re: Unable to run GWTP app after migration to 2.2

2011-03-10 Thread Juan Pablo Gardella
You need gin 1.5. This version is compatible with GWT 2.2.0 2011/3/9 natas ribeiro.si...@gmail.com I'm having the same issue :s On Feb 21, 9:18 pm, Karthik karthik...@gmail.com wrote: I need a solution to the following problem : I am running eclispe 3.6, GWT 2.2, Guice 3.0 rc2, gin 10

Re: GWT Designer - full version

2011-03-10 Thread Juan Pablo Gardella
http://code.google.com/webtoolkit/tools/gwtdesigner/index.html 2011/3/10 Boris Lenzinger boris.lenzin...@gmail.com Can you give the URL where you found this text please ? Boris 2011/3/10 Eve ng8...@gmail.com I understand the update site is to install the plug-in for Eclipse. However, on

Re: EventBus necessity

2011-03-10 Thread Juan Pablo Gardella
The reason is explained here: http://dl.google.com/io/2009/pres/Th_0200_GoogleWebToolkitArchitecture-BestPracticesForArchitectingYourGWTApp.pdf http://dl.google.com/io/2009/pres/Th_0200_GoogleWebToolkitArchitecture-BestPracticesForArchitectingYourGWTApp.pdf Juan 2011/3/10 Alexis10

Re: How to send an Email with GWT to a specific Address?

2011-03-10 Thread Juan Pablo Gardella
Can make a rpc call? If yes do in plain Java in the server side. Juan 2011/3/10 antrox y...@live.de Hello Guys, i wanted to make a small webshop and how can i send an email with GWT to specific Address? I wanted to write some TEXT into an ArrayList and then generate from the ArrayList an

Re: Using one Activity on two different places, with different funtionallity

2011-03-09 Thread Juan Pablo Gardella
You must define 2 places. In one place put the add button in the other place put the remove button. 2011/3/9 Alex alec.lin...@gmail.com Hello! I'am new to gwt and would like some help regardning Activities and Places. I got two different pages (places) where I would like to use the same

Re: java.util.ConcurrentModificationException after installing GWT 2.2

2011-03-09 Thread Juan Pablo Gardella
Is SmartGWT compatible with GWT 2.2? See http://groups.google.com/group/google-web-toolkit-contributors/browse_thread/thread/3171958b76f90ddb Juan 2011/3/9 tdk kloe...@ics.de After installing GWT 2.2.0 I keep getting the following error when trying to start my app in Dev Mode: init:

Re: Button click event handling in a FlexTalbe using MVP (GWT 2.2)

2011-03-09 Thread Juan Pablo Gardella
Add the handler for every button. I don't understand your problem Juan 2011/3/9 seongjoo seongjoo@gmail.com Hello, I am having some trouble with handling button click event when the button is a widget of a FlexTable utilizing MVP framework. Getting a selected row of the FlexTable is

Re: MySQL server in development mode

2011-03-09 Thread Juan Pablo Gardella
Is classpath error problem. Show the .classpath file Juan 2011/3/9 Erel Segal erel...@gmail.com I added a mysql server to the default GWT application. I put the mysql connector jar in the lib folder under WEBINF, and also added it to the build path. I ran the web application in development

Re: External Tomcat in hosted mode

2011-03-09 Thread Juan Pablo Gardella
Try download an emtpy eclipse and configure it again. And use the plugin for GWT 2.0.4, no for GWT 2.2.0. It woks. Juan 2011/3/9 Eduardo Palma eduardo.palma...@gmail.com I'm working on a project that's currently using: GWT - 2.0.4 Spring - 3.0.5 Hibernate - 3.3.1 Maven - 2.2.1 Google

<    4   5   6   7   8   9   10   >