Re: Integration of spring with GWT

2011-10-30 Thread Bruno Sandivilli
this post looks like an 'framework email marketing', lol; 2011/10/30 Yaakov yaakov.chai...@gmail.com Or, you can check out GWT-Tools project which gives you integration with Spring. Also, very very easy AND it comes with sample applications that take you step by step. Just check out the code

Re: Drag drop

2011-10-29 Thread Bruno Sandivilli
2011/10/29 Celinio cel...@gmail.com Hi GWT developers, what can GWT offer regarding the drag and drop capabilities ? 1) Can i easily do some drag and drop, in the same web page, from one widget to another ? 2) Can i easily do drag and drop some file from the file explorer to a widget in a

Re: Drag drop

2011-10-29 Thread Bruno Sandivilli
+1 2011/10/29 Bruno Sandivilli bruno.sandivi...@gmail.com 2011/10/29 Celinio cel...@gmail.com Hi GWT developers, what can GWT offer regarding the drag and drop capabilities ? 1) Can i easily do some drag and drop, in the same web page, from one widget to another ? 2) Can i easily do

Re: a total GWT newbie needs help

2011-10-26 Thread Bruno Sandivilli
If you want to build a website, and do not know html, but you've heard about GWT, you are fine. With GWT you can easily create a simple website 'without the need to use HTML'. Start by installing the GWT enviorement, and deploying the sample app. 2011/10/26 Jeff Chimene jchim...@gmail.com On

Client-side object serialization

2011-10-25 Thread Bruno Sandivilli
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 you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Client-side object serialization

2011-10-25 Thread Bruno Sandivilli
Thank again Juan! I'll take a look at this library! 2011/10/25 Juan Pablo Gardella gardellajuanpa...@gmail.com 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

Re: Serialization Alternatives

2011-10-21 Thread Bruno Sandivilli
Anyone? 2011/10/18 Bruno Sandivilli bruno.sandivi...@gmail.com Hi, i'm serializing my objects with GSON, but i'm thinking in make a pattern in my solution, so i'm trying to understand how the GWT-RPC Serializtion works. Anyone have a good explication? Or some code demonstrating it? Thanks

Serialization Alternatives

2011-10-18 Thread Bruno Sandivilli
Hi, i'm serializing my objects with GSON, but i'm thinking in make a pattern in my solution, so i'm trying to understand how the GWT-RPC Serializtion works. Anyone have a good explication? Or some code demonstrating it? Thanks -- You received this message because you are subscribed to the Google

Re: One-To-Many RElations Serialization

2011-10-10 Thread Bruno Sandivilli
Thanks for the help from you guys! But, yes im using IsSEriazeble. I've changed my code to detachable in both classes, but, when i call: if(listMyClass.size() 0) { for (MyClass myClass : listMyClass) { return (pm.detachCopy(myClass.getMyInnerClassList())); } } return null; gives me : The class

Re: One-To-Many RElations Serialization

2011-10-10 Thread Bruno Sandivilli
c.gawkat.com On Mon, Oct 10, 2011 at 1:30 PM, Bruno Sandivilli bruno.sandivi...@gmail.com wrote: Thanks for the help from you guys! But, yes im using IsSEriazeble. I've changed my code to detachable in both classes, but, when i call: if(listMyClass.size() 0) { for (MyClass myClass

JDO Key Serialize

2011-10-10 Thread Bruno Sandivilli
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 group. To post to this group, send email to

Re: JDO Key Serialize

2011-10-10 Thread Bruno Sandivilli
()? 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 group

Re: One-To-Many RElations Serialization

2011-10-07 Thread Bruno Sandivilli
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 I'm getting this error when my RPC returns a list of a custom object: Type 'org.datanucleus.sco.backed.List

Re: One-To-Many RElations Serialization

2011-10-07 Thread Bruno Sandivilli
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 I'm getting this error when my RPC returns a list of a custom object: Type

Re: One-To-Many RElations Serialization

2011-10-07 Thread Bruno Sandivilli
'org.datanucleus.sco.backed.ArrayList' anyone? 2011/10/7 Bruno Sandivilli bruno.sandivi...@gmail.com Thanks Buddy! But if i'm not using Hibernate? I'm using pure GWT, do i have to use the filter in web.xml? How can i achieve this? Thanks 2011/10/7 Juan Pablo Gardella gardellajuanpa...@gmail.com

Issue with GWT Desginer

2011-10-06 Thread Bruno Sandivilli
I starred this issue here: http://code.google.com/p/google-web-toolkit/issues/detail?id=6864thanks=6864ts=1317928466 -- 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.

One-To-Many RElations Serialization

2011-10-06 Thread Bruno Sandivilli
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 could not be loaded. For security purposes, this type will not be serialized.

Re: How to intercept GWT RPC

2011-10-04 Thread Bruno Sandivilli
You dont need this, just use: HttpServletRequest request = this.getThreadLocalRequest(); 2011/10/4 Costa costa...@gmail.com Hi, I would like to encode information of the current session, such as the session Id, current user for each GWT RPC call, how can I add this in the RPC request and

Re: problem with upload/download of file

2011-10-04 Thread Bruno Sandivilli
Waht is the response you see in firebug? If its ok(e.g.: 200), it reached the servlet. 2011/10/4 Rodrigue Lagoue rlag...@googlemail.com Hi All, I have a problem with the use of the FileUpload widget in my current project. When submit the form, the request is correctly sent to the server

Re: Using window.open(), Chrome and extensions in GWT project..

2011-10-04 Thread Bruno Sandivilli
Adding another question to this: How can i get the handler for this opened window? 2011/10/4 Ben ben.falc...@gmail.com As a part of a larger GWT project we have some native JavaScript in which we use window.open to create a new Chrome instance. So far so good. But we have some Chrome

Re: twitter4j + GWT

2011-09-29 Thread Bruno Sandivilli
, 2011 at 11:50 PM, Bruno Sandivilli bruno.sandivi...@gmail.com wrote: Anyone can help me with this? I want to have an ouath twitter application based on on GWT. But i cant add twitter4j on client side, so how can i manage the callback url(for example)? Any code snippets are welcome :). Thanks

Re: What do you think?

2011-09-29 Thread Bruno Sandivilli
. On Sep 27, 9:37 pm, Bruno Sandivilli bruno.sandivi...@gmail.com wrote: Hi , what do you think about this: http://amplicate.com/hate/gwt/4104355-i-hate-gwt-its-one-of-the-worst... ? -- You received this message because you are subscribed to the Google Groups Google Web

twitter4j + GWT

2011-09-28 Thread Bruno Sandivilli
Anyone can help me with this? I want to have an ouath twitter application based on on GWT. But i cant add twitter4j on client side, so how can i manage the callback url(for example)? Any code snippets are welcome :). Thanks! -- You received this message because you are subscribed to the Google

What do you think?

2011-09-27 Thread Bruno Sandivilli
Hi , what do you think about this: http://amplicate.com/hate/gwt/4104355-i-hate-gwt-its-one-of-the-worst-frameworks-ive/ ? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: GDDBR11

2011-09-02 Thread Bruno Sandivilli
Yeah, for sure! 2011/9/1 Magno Machado magn...@gmail.com I'm likely to go, but not sure yet On Thu, Sep 1, 2011 at 9:45 PM, Alisson Prestes javalis...@gmail.comwrote: Hi, Is anybody from this list coming to Google Developer Day Brazil this year? Alisson Prestes

Re: multi pages in gwt

2011-08-29 Thread Bruno Sandivilli
I have the same doubt a months ago, my project had to use clean urls. To solve this i did like i think twitter dows. i put a hash tag listener in my page, so the urls looks like www.myapp.com/#!/user , and i catch the events on there. But im asking me now, theres another beuatfull way to achive

GWT + Facebook

2011-08-26 Thread Bruno Sandivilli
Hi, i want i esay and clean way to integrate GWT with Facebook. Any ideas? Thanks -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send