Re: GWT as a Desktop App (no browser !)

2010-10-23 Thread rjcarr
If you don't use any services you could use a gwt app in a browser without internet access. Otherwise, you'll need to embed a browser into your desktop application. GWT is a web platform and as such needs to run in a browser. On Oct 22, 1:52 pm, mattlf matthieu.lab...@gmail.com wrote: Hi I

Re: Session understanding question

2010-10-23 Thread Josh
So I can count on getThreadLocalRequest().getSession().getId() to always return the same value for every RPC call the client makes for the life of the session. The server will somehow figure out that the client who just logged in and was given a session Id, Is the same person who is now requesting

Re: Session understanding question

2010-10-23 Thread Josh
like adding security to ensure the clients session id can't be stolen by ether updating the sessionId thoughout the session. But that's really beyond this thread of just understanding what can be expected once a session is created. On Oct 23, 1:21 am, Josh josh.e.ander...@gmail.com wrote: So I

Re: Help Needed: Bidding System with GWT

2010-10-23 Thread Noor
Since the bidding application will involved mechanism such as real time updating of variable at the server, locking bidding amount to prevent interleaving errors. When I was doing some research, I came across comet. So Should use this tool?? -- You received this message because you are

Testing EasyMock MVP mockView problem

2010-10-23 Thread giannisdag
Hi, I am new to testing programming, and cannot solve a probably easy problem. I have written the following test code: public class RegisterPresenterTest { private DispatchAsync mockDispatch; private HandlerManager mockEventBus; private RegisterViewString mockView;

Re: GWT as a Desktop App (no browser !)

2010-10-23 Thread nino ekambi
You can use the GWT to write applications that can run in the Adobe AIR runtime. I m about to release a library( my the end the mounth) that will help you do that you will find it here : http://code.google.com/p/gwt4air/ With adobe AIR you just dont only out of the browser, you can access the

Re: GWT as a Desktop App (no browser !)

2010-10-23 Thread nino ekambi
Why is GWT running inside AIR esoteric ? :) At my company we are making incredible apps just doing that. Since that give us to deploy to the browser and the desktop using the same code basis. Greets E 2010/10/22 mattlf matthieu.lab...@gmail.com Hi I need to create a Desktop App. It can not

Re: Testing EasyMock MVP mockView problem

2010-10-23 Thread Thomas Broyer
On 23 oct, 08:40, giannisdag pascoua...@gmail.com wrote: Hi, I am new to testing programming, and cannot solve a probably easy problem. I have written the following test code: public class RegisterPresenterTest {         private DispatchAsync mockDispatch;         private HandlerManager

Re: How to get list of objects from JSON ??

2010-10-23 Thread Thomas Broyer
On 23 oct, 07:38, Santosh kumar kopp@gmail.com wrote: Hi, Using Dictionary in Gwt onModule load i want to get the list of objects from Json  ??? http://code.google.com/webtoolkit/articles/dynamic_host_page.html The example in the above link it is shown for string, but i want to get

Re: GWT as a Desktop App (no browser !)

2010-10-23 Thread freemonhuul
http://google.com On Oct 23, 2:05 pm, rjcarr rjc...@gmail.com wrote: If you don't use any services you could use a gwt app in a browser without internet access. Otherwise, you'll need to embed a browser into your desktop application.  GWT is a web platform and as such needs to run in a

Re: GWT as a Desktop App (no browser !)

2010-10-23 Thread Aladdin
There is a browser component that can embed IE inside swing, just wrap your app with it. I think it's part of the java desktop http://javadesktop.org/articles/jdic/index.html Other than that , just use java and swing ! On Oct 22, 11:52 pm, mattlf matthieu.lab...@gmail.com wrote: Hi I need

Re: How to get list of objects from JSON ??

2010-10-23 Thread Subhrajyoti Moitra
http://googlewebtoolkit.blogspot.com/2008/08/getting-to-really-know-gwt-part-2.htm Use overlay types to read JSON arrays and objects. Thanks, Subhro. On Sat, Oct 23, 2010 at 11:08 AM, Santosh kumar kopp@gmail.com wrote: Hi, Using Dictionary in Gwt onModule load i want to get the list of

Re: GWT as a Desktop App (no browser !)

2010-10-23 Thread Stefan Bachert
Hi matt, this requirement are somewhat strange. Anyway, I would rather for a possibility to modify an open source browser in such a way, that he is only allowed to open one URL (an this automatically). Maybe remove URL entry and set the initial url to your site. This is in the end no GWT

Re: What's the plan for GWT 2.1 RC2 and Production release

2010-10-23 Thread mike177
Hello David, Glad to hear your team is close to a full release of 2.1. Does your team have a expected release date? Many thanks , Mike On Oct 18, 2:20 pm, David Chandler (Google) drfibona...@google.com wrote: Hi Moejo, Thomas is correct about the tagging, as usual :-) We normally tag the

UserInformation implementation / example using HttpSession

2010-10-23 Thread RyanD
Trying to wrap my head around UserInformation via the expenses app and source code. It would be nice to eventually have a sample app or added tutorial which uses an implementation of UserInformation backed by HttpSession, which would be a seemingly common case for non-GAE uses. -- You received

Avoid opening DisclosurePanel when dragging it

2010-10-23 Thread De
Hello, I created a DisclosurePanel which can be dragged and dropped. It works but after dropping it, as the header was clicked, the DisclosurePanel opens or closes . Is there a way to avoid it? Thanks in advance for your help, JC -- You received this message because you are subscribed to the

Re: GWT 2.1 hellomvp using GIN

2010-10-23 Thread moejo
Hi All, I'm working on getting an example together and I am having issues setting up the injectors for the code you've suggested above (Amir, david, Aodhagán). So far, I've setup everything as you've suggested for the AppActivityMapper, AppPlaceFactory, AppPlaceHistoryMapper, Places and

Re: GWT 2.1 hellomvp using GIN

2010-10-23 Thread moejo
Sorry, feel like I might be missing some info to you. I've basically got two items: 3 Places - ContactPlace - EditContactPlace - NewContactPlace which map to 2 activities: - ContactActivity - EditContactActivity the contact activity is initally loading fine, but there is a click to add a new

gwt : eclipse : dev mode : U nable to find anguage.gwt.xml in your classpath

2010-10-23 Thread Prashant Bhate
Hi, I am trying to use gwt-language.jar, have added it to gwt.xml inherits name='com.google.gwt.language.Language' / as specified in http://code.google.com/p/gwt-google-apis/wiki/LanguageGettingStarted but getting this error in eclipse while run in development mode Unable to find

Re: gwt : eclipse : dev mode : U nable to find anguage.gwt.xml in your classpath

2010-10-23 Thread Gal Dolber
Did you include gwt-language.jar in your classpath? On Sat, Oct 23, 2010 at 6:19 PM, Prashant Bhate prashant.bh...@gmail.comwrote: Hi, I am trying to use gwt-language.jar, have added it to gwt.xml inherits name='com.google.gwt.language.Language' / as specified in

Are user defined Serilizable objects supported as Request parameters?

2010-10-23 Thread Aldo Neto
Hi All, We are adding to a EntityRequest method a parameter that is a serializable type we defined (basically a POJO consisting of Strings and primitive types), but it fails on the code below with that error message. Isn't Serializable types supported as they where on standard RPC? on

Re: Does GWT designer currently work with UIBinder?

2010-10-23 Thread Eric Clayberg
Yes. Try these... http://dl.google.com/eclipse/inst/d2gwt/latest/3.6/GWTDesigner_v8.1.0_UpdateSite_for_Eclipse3.6.zip http://dl.google.com/eclipse/inst/d2gwt/latest/3.5/GWTDesigner_v8.1.0_UpdateSite_for_Eclipse3.5.zip

Re: GWT 2.1 hellomvp using GIN

2010-10-23 Thread Henrik Schmidt
I've been playing around with this for som time. I can't see a more reasonable solution than the one Amir and Aigeec proposed. Sure, the getActivity method with a long list of if-the-else's doesn't seem nice, but this alternative is just too much boilerplate for my liking. Lots of Provider

Re: GWT 2.1 hellomvp using GIN

2010-10-23 Thread Henrik Schmidt
Oops. Substitute MailGinjector with AppGinjector. I'm playing around with the Mail sample code. -- 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-tool...@googlegroups.com. To unsubscribe from

[gwt-contrib] GwtEvent best practice

2010-10-23 Thread jarrod
Are there any best practices in terms of registering for or firing custom events? I notice that the GwtEvent subclasses in GWT 2.1.0.RC1 use a variety of strategies. Some events offer a static fire() method, some events offer a static register() method, and some events have neither option. In