Re: DataGrid, Activity/Place don't work on IE7

2011-11-16 Thread Juan Pablo Gardella
Anyone? 2011/11/15 Juan Pablo Gardella gardellajuanpa...@gmail.com Hi folks! I spent hours to try to resolve an error that only happen in IE7. In IE9, Chome and Firefox works fine, so I think perhaps is a bug. Is related with DataGrid and change places. The error happen when you change via

Re: URL Not FOUND

2011-11-16 Thread Juan Pablo Gardella
When you run the application inside Eclipse appear the URL inside the *Development Mode*. 2011/11/16 learning coding learning.codin...@gmail.com Hi i am trying to learn gwt. i have created a rpc program with the help of the tutorial. But When I run the web application i cant found the URL to

Re: Updating a single row (or a cell) in a DataGrid with a ListProvider

2011-11-16 Thread Juan Pablo Gardella
Check here: http://stackoverflow.com/questions/6202982/how-to-programmatically-update-specific-row-in-gwt-celltable Again Thomas Broyer help. Is about CellTable, but I think is similar to DataGrid. 2011/11/16 Maero Polo maerop...@gmail.com Hello, I am using a DataGrid and sadely, I have to

Re: What Major Companies Use GWT???

2011-11-16 Thread Juan Pablo Gardella
Google use GWT. 2011/11/16 Santosh kumar kopp@gmail.com My company uses GWT, Objectify, Google App Engine, it is an online accounting application. www.AccountingGuru.in http://www.accountingguru.in On Thu, Oct 28, 2010 at 10:41 PM, Harpal Grover harpal.gro...@gmail.comwrote: Ok so

Re: DataGrid, Activity/Place don't work on IE7

2011-11-16 Thread Juan Pablo Gardella
I open an issue. http://code.google.com/p/google-web-toolkit/issues/detail?id=6996 On 16 nov, 04:14, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: Anyone? 2011/11/15 Juan Pablo Gardella gardellajuanpa...@gmail.com Hi folks! I spent hours to try to resolve an error

Re: Datebox customisation

2011-11-16 Thread Juan Pablo Gardella
Point 1 you can use showRangeHandler: getMyDatePicker().addShowRangeHandlerAndFire(...); Then there you can enable disable dates. @Override public void onShowRange(ShowRangeEventDate event) { Ranges rangos = buildRanges(event.getStart(), event.getEnd()); //here you

Re: abstract classes in a different package and compile error

2011-11-16 Thread Juan Pablo Gardella
[ERROR] no source info: public abstract class com.sayusiando.java.gwt.lib.salib.grid.abstracts.GridAbstract Add you source files to your classpath? 2011/11/16 András Csányi sayusi.a...@gmail.com Dear All, There is a beautiful idea in my mind to split my application to different, logical

Re: abstract classes in a different package and compile error

2011-11-16 Thread Juan Pablo Gardella
groupIdjavax.inject/groupId artifactIdjavax.inject/artifactId version1/version classifiersources/classifier scopeprovided/scope typejar/type /dependency See provided scope. 2011/11/16 András Csányi sayusi.a...@gmail.com On 16 November 2011 15:46, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote

Re: Using beanutils in my maven project

2011-11-16 Thread Juan Pablo Gardella
You need to add dependency jar in your pom.xml (with classifier) and define a xml module. For example I add jsr330 to my project in this way: Add sources to classpath: dependency groupIdjavax.inject/groupId artifactIdjavax.inject/artifactId version1/version classifiersources/classifier

Re: Google Plugin for Eclipse (GPE) is Now Open Source

2011-11-16 Thread Juan Pablo Gardella
Thx!! 2011/11/16 Alain Ekambi jazzmatad...@googlemail.com Now this is a GREAT news. I ve been waiting for this for so long. Another great contrib to the open source community from Google. Thx. 2011/11/16 Eric Clayberg (Google) clayb...@google.com Today is quite a milestone for the

DataGrid, Activity/Place don't work on IE7

2011-11-15 Thread Juan Pablo Gardella
Hi folks! I spent hours to try to resolve an error that only happen in IE7. In IE9, Chome and Firefox works fine, so I think perhaps is a bug. Is related with DataGrid and change places. The error happen when you change via placeController.goTo(place) to a place where I have a datagrid. I make a

Re: Is the session needed?

2011-11-11 Thread Juan Pablo Gardella
Yes you can. Use the session if you need. 2011/11/11 Filippo De Luca filosgang...@gmail.com Hi all, I'm working on a GWT 2.3 app. I notice app uses the session to store login info and other stuff. There is a callback intercept the expired session and handle it. My question is: is in a GWT

Re: GWT Developer Plugin for Firefox 8

2011-11-10 Thread Juan Pablo Gardella
Awesome Alan, is very fast!!! 2011/11/10 Igor Lysak lysak.i...@gmail.com Thanks a lot, Alan! Good work! On Nov 10, 12:11 pm, Alan Leung acle...@google.com wrote: Alright I have built and tested it for all platforms Have fun!

Re: New To GWT and More

2011-11-05 Thread Juan Pablo Gardella
I recommend an old book, but is very good to start. http://www.gwtapps.com/ 2011/11/5 matthew poplin mattpop...@gmail.com hey guys i am interested in knowing more about GWT and was wanting to learn what it can do and everything. i have seen like 2 videos of it and was pretty impressed. i

Re: Trouble figuring out why Serialization is breaking down

2011-11-04 Thread Juan Pablo Gardella
You don't have in classpath the sources of com.cme.clearing.common.xml.XmlNode. This is the cause. 2011/11/4 laredotornado laredotorn...@zipmail.com Hi, I'm trying to pass an object over RPC but the call is failing with a com.google.gwt.user.client.rpc.SerializationException exception.

Re: Trouble figuring out why Serialization is breaking down

2011-11-04 Thread Juan Pablo Gardella
puff, ignore the last mail. 2011/11/4 Juan Pablo Gardella gardellajuanpa...@gmail.com You don't have in classpath the sources of com.cme.clearing.common.xml.XmlNode. This is the cause. 2011/11/4 laredotornado laredotorn...@zipmail.com Hi, I'm trying to pass an object over RPC

Re: Trouble figuring out why Serialization is breaking down

2011-11-04 Thread Juan Pablo Gardella
Do you have a public/package default constructor? 2011/11/4 Juan Pablo Gardella gardellajuanpa...@gmail.com puff, ignore the last mail. 2011/11/4 Juan Pablo Gardella gardellajuanpa...@gmail.com You don't have in classpath the sources of com.cme.clearing.common.xml.XmlNode

Re: Trouble figuring out why Serialization is breaking down

2011-11-04 Thread Juan Pablo Gardella
to get more specific information about why its failing? Thanks, - Dave On Nov 4, 9:37 am, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: Do you have a public/package default constructor? 2011/11/4 Juan Pablo Gardella gardellajuanpa...@gmail.com puff, ignore

Re: Create a jaxb source gwt module

2011-11-04 Thread Juan Pablo Gardella
-1 i don't use and I wan't more dependencies. 2011/11/4 Blessed Geek blessedg...@gmail.com Looks like a lot of people are sharing XML /jaxb annotated dto's between gwt client and server. Don't you think it is time for gwt team to include a gwt-sanitized jaxb source module? - since everyone

Re: Client Server Rpc communication and adding a database in server side.

2011-11-03 Thread Juan Pablo Gardella
Try remove GAE feature in eclipse and remove GAE dependency jar. 2011/11/3 sasi sasindran sasindran@gmail.com Hi all, I am new comer to the gwt word. I make a sample project with client server rpc and database(mySql).When am invoking the service from client through the

Re: Game Development Resources for GWT

2011-11-01 Thread Juan Pablo Gardella
Did you see http://code.google.com/p/playn/ ? 2011/11/1 James Butler jnbutler1...@gmail.com Are there any game development resources for creating a web game using GWT? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Re: Embedding and Integrating GWT in Web Application

2011-10-30 Thread Juan Pablo Gardella
GWT compileb by default to ofuscated javascript. So is very difficult understand the code. Anyway, I think that you must focalize in protect the data. You can make the list that you put with gwt components. 2011/10/30 Ari ari.brandeis.k...@gmail.co Hi, From tutorials I understand that I can

Re: Integration of spring with GWT

2011-10-28 Thread Juan Pablo Gardella
Check this threadhttp://groups.google.com/group/google-web-toolkit/browse_thread/thread/7e46e8c33e7ee5da?pli=1. You have a gwt sample with jpa2, spring 3, spring security. Juan 2011/10/28 vijaya bhasker sudigali vijay.sudig...@gmail.com Hi Guys, I am Vijay ,i am facing a problem

Re: how create project from pom??

2011-10-27 Thread Juan Pablo Gardella
I don't use m2eclipse plugin in eclipse. I do *mvn eclipse:eclipse *and import the project in eclipse and works fine. The one thing that I must *do by hand *in eclipse is enable GWT project nature. To do this, in project properties, in google category option Google Web Toolkit press *Apply.* * *

Re: Activities and Places, how to deal with nested views ?

2011-10-26 Thread Juan Pablo Gardella
Did you see this post http://tbroyer.posterous.com/gwt-21-activities-nesting-yagni? 2011/10/26 Gervais.b gervai...@gmail.com Dear GWT profesionnals, I try to create an little app who allow users to make search. The main screen contains some inputs and a TabLayoutPanel who contains two set

Re: Error when migrating to GWT 2.4.0

2011-10-26 Thread Juan Pablo Gardella
Put GWT 2.4 in first place in the classpath. 2011/10/26 Tiago Rinck Caveden cave...@gmail.com Hello all, I'm trying to migrate to GWT 2.4.0 in order to use some of its features and bug fixes, but when I try to load the application in Eclipse I have the following error: [WARN] Error for

Re: HTTPSession Cookie Changed

2011-10-26 Thread Juan Pablo Gardella
Are you use clusters? reverse proxy? 2011/10/26 Niraj Salot salotni...@gmail.com Dear all, We are facing some serious issue. After accessing the application for some time , We are having timeout issue. Although the timeout is set to 2 hours , we are seeing that session are expired only

Re: Chrome 15, GWT DMP Plugin crashes

2011-10-26 Thread Juan Pablo Gardella
I use Chrome v16 dev and works. 2011/10/26 pjspychala tomatoactiva...@gmail.com After upgrading to a new version of the browser (Chrome 15) it seems that the plugin no longer likes whats going on. I've tried uninstalling and reinstalling the plugin without success. What happens: Webapp

Re: Deferred binding, how to see generated java source code?

2011-10-25 Thread Juan Pablo Gardella
I think you can use gen parameter in gwt compilerhttp://code.google.com/intl/es/webtoolkit/doc/latest/DevGuideCompilingAndDebugging.html#DevGuideCompilerOptions 2011/10/25 ksurakka kari.sura...@gmail.com Hello, I'm using deferred binding to accomplish one task in my GWT application. Is there

Re: Client-side object serialization

2011-10-25 Thread Juan Pablo Gardella
Did you see http://code.google.com/p/piriti/? 2011/10/25 Bruno Sandivilli bruno.sandivi...@gmail.com H alli, i have an Object that is created in the client side, how can i send this object via JSON to se server and re-instatiante it ? Thanks in advance -- You received this message because

Re: GWT and SSO with windows account

2011-10-21 Thread Juan Pablo Gardella
Check http://stackoverflow.com/questions/545667/how-to-use-windows-login-for-single-sign-on-and-for-active-directory-entries-for 2011/10/21 Foermchen82 juergen.f...@gmx.de Hi everybody, I want to implement a SSO solution for my GWT application. The user should be automaticly logged in with

Re: GWT and SSO with windows account

2011-10-21 Thread Juan Pablo Gardella
Pablo Gardella gardellajuanpa...@gmail.com wrote: Checkhttp:// stackoverflow.com/questions/545667/how-to-use-windows-login-fo... 2011/10/21 Foermchen82 juergen.f...@gmx.de Hi everybody, I want to implement a SSO solution for my GWT application. The user should

Re: Upgrade from 2.0 to 2.4 is failing

2011-10-13 Thread Juan Pablo Gardella
1) Try clean cache browser 2) Recompile again the project and first test if it works in server mode. 3) Try in dev mode. Juan 2011/10/13 saawan ssawan...@gmail.com folks - kindly help me in the right direction as I am a newbie. FYI, i researched this problem and have not found any solution

Re: Hi

2011-10-12 Thread Juan Pablo Gardella
What's the error? and what version of GWT are you use? 2011/10/12 prasad korrapati korrapatipras...@gmail.com I am working with GWT and GXT (2.3). I am able to run my GWT application in Firefox and Safari. But When i ran it in Chrome it's not working properly . I think plugin problem in

Re: Binder problem in ui.xml file?

2011-10-12 Thread Juan Pablo Gardella
The error said that you have two elements in g:center. You must put only one. 2011/10/12 David Fernando fernando33...@gmail.com Compile gwt application, I got the error show[Error] Element may only contain a single child element, but found g:FlowPanel ui:field='flow1'and g:FlowPanel

Re: not injecting an entityManger @PersistenceContext

2011-10-12 Thread Juan Pablo Gardella
Can you share the stackt trace? 2011/10/12 Norman Klingspor norman.klings...@googlemail.com Hi, I'm trying to integrate an EJB-Project (which is connected to a database by hibernate) into my GWT (in more detail move from CDI-Weld implementation to GWT). I created a new ejb-project only

Re: not injecting an entityManger @PersistenceContext

2011-10-12 Thread Juan Pablo Gardella
) [:1.7.21] at org.jboss.ejb3.tx2.impl.CMTTxInterceptor.invokeInOurTx(CMTTxInterceptor.java: 247) [:0.0.2] ... 67 more On 12 Okt., 17:04, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: Can you share the stackt trace? 2011/10/12 Norman Klingspor norman.klings

Re: RPC fails with 404 after upgrade to 2.4

2011-10-12 Thread Juan Pablo Gardella
404 error?. Do the project compile? 2011/10/12 wytten dale.wyttenb...@gmail.com I've got an old maven-based GWT project that is working with GWT 2.0.3 and gwt-maven-plugin 1.2, but when I try to upgrade to GWT 2.4 and gwt- maven-plugin 2.4, all of the service calls fail with a 404 error. Is

Re: Uncaught exception escaped

2011-10-11 Thread Juan Pablo Gardella
Try put a breakpoint in MyTable.java:42) and see what object is null. 2011/10/11 SCK guyedj...@gmail.com Hi, Please, I need help for this exception. I'am using GPE 2.4 with Eclipse. 10:22:53.421 [ERROR] [de_vogella_gwt_helloserver] Uncaught exception escaped

Re: Uncaught exception escaped

2011-10-11 Thread Juan Pablo Gardella
What's the 42 line of MyTable ? 2011/10/11 SCK guyedj...@gmail.com Tks for your help I try to put the breakpoint, but i don't understand. I start in Java. See below my code : package de.vogella.gwt.helloserver.client.table; import java.util.List; import

Re: Uncaught exception escaped

2011-10-11 Thread Juan Pablo Gardella
It seems rows is null. 2011/10/11 SCK guyedj...@gmail.com Hi, This is the line 42 : for (MyUser myUser : rows) 42 for (MyUser myUser : rows){ 43 this.setText(i, 0, myUser.getId()); 44 this.setText(i, 1,

Re: need help

2011-10-10 Thread Juan Pablo Gardella
Check this threadhttp://groups.google.com/group/google-web-toolkit/browse_thread/thread/e85f7739a669f2b3/065672ca514768a5?pli=1 2011/10/10 santlal vishwakarma santlal.vishwakarma1...@gmail.com I am getting following errors while compiling multisearch application and not able to solve it. I

Re: JDO Key Serialize

2011-10-10 Thread Juan Pablo Gardella
toString()? 2011/10/10 Bruno Sandivilli bruno.sandivi...@gmail.com How can i serialize a Key (JDO) to user in GWT? No source code is available for type com.google.appengine.api.datastore.Key; -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: JDO Key Serialize

2011-10-10 Thread Juan Pablo Gardella
have an implementation, 2011/10/10 Juan Pablo Gardella gardellajuanpa...@gmail.com toString()? 2011/10/10 Bruno Sandivilli bruno.sandivi...@gmail.com How can i serialize a Key (JDO) to user in GWT? No source code is available for type com.google.appengine.api.datastore.Key; -- You

Re: I made 3 new GWT Youtube tutorial videos.

2011-10-09 Thread Juan Pablo Gardella
Thanks! 2011/10/9 Brandon Donnelson branflake2...@gmail.com My GWT Tutorial Playlist - http://www.youtube.com/playlist?list=PL29B4CCEF46EFF4F2feature=viewall GWT install on Ubuntu - http://www.youtube.com/watch?v=bkKxqynHrrQ GWT install on Windows -

Re: GWT and Databases

2011-10-09 Thread Juan Pablo Gardella
See this threadhttp://groups.google.com/group/google-web-toolkit/browse_thread/thread/7e46e8c33e7ee5da. There I share a simple gwt sample that use JPA Spring 2011/10/9 Brandon Donnelson branflake2...@gmail.com Here are some of my MySql JDBC notes here:

Re: One-To-Many RElations Serialization

2011-10-07 Thread Juan Pablo Gardella
What's your question? 2011/10/6 Bruno Sandivilli bruno.sandivi...@gmail.com I'm getting this error when my RPC returns a list of a custom object: Type 'org.datanucleus.sco.backed.List' was not included in the set of types which can be serialized by this SerializationPolicy or its Class object

Re: I made a RequestFactory Demo (w/source)

2011-10-07 Thread Juan Pablo Gardella
Thanks for share! 2011/10/7 Brandon Donnelson branflake2...@gmail.com Demo - http://demogwtrequestfactory.appspot.com/ Wiki and Source - http://code.google.com/p/gwt-examples/wiki/DemoRequestFactory Seems there some way to get the annotation processor to work automatically, but I'm not

Re: One-To-Many RElations Serialization

2011-10-07 Thread Juan Pablo Gardella
compatible with GWT 2.4.0 and how integrate in a sample project. Juan 2011/10/7 Bruno Sandivilli bruno.sandivi...@gmail.com How can i serializa this ListMyClass ? 2011/10/7 Juan Pablo Gardella gardellajuanpa...@gmail.com What's your question? 2011/10/6 Bruno Sandivilli bruno.sandivi...@gmail.com

Re: java.text.MessageFormat working on client?

2011-10-06 Thread Juan Pablo Gardella
something here, but I just don't know what! On Oct 5, 3:59 pm, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: Is the class and the method do you need are here http://code.google.com/intl/es/webtoolkit/doc/latest/RefJreEmulation, yes. 2011/10/5 Thiago Coraini tcora...@gmail.com

Re: Quick Question (Web Development Noobie)

2011-10-06 Thread Juan Pablo Gardella
You must have in some points share data (in your case), if you want N clients see same things. So a DB is fine. If you don't use GWT you have the same problem. Think that GWT compile to javascript, so if you make singletons, are singletons per tab in browser. Juan. 2011/10/6 David Illescas

Re: java.text.MessageFormat working on client?

2011-10-05 Thread Juan Pablo Gardella
Is the class and the method do you need are herehttp://code.google.com/intl/es/webtoolkit/doc/latest/RefJreEmulation.html, yes. 2011/10/5 Thiago Coraini tcora...@gmail.com Hello all, I'm relatively new to GWT. I'm actually developing a web application using SmartGWT, don't know if you've

Re: About creating 3D maps using GWT

2011-10-05 Thread Juan Pablo Gardella
Do you see playn http://code.google.com/p/playn/? Perhaps it helps to you 2011/10/5 rahul shambhunira...@gmail.com Hello, I am new to gwt.I am interested in working on 3D maps using GWT.And also add some widgets like check boxes,textboxes,buttons to my 3D maps on my html page.I also want

Re: Developers, please don't ignore reported GWT issues.

2011-10-04 Thread Juan Pablo Gardella
+1 2011/10/4 Stanislav Ievlev stanislav.iev...@gmail.com +1 04.10.2011 12:40 пользователь Martin Ždila m.zd...@gmail.com написал: Hello GWT is a perfect toolkit but there are still many small but frustrating issues open in bug-tracker and GWT developer team seems to be ignoring them

Re: GWT 2 Servlet

2011-09-30 Thread Juan Pablo Gardella
See http://code.google.com/intl/es-419/webtoolkit/doc/latest/DevGuideServerCommunication.html 2011/9/30 Navindian navind...@gmail.com Hi foks, I wish to have GWT component talk to a Servlet. Any quick suggestion? Thanks Naveen Gayar -- You received this message because you are

Re: Module Load Failure with GWT 2.4.0 (but not with 2.3.0)

2011-09-30 Thread Juan Pablo Gardella
See this pom.xmlhttp://code.google.com/p/google-web-toolkit/source/browse/trunk/samples/mobilewebapp/pom.xml and fow define gwt-maven-plugin. PD: The gwt-user jar you must put in scope provided. 2011/9/30 K H kon...@gmx.at I use GWT with Maven and with GWT 2.3.0, mvn clean gwt:run works

Re: GWT and IE8

2011-09-29 Thread Juan Pablo Gardella
What gwt version are you use? Are you modify user.agent http://code.google.com/p/google-web-toolkit/source/browse/trunk/user/src/com/google/gwt/user/UserAgent.gwt.xmlproperty in your module? 2011/9/29 mkn m.kho...@gmail.com Hi I developed an application in GWT. It worked perfectly in Chrome

Re: GWT and IE8

2011-09-29 Thread Juan Pablo Gardella
-binding property named user.agent may not be redefined. [ERROR] Line 40: Unexpected exception while processing element 'define- property' On Sep 29, 9:51 pm, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: What gwt version are you use? Are you modify user.agent http

Re: [gwt-contrib] Any interest in having css3pie integrated with GWT?

2011-09-28 Thread Juan Pablo Gardella
+1 2011/9/28 Jeff Larsen larse...@gmail.com To be blunt, Trying to get styling to work right in IE is somewhat of a nightmare. Especially with the lack of css3 support. There is a library out there that fixes some of the major headaches css3pie. http://css3pie.com/ border-radius,

Re: Do I have to use DTO if I use GWT + JPA?

2011-09-26 Thread Juan Pablo Gardella
See this threadhttp://groups.google.com/group/google-web-toolkit/browse_thread/thread/7e46e8c33e7ee5da?pli=1 2011/9/25 Warren Tang warren.c.t...@gmail.com Some say transferring entities cross the wire may cause problems, e.g. lazy loading. But I feel reluctant to introduce DTO. It's

Re: GWT+hibernate annotations+persisting Enum

2011-09-26 Thread Juan Pablo Gardella
Can you share the stack trace? 2011/9/26 Marko Borges markoborge...@gmail.com Hey everyone! I am having a problem in persisting a postgres enum using hibernate and GWT. When i follow some instructions that i found around Web, it says that client module does not support one class used to

Re: Performance Tip for IE browsers : Java garbage collection is NOT Javascript garbage Collection

2011-09-26 Thread Juan Pablo Gardella
Thanks for share!!! 2011/9/26 Rokesh rjan...@gmail.com Hi All, I've been working on GWT for a while now and noticed something important and peculiar. In GWT you code in Java and almost automatically assume Java garbage collection (because that's how you code). In this code sample:

Re: GWT+hibernate annotations+persisting Enum

2011-09-26 Thread Juan Pablo Gardella
... 2011/9/26 Juan Pablo Gardella gardellajuanpa...@gmail.com Can you share the stack trace? 2011/9/26 Marko Borges markoborge...@gmail.com Hey everyone! I am having a problem in persisting a postgres enum using hibernate and GWT. When i follow some instructions that i found around Web

Re: GWT+hibernate annotations+persisting Enum

2011-09-26 Thread Juan Pablo Gardella
(EnumType.STRING) public BoundType getType() { return this.type; } and then i call it Boundtype bt = new Boundtype(name, BoundType.UPPER); hibernateTemplate.save(bt); and says that i try to insert type as Integer ... Thanks for trying to help me 2011/9/26 Juan Pablo Gardella gardellajuanpa

Re: GWT+hibernate annotations+persisting Enum

2011-09-26 Thread Juan Pablo Gardella
. Am I correct? Thanks Juan, really!!! 2011/9/26 Juan Pablo Gardella gardellajuanpa...@gmail.com What jpa providers (and version) are you use? 2011/9/26 Marko Borges markoborge...@gmail.com Well, thanks... I tried it and now says it tries to insert integer but i dont know why

Re: GWT+hibernate annotations+persisting Enum

2011-09-26 Thread Juan Pablo Gardella
/9/26 Juan Pablo Gardella gardellajuanpa...@gmail.com Sure, hibernate 3.2.5 not support jpa2 :), yes you must update your hibernate version, for example to 3.6.x. Version 4 I'm not sure if is stable. 2011/9/26 Marko Borges markoborge...@gmail.com Guess I have to update my Hibernate. I am

Re: GWT+hibernate annotations+persisting Enum

2011-09-26 Thread Juan Pablo Gardella
, columnDefinition = text) public String getNodename() { return this.nodename; } public void setNodename(String nodename) { this.nodename = nodename; } @Enumerated(EnumType.STRING) public BoundType getType() { return this.type; } ... 2011/9/26 Juan Pablo Gardella

Re: CellTable styles incorrectly on IE9

2011-09-24 Thread Juan Pablo Gardella
IE9 is supported sinde GWT 2.3.0, what version of GWT are you use? 2011/9/24 drtman drt...@gmail.com If I take the example code directly from the GWT API docs for CellTable (i.e. the code for an entry point module that creates and displays a contact table with a manual list), the table that

Re: flextable to celltable

2011-09-22 Thread Juan Pablo Gardella
See this threadhttp://groups.google.com/group/google-web-toolkit/browse_thread/thread/f539d58327a351d3?pli=1, perhaps help to you. 2011/9/22 misty periard misty.peri...@gmail.com I'm swapping out existing flextables to celltables in the hopes if getting better performance and to use the sort

Re: Why is my Inherits causing all the inherited module to run its onModuleLoad? :?

2011-09-21 Thread Juan Pablo Gardella
If is a reusable artifact, you don't need an entry point. 2011/9/21 darkflame darkfl...@gmail.com I was simply trying to reuse code from one project in another. I've done this many times before, by simply adding the project to the build path in Eclipse. This normally has worked fine - I can

Re: Spring Security and GWT Caching Issue

2011-09-20 Thread Juan Pablo Gardella
+1 2011/9/20 Xephonic brent.peck...@gmail.com I've integrated Spring Security with GWT, and it appears to mostly work. I'm having a caching issue with the main html page in IE and Chrome, however. I've separated out Spring Security login to a login.jsp that redirects to my

Re: Beginner

2011-09-20 Thread Juan Pablo Gardella
You must do the connection to jdbc (or use JPA or similar) in server side, you can't connect to db in client side, becouse some classes are not emulated http://code.google.com/webtoolkit/doc/latest/RefJreEmulation.html . 2011/9/20 Daniel Gerep daniel.ge...@gmail.com Hi fellas, I know that

Re: scalable server backend for browser games

2011-09-12 Thread Juan Pablo Gardella
You can use Tomcat, but not standalone. You need load balance by software or hardware inclusive. A Big company use this type architecture for online games. 2011/9/9 Karel karel.cromb...@gmail.com Hey guys, I'm currently investigating the possibilities of using GWT to develop a facebook

Re: gwt-ms sql

2011-09-12 Thread Juan Pablo Gardella
You can't connect with jdbc in client side. You must connect in server side. 2011/9/12 Adilkun adilkun.ya...@gmail.com Hi, I can't connect to Microsoft Sql Server with GWT. I couldn't find sources about that problem. Can you help me? -- You received this message because you are subscribed

Re: JPA alternatives?

2011-09-12 Thread Juan Pablo Gardella
jdbc 2011/9/12 Jens jens.nehlme...@gmail.com In a current project I use JPA for persistence. JPA works and you can have a fast start with it but it has its pitfalls. For example having lazy attributes sounds nice but as soon as you have more complex logic and queries you want to fetch these

Re: JPA alternatives?

2011-09-12 Thread Juan Pablo Gardella
queries when have a lot of data. Juan 2011/9/12 Juan Pablo Gardella gardellajuanpa...@gmail.com jdbc 2011/9/12 Jens jens.nehlme...@gmail.com In a current project I use JPA for persistence. JPA works and you can have a fast start with it but it has its pitfalls. For example having lazy

Re: Quartz and slf4j in Eclipse

2011-09-12 Thread Juan Pablo Gardella
Add some logger implementation and the provider to the classpath, as log4j and sl4j-log4j. 2011/9/12 randal cobb rco...@gmail.com Hello all, I'm running into an annoying issue in DEV mode and I cant sem to properly Google a result... I have a servlet that uses Quartz scheduler in my app

Re: EntityProxy, AutoBeanVisitor and Hibernate lazy properties.

2011-09-09 Thread Juan Pablo Gardella
Hi Tiago, I use JPA2 (with Hibernate as a provider) in a GWT application. I use a *Filter *that put to null uninitialized properties in a transparent manner. So if you in service layer don't initialize the properties, this filter solve the problem of serialization. Check this

Re: relational persistence

2011-09-09 Thread Juan Pablo Gardella
Use javax validation APIhttp://java.sun.com/javaee/6/docs/api/javax/validation/constraints/package-summary.htmland not Hibernate validators, see the import import org.hibernate.validator.constraints.Length; Juan 2011/9/9 thiago borges martins tborgesmart...@gmail.com Hi, I have a problem

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

2011-09-09 Thread Juan Pablo Gardella
If someone can share a sample will be very helpfull. I use GWT-RPC with gwt-dispatch, but I want learn more about RF. 2011/9/9 Thomas Broyer t.bro...@gmail.com 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

Re: Gwt4Titanium Mobile 1.1.0 Preview: Introducing DevMode

2011-09-08 Thread Juan Pablo Gardella
Great job Alain!! Congrats. 2011/9/8 leandro borbosa leandrob...@googlemail.com I second Gal: great job Emitrom Team ! With DevMode this is a totally different story . I wonder how this work ? Honeslty i doubted this could even be possible. Did you wrote a plugin for Titanium Mobile

Re: Validation Messages i18n Client/Server

2011-09-08 Thread Juan Pablo Gardella
See gwt-vl http://gwt-vl.sourceforge.net/ 2011/9/8 Alex alexanderwolf...@googlemail.com Hey guys, I am using GWT on GAE and try to find a solution to write my validation classes only once. So far everything works very well besides some Regex-quirks. But now I struggle with my validation

Re: Why rpc requets calls arent operated independetly(concurrently) by methods in server-side code

2011-09-08 Thread Juan Pablo Gardella
There is one thread in client side. Javascript it's not multithread. 2011/9/8 wasyl wass...@gmail.com Hi. I've got below described problem: The client-side code calls a request, which starts downloading emails into server-side database. It takes a lot of time. At the same time another

Re: Searching for calendar library

2011-09-08 Thread Juan Pablo Gardella
http://code.google.com/p/gwt-cal/ 2011/9/8 Xavier xno...@gmail.com Hi, I'm searching for a library for a grahical calendar (agenda) with : - time (days of week) on horizontal axis - and other ressource on vertical axis Exemple :

Re: multithreading in Jetty(not exactly what I mean)

2011-09-07 Thread Juan Pablo Gardella
each request is handled by a different thread, but the servlet is a singleton. 2011/9/7 wasyl wass...@gmail.com Hi. I'm a newbie in GWT and my JAVA skills aren't to good as well. In order to learn these technologies I'm trying to implement an e-mail client. Time needed to get all messages

Re: Developing GWT App using Tomcat

2011-09-06 Thread Juan Pablo Gardella
I recommend use embeded jetty server in GWT Designer. The problem with mysql connection is not related with jetty. Can you paste the stracktrace error that you have? 2011/9/6 Ashwani ashw.ku...@gmail.com Hi, I was developing simple app using embeded jetty server in GWT Designer till i got

Re: Unable to parse module

2011-09-06 Thread Juan Pablo Gardella
Can you share the content of Main.gwt.xml? 2011/9/6 Fábio Marigo fabiomar...@gmail.com Could someone help me with the error below? I am having trouble trying to compile the GWT module. [INFO] Module file: C:\Desenvolvimento\eclipse\workspace\SLT\project-

Re: Unable to parse module

2011-09-06 Thread Juan Pablo Gardella
Only have this error when use maven? With eclipse, Can you run in dev mode? 2011/9/6 Juan Pablo Gardella gardellajuanpa...@gmail.com Can you share the content of Main.gwt.xml? 2011/9/6 Fábio Marigo fabiomar...@gmail.com Could someone help me with the error below? I am having trouble trying

Re: GWT : How to call SERVLET FROM GWT_SERVLET and How to return value from target servlet to source servlet?

2011-08-31 Thread Juan Pablo Gardella
Modularize. You can have a service pojo object and invoque this in both servlets. 2011/8/31 vaibhav bhalke bhalke.vaib...@gmail.com I have 2 servlets. One In GWT module i.e *BasicServiceImpl* extends RemoteServiceServlet implements BasicMassUpdateService and other servlet *TargetServlet*

Re: GWT does not use resource properties file from target, but the once in src/main/resources. How to make it with placeholders?

2011-08-31 Thread Juan Pablo Gardella
check the last post, perhaps help to you http://www.sencha.com/forum/showthread.php?114000-gwt-maven-plugin-and-the-filtering-issue 2011/8/31 mariyan nenchev nenchev.mari...@gmail.com Hi, I have gwt web project, which must use application.properties (on client side) loaded as TextResource in

Re: GWT does not use resource properties file from target, but the once in src/main/resources. How to make it with placeholders?

2011-08-31 Thread Juan Pablo Gardella
it. On Wed, Aug 31, 2011 at 3:14 PM, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: check the last post, perhaps help to you http://www.sencha.com/forum/showthread.php?114000-gwt-maven-plugin-and-the-filtering-issue 2011/8/31 mariyan nenchev nenchev.mari...@gmail.com Hi, I have

Re: Datepicker

2011-08-31 Thread Juan Pablo Gardella
See http://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/user/datepicker/client/DatePicker.html in the example of the javadoc. 2011/8/31 nic nicolas.ric...@gmail.com Hello, In my app, I have a datepicker. The format of my datepicker is dd.MM.. In firefox and google

Re: Click Listener on CellTableRow

2011-08-31 Thread Juan Pablo Gardella
You can extend CellTable and overwritte onBrowserEvent2. @Override protected void onBrowserEvent2(Event event) { super.onBrowserEvent2(event); String eventType = event.getType(); boolean isClick = click.equals(eventType); // Get the event target. EventTarget eventTarget =

Re: ActivityMapper with GIN

2011-08-30 Thread Juan Pablo Gardella
Check last comments in http://wanderingcanadian.posterous.com/hello-mvp-with-gin 2011/8/30 Thomas Broyer t.bro...@gmail.com If you only have instanceof checks, then you can use a GWT generator (see

Re: Url fetch

2011-08-30 Thread Juan Pablo Gardella
You can't use this class *java.net.URL, *see JRE Emulation Referncehttp://code.google.com/intl/es-419/webtoolkit/doc/latest/RefJreEmulation.html . 2011/8/30 Буяндалай buya99...@gmail.com i run this code. it's error. i type what's wrong. Please help me. import java.io.BufferedReader; import

Re: No persistence providers in GWT/OpenJPA service

2011-08-30 Thread Juan Pablo Gardella
This is not related to GWT, you don't define a persistence provider with the name *svntools-data. *Check this post http://stackoverflow.com/questions/1158159/no-persistence-provider-for-entitymanager-namedto see similar problem, but with Hibernate. 2011/8/30 MadOtis rco...@gmail.com Hello all,

Re: No persistence providers in GWT/OpenJPA service

2011-08-30 Thread Juan Pablo Gardella
war can't find the jar'ed persistence.xml file. On Tue, Aug 30, 2011 at 10:52 AM, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: This is not related to GWT, you don't define a persistence provider with the name *svntools-data. *Check this post http://stackoverflow.com/questions

Re: No persistence providers in GWT/OpenJPA service

2011-08-30 Thread Juan Pablo Gardella
calling one of the services that use it. Should my next step be to copy all the source for the DAOs and repackage it directly in my WAR? ...or should the GWT war be able to use them from their packaged JAR directly? On Aug 30, 11:22 am, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote

Re: No persistence providers in GWT/OpenJPA service

2011-08-30 Thread Juan Pablo Gardella
tried running it in server mode yet; I was testing locally in dev mode. But, I'll try running the war directly in Tomcat and see what happens; thank you for the suggestion. On Aug 30, 11:54 am, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: GWT war should be able

Re: Conditional CSS Updates

2011-08-29 Thread Juan Pablo Gardella
Interesting... +1 2011/8/29 rth rthol...@gmail.com Hi, I have a Conditional CSS block that calls isPortrait() at runtime and correctly renders the right rule based on its return value. My problem is that I cannot figure out how to get the condition to be reevaluated in the future (e.g.,

<    1   2   3   4   5   6   7   8   9   10   >