Re: Adapting GWT to Adobe air

2011-03-26 Thread nino ekambi
Hi there, What is is the error message you are getting ? I guess you are trying to use a non allowed function inside the security sandbox of AIR. (Are you making any RPC call ? ) Please check http://code.google.com/p/gwt4air/ http://code.google.com/p/gwt4air/I implemented a work around there.

Re: Adapting GWT to Adobe air

2011-03-26 Thread nino ekambi
Oh yeah, diggitally signing the application wont help much here, if you are using forbidden functions. If you are using Smart GWT, then you ll have to make your application run from an IFrame ouside the security sandbox, and acees the AIR API through a bridge. If you are using EXT-GWT i

Looking for some Feedbacks + Advices

2011-03-26 Thread nino ekambi
Hello people, I m currently working on a GWT API for Adobe FLEX. The goal of this attempt is basically to provide FLEX as UI library for GWT projects. Hopefully this can become an good alternative to the other GWT UI ibraries. The API is almost done and before the release i also want to

Re: Looking for some Feedbacks + Advices

2011-03-26 Thread Aladdin
Then your app wont run on iPad :( On Mar 26, 2:24 pm, nino ekambi jazzmatad...@googlemail.com wrote: Hello people, I m currently  working on a GWT API for Adobe FLEX. The goal of  this attempt  is  basically  to provide FLEX as  UI library for GWT projects. Hopefully this can become an good

clean() (Stop) all the scheduled tasks at once

2011-03-26 Thread Fabiano
Hi, I'm looking for a way to stop all the runnin'scheduled tasks. There is already a rought solution: I can simply save all the Timer's references into an array or Set (and put it inside a Singleton, or static class member) , and then call .clean() an all the instances. Looking for a better

GWT RequestFactory populate tree structure

2011-03-26 Thread wicher
Hello, I have a problem using RequestFactory form GWT 2.2 Is there a way to populate a whole tree structure from the data model on one single request? My model looks like this: Hierarchy { SetHierarchy getChildren(); } When I use request.with(children) method all I get is one extra level of a

Re: Looking for some Feedbacks + Advices

2011-03-26 Thread nino ekambi
No it wont since FLEX only runs on Flash. But here you have the advantage of bulding the library on top of GWT, you can easely provide different UI layers based on your target runtime from the same source code.With another libray you would have to write separate applications for every target.

Re: Looking for some Feedbacks + Advices

2011-03-26 Thread nino ekambi
Ups la i think i provided the wrong link The explorer application can be founded here : http://www.gwt4air.appspot.com/ 2011/3/26 nino ekambi jazzmatad...@googlemail.com No it wont since FLEX only runs on Flash. But here you have the advantage of bulding the library on top of GWT, you

Editor+RequestFactory: how to get the new saved object ?

2011-03-26 Thread Simon M
I am using the editor framework + RequestFactory, and when creating a new object I need to get the new saved object (some fields are populated on the server). The problem is, the request context returned by the editorDriver.flush() sends a Receiver*Void*, and not a Receiver*EntityProxy*. How

Re: RPC Problem with HashMap containing ArrayList Value

2011-03-26 Thread SergeZ
Based on my own experience of working with collections in GWTs RPC mechanism, I can suggest you to create a POJO (Plain Old Java Object) file in the *.shared package of your application, where you have to declare all possible combinations of types (arrays of them) that you are going to send to the

Re: Editor+RequestFactory: how to get the new saved object ?

2011-03-26 Thread Thomas Broyer
The RequestContext returned by flush() is the one you gave to edit(). To persist your entity, you've had to call a service method on it before giving it to edit() (or after, if you kept a reference on it); and you can simply give it a Receiver without fire()ing the request by using the to()

Re: complex example GWT Activity and Place

2011-03-26 Thread Kayode Odeyemi
Thanks Dave. That was really helpful as it allows me to do some more digging. One more thing, I still don't understand why my profile activity is not responding to it's Place controller. The Place token is gotten but it doesn't trigger its activity which will call its corresponding Place. Here's

Who processes the gwt.codesvr parameter a browser plugin or java script on the hosted page

2011-03-26 Thread Adib
Hello, I am trying to figure out where the gwt.codesvr parameter gets processed? I can think of the following options and would like to get clarity about which of these options in the correct example. a) Is it used by the browser plugin so that the browser plugin can talk to the code server

Re: Who processes the gwt.codesvr parameter a browser plugin or java script on the hosted page

2011-03-26 Thread Thomas Broyer
On Saturday, March 26, 2011 8:29:04 PM UTC+1, Adib wrote: Hello, I am trying to figure out where the gwt.codesvr parameter gets processed? I can think of the following options and would like to get clarity about which of these options in the correct example. a) Is it used by the

Re: Cookies in gwt

2011-03-26 Thread Jambi
Hey Khiem, I think it´s not possible to have multiple Cookies with the same name. Normally the new Cookie with the same name overrides the old one. You should check this in Firefox. Just check the Cookies for your localhost (127.0.0.1) in the Firefox preferences. You should only see one Cookie

Re: Cookies in gwt

2011-03-26 Thread khiem nguyen
hi, as i have written, i checked with firebug see request's cookie-header has 2 cookie with the same name. same from firebug-console: document.cookie in fact, i set it with expire-option, so for each set , there'll be different expire-date, could it be the reason ? thanx for the answer On Sat,

Re: Logging client exceptions to a file

2011-03-26 Thread Adligo
Yes you can send the log messages to the server and have them direct the log messages to a file, depending on which log api you use (I am only sure about the i_log api that I wrote). http://cvs.adligo.org/viewvc/adi_gwt_rpc_servlet/src/org/adligo/i/adi/server/rpc/ILogServlet.java?view=markup I

Re: Cookies in gwt

2011-03-26 Thread Thomas Broyer
On Saturday, March 26, 2011 9:23:50 PM UTC+1, Jambi wrote: Hey Khiem, I think it´s not possible to have multiple Cookies with the same name. Normally the new Cookie with the same name overrides the old one. Not if they have different paths, or different domains! See

Re: Cookies in gwt

2011-03-26 Thread khiem nguyen
i think the issue comes from the fact that i set cookies from different (gwt-)module, which leads to different paths. i'll check it out. thanx again On Sat, Mar 26, 2011 at 10:52 PM, Thomas Broyer t.bro...@gmail.com wrote: On Saturday, March 26, 2011 9:23:50 PM UTC+1, Jambi wrote: Hey

gwt maven plugin with jsp

2011-03-26 Thread khiem nguyen
hi, i use (mojo) mvn plugin for gwt with html has hostpage, things work fine with both from eclipse (run as webapp ) or devmode (mvn gwt:run). now i want to switch to jsp-hostpage things don't work anymore. gwt:run : i get error 404 from eclipse: error 500 , with log console about error while

Mac OSX Java Upgrade warning: Don't upgrade your Java yet!

2011-03-26 Thread Brandon Donnelson
Java upgrade will break the eclipse dev hosted mode. http://code.google.com/p/googleappengine/issues/detail?id=4712 Brandon Donnelson http://gwt-examples.googlecode.com http://c.gawkat.com -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group.

Re: Mac OSX Java Upgrade warning: Don't upgrade your Java yet!

2011-03-26 Thread Brandon Donnelson
GAE Group notes that are similar: http://code.google.com/appengine/forum/java-forum.html?place=topic%2Fgoogle-appengine-java%2FP6bBEiRB_xQ%2Fdiscussion On Mar 26, 4:29 pm, Brandon Donnelson branflake2...@gmail.com wrote: Java upgrade will break the eclipse dev hosted mode.

Re: Mac OSX Java Upgrade warning: Don't upgrade your Java yet!

2011-03-26 Thread Jim Douglas
That Java update was released on March 8th; it's a good bet that everyone installed it weeks ago. http://code.google.com/p/google-web-toolkit/issues/detail?id=6125

Are there any sample maven projects for gwt-google-apis gadget ?

2011-03-26 Thread Saeed Zarinfam
Hi guys I have a question. Are there any sample maven projects for gwt-google- apis gadget ? If anybody know anything about it , please guide me. I want to setup a maven project for developing gadget with gadget library for GWT. thanks in advanced. -- You received this message because you are

[gwt-contrib] Re: Adding a new SimpleCheckboxCell and LabeledCheckboxCell cells, and a Checkbox widget backed by t... (issue1383810)

2011-03-26 Thread t . broyer
Is the lack of a CellWidget based on a native checkbox because of the already existing Checkbox and SimpleCheckbox widgets? and the lack of a labelled version of the native checkbox because you can use a CompositeCell (to add the label) and DefaultSelectionEventManager (to handle the selection on

[gwt-contrib] [google-web-toolkit] r9897 committed - Better error handling when the cache is initialized with a directory...

2011-03-26 Thread codesite-noreply
Revision: 9897 Author: zun...@google.com Date: Fri Mar 25 11:27:04 2011 Log: Better error handling when the cache is initialized with a directory that does not exist and it cannot create. Review at http://gwt-code-reviews.appspot.com/1380808

[gwt-contrib] [google-web-toolkit] r9898 committed - Adds flag to enable EnumOrdinalizer result stats...

2011-03-26 Thread codesite-noreply
Revision: 9898 Author: jbrosenb...@google.com Date: Fri Mar 25 12:11:48 2011 Log: Adds flag to enable EnumOrdinalizer result stats Review at http://gwt-code-reviews.appspot.com/1386802 Review by: cromwell...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=9898

[gwt-contrib] [google-web-toolkit] r9899 committed - Add missing tests to JavaCompilationSuite...

2011-03-26 Thread codesite-noreply
Revision: 9899 Author: sco...@google.com Date: Fri Mar 25 16:04:45 2011 Log: Add missing tests to JavaCompilationSuite http://gwt-code-reviews.appspot.com/1385808/ Review by: zun...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=9899 Modified:

[gwt-contrib] [google-web-toolkit] r9900 committed - DiskCacheToken wrapper type for easier serialization....

2011-03-26 Thread codesite-noreply
Revision: 9900 Author: sco...@google.com Date: Fri Mar 25 16:15:23 2011 Log: DiskCacheToken wrapper type for easier serialization. http://gwt-code-reviews.appspot.com/1391802/ Review by: zun...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=9900 Added:

[gwt-contrib] [google-web-toolkit] r9901 committed - Serialize GWT ASTs with CompilationUnits....

2011-03-26 Thread codesite-noreply
Revision: 9901 Author: sco...@google.com Date: Fri Mar 25 16:48:01 2011 Log: Serialize GWT ASTs with CompilationUnits. When we persist CompilationUnits, persist the GWT AST too. http://gwt-code-reviews.appspot.com/1384807/ Review by: zun...@google.com