Re: Running Apache Hupa sample of GWT MVP

2009-09-13 Thread Norman Maurer
Hi Daniel, its me again ;) Could you try this to fix the restriction problem: * Change the order of the libraries puting 'JRE System Library' at the bottom. I'm waiting for your feedback :) Bye, Norman 2009/9/14 Norman Maurer : > Hi Daniel, > > I added a jira issue to keep track of this.. >

Re: Wait for server call

2009-09-13 Thread Paul Robinson
I don't think this has been mentioned for a while...the great asynchronous beer story :) http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/faca1575f306ba0f Sripathi Krishnan wrote: > Simplest answer - put the System.out.println() within the onSuccess() > method -:) > > Longer

Re: Running Apache Hupa sample of GWT MVP

2009-09-13 Thread Norman Maurer
Hi Daniel, I added a jira issue to keep track of this.. https://issues.apache.org/jira/browse/LABS-449 Thx for the feedback. Bye, Norman 2009/9/13 Daniel : > > Could you describe the steps necessary to create the Maven2 hupa > project in Eclipse more explicitly?  I am unable to successfully b

Re: Running Apache Hupa sample of GWT MVP

2009-09-13 Thread Norman Maurer
HI Daniel, about the DataSource problems.. Eclipse is a bit stupid about this ( at least I think its eclipse because it work to compile from cmdline without probs) :-/ You need to use java5 as jdk for hupa to getting rid of this. I had no time to understand how else I could workaround this. Some

Re: GWT Standard theme ==> relatively much bigger IE buttons. Fix?

2009-09-13 Thread alex.d
I've solved this issue by adding this to myApp.css: .gwt-Button { font-size: 12px; } On 13 Sep., 05:25, John Gunther wrote: > Thanks, when I added the following doctype at the top of the host > page: > > http://www.w3.org/ > TR/html4/strict.dtd"> > > The IE button sizes dropped down a n

Re: Running Apache Hupa sample of GWT MVP

2009-09-13 Thread Norman Maurer
No Problem, hope it helps :) Bye, Norman 2009/9/14 Daniel Jue : > > You are correct, I totally ignored the readme.txt.  Thanks for the pointer! > > On Mon, Sep 14, 2009 at 1:57 AM, Norman Maurer wrote: >> >> Hi Daniel, >> >> you must have missed the README.txt file included in the project. From

Re: Running Apache Hupa sample of GWT MVP

2009-09-13 Thread Daniel Jue
You are correct, I totally ignored the readme.txt. Thanks for the pointer! On Mon, Sep 14, 2009 at 1:57 AM, Norman Maurer wrote: > > Hi Daniel, > > you must have missed the README.txt file included in the project. From > the README.txt: > > - If you want to run hupa in hosted mode be sure to ad

Re: Running Hupa in Hosted Mode

2009-09-13 Thread Norman Maurer
Hi Daniel, your prolly missed to adjust your run configuration. Check the README.txt file included in Hupa trunk. From the README.txt: - If you want to run hupa in hosted mode be sure to add the following line as "vm argument" in the Run configuration: -Dhupa.config.file=${project_loc}/server

Re: Running Apache Hupa sample of GWT MVP

2009-09-13 Thread Norman Maurer
Hi Daniel, you must have missed the README.txt file included in the project. From the README.txt: - If you want to run hupa in hosted mode be sure to add the following line as "vm argument" in the Run configuration: -Dhupa.config.file=${project_loc}/server/src/main/webapp/WEB-INF/conf/config.

Re: Running Apache Hupa sample of GWT MVP

2009-09-13 Thread Daniel Jue
BTW, I made sure I didn't have to change the POM. You do want to make sure mvn is downloading the snapshots and source when available. The .classpath should change though, if you replace the JRE as mentioned in my previous mail. I've been told not to put my .classpath (or any .* files) into a re

Re: Running Apache Hupa sample of GWT MVP

2009-09-13 Thread Daniel Jue
I also had some issues getting it to run in hosted mode the first few times. I had to issue a mvn clean package (or was it clean install?) and I still had to manually copy the conf/config.properties (or whatever it was) to the /war directory. Then I was able to select the main project (the paren

Re: Wait for server call

2009-09-13 Thread Sripathi Krishnan
Simplest answer - put the System.out.println() within the onSuccess() method -:) Longer answer - You are trying to make an asynchronous call into a synchronous one. Its a question that has been asked many times, and the answer is - don't try to do it. Read the document at - http://code.google.com

Re: Running Apache Hupa sample of GWT MVP

2009-09-13 Thread Daniel
Could you describe the steps necessary to create the Maven2 hupa project in Eclipse more explicitly? I am unable to successfully build the project as a result of the javax.activation imports throwing the following error: Access restriction: The type DataSource is not accessible due to restriction

Wait for server call

2009-09-13 Thread Angel
I have this code, which sends a call to the server. This call takes a few seconds to complete. I should not run System.out.println until the call ends. I do this? How I wait for the server? thanks [CODE] String value="nothing"; BDServiceAsync service = GWT.create(BDService.class); servi

Newbie question

2009-09-13 Thread John Restrepo
Hi guys, excuse me for the newbie question but I'm new with GWT. I have to modify some widget with a suggestion box that interact with a database, the thing is when I open it with Eclipse it doesn't recognize anything "the import com.google cannot be resolved", maybe the problem is that I'm modify

Re: Running Apache Hupa sample of GWT MVP

2009-09-13 Thread Daniel
Could be more explicit about how to get the hupa project running in hosted mode from eclipse. The following error occurs in my attempt to run in hosted mode: [WARN] Failed startup of context com.google.gwt.dev.shell.jetty.JettyLauncher $webappcontextwithrel...@dab19a{/,C:\Documents and Settings\

Running Hupa in Hosted Mode

2009-09-13 Thread Daniel
In my attempt to run hupa in hosted mode I receive the following error. Could anyone provide some direction as to what may be going on here? [WARN] Failed startup of context com.google.gwt.dev.shell.jetty.JettyLauncher $webappcontextwithrel...@dab19a{/,C:\Documents and Settings\dsimons \workspa

Re: Running Apache Hupa sample of GWT MVP

2009-09-13 Thread Daniel
After checking out the hupa project, then importing into Eclipse I get compile errors for javax.activation imports in AbstractSendMessageHandler.java. I found that there is an issue using Sun JARs with Maven, and attempted to add the javax.activation dependency in my pom.xml, but the errors persi

I'm new to GWT and I have some questions...

2009-09-13 Thread PJ
I know I should check the list of resources before posting some questions, but I did it and I need some simple explanations that are not explicit in the resources... First I have some problems with both the "Tree" and the "HorizontalSplitPanel" styles. I want the splitter and the backgroud of a s

Re: nocache.js throws exception with IE8 Standards mode.

2009-09-13 Thread Kyle
That was it, nice catch. I didn't think the nocache.js was affected by included modules, or I would have mentioned the dependency. I've logged the issue w/ GQuery (Issue 28). Thanks for your quick response, Thomas! On Sep 12, 9:47 am, Thomas Broyer wrote: > On 12 sep, 05:10, Kyle wrote: > > >

Re: Chrome like tab behaviour possible using GWT?

2009-09-13 Thread myapplicationquestions
I am trying to get the cascading tabs with the overlay you can see... On Sep 9, 12:52 am, Isaac Truett wrote: > Perhaps you could describe what features of the tabs in Chrome you > wish to reproduce. > > On Tue, Sep 8, 2009 at 3:19 PM, > > > > myapplicationquestions wrote: > > > yes. but i could

IGOOGLE Like actions using GWT?

2009-09-13 Thread myapplicationquestions
Hi All, How can i 1) Maximize a portlet 2)Minimize a portlet? All my portlets extend composite and i am passing a horizontal panel in init method so all child widgets are added to the horizintal panel. i am trying to get the same behaviour as igoogle an am not sure which method to use...

Re: rpc vs RequestBuilder

2009-09-13 Thread ben fenster
i know that but i just wanted to know if the performence margin considering having efficient serialization algoritem could be big enough too be worth the invesment in developing such php server side request handler i also wanted to know about shear power of request handling per second ? , i bel

Re: Installed GWT Plugin into Eclipse 3.5 Galileo and cannot find wizard

2009-09-13 Thread Bob Rozelle
Google folder wasn't there. Changed to Galileo for Java, I was using Galileo for JEE. This fixed the problem. I can now see Google folder and icons. It looks like there is something wrong with using Subclipse with Eclipse 3.5 for JEE. On Sep 13, 12:33 pm, Paul Grenyer wrote: > Hi > > > I u

Not able to get data from server using cross site communication

2009-09-13 Thread Hlunboi
Hi Am not able to get data from server using cross site communication. Below is my function to connect to the server. The code is not able to create the callback function on the window object. Could someone please let me know what is wrong with my code? Regards Hlun =

Re: HTTP POST on the server side?

2009-09-13 Thread John V Denley
LOL - you almost beat me to it! It was the hosted mode browser reporting that error, after replying to your earlier post, I realised that I had only tried to use the java.net.URL class inside the client code rather than inside the server code. As soon as I moved it into the server side, it worke

Re: HTTP POST on the server side?

2009-09-13 Thread Sripathi Krishnan
Who is reporting that error? Eclipse? Or is it the GWT hosted mode browser? Also, can you paste the folder structure of the src folder? Perhaps the server code somehow made its way to the client packages.. --Sri 2009/9/13 John V Denley > > Ah, I actually meant to mention that I had already tr

Re: HTTP POST on the server side?

2009-09-13 Thread John V Denley
Ah, I actually meant to mention that I had already tried that and got the following error: "the import java.net cannot be resolved" Im guessing ive done something wrong, or im meant to have included it in some other way, or im meant to include something else somewhere! Im using Eclipse if that

Re: HTTP POST on the server side?

2009-09-13 Thread Sripathi Krishnan
RequestBuilder classes can only be used on the client side. The exception you are getting is essentially telling you 'You cannot use this class on the server side'. To make a GET/POST request from your server code is actually simple and doesn't have anything to do with GWT. You can use the standar

HTTP POST on the server side?

2009-09-13 Thread John V Denley
Please excuse the newbie wording below, Im really not sure how to phrase this problem correctly, which is of course causing me problems with trying to find a solution by searching online, as I dont really know what it is that i need to do, but I think its an "HTTP POST" (but it could be send/get/s

twitter4j + gwt + oauth....

2009-09-13 Thread PJ Gray
Sure manhere is what I am doing, but please read the notes afterwards, cause I am still learning and I think parts of this process are either not secure and/or won't work in practice. But it did work at 4am last night (and I had only had like 4 beers :) ) I used twitter4j, and followed

Re: Installed GWT Plugin into Eclipse 3.5 Galileo and cannot find wizard

2009-09-13 Thread Paul Grenyer
Hi > I use subclipse all the time w/ GWT plugin. They seem to co-exist. Yes, it works for a colleague of mine in the office, but not for me. > Even under the Other > Google > Web Application Project you don't get a > Wizard? Will have to try that. -- Thanks Paul Paul Grenyer e: paul.gren..

Re: Installed GWT Plugin into Eclipse 3.5 Galileo and cannot find wizard

2009-09-13 Thread Jeff Chimene
On 09/13/2009 08:26 AM, Paul Grenyer wrote: > > Hi > >> Decided I wanted to see how the new plugin worked so I installed it >> into Galileo, followed all the install instructions, restarted >> everything, but I cannot find the wizard or the icon >> >> Any suggestions? > > I've been having a sim

Re: GWT + Eclipse + Subversion?

2009-09-13 Thread Jeff Chimene
On 09/13/2009 08:39 AM, PJ Gray wrote: > Thanks for the help. I messed around with it a bit more, and just kept > getting frustrated. Uggg, just isn't this hard if I want a > non-integrated solution in XCodewhy is it here? Anyway, I settled > on just zipping up my whole folder and puttin

Re: GWT + Eclipse + Subversion?

2009-09-13 Thread PJ Gray
Thanks for the help. I messed around with it a bit more, and just kept getting frustrated. Uggg, just isn't this hard if I want a non-integrated solution in XCodewhy is it here? Anyway, I settled on just zipping up my whole folder and putting the zip in source control. Big hammer soluti

Re: Installed GWT Plugin into Eclipse 3.5 Galileo and cannot find wizard

2009-09-13 Thread Bob Rozelle
Yes. I am using subclipse. On Sep 13, 11:26 am, Paul Grenyer wrote: > Hi > > > Decided I wanted to see how the new plugin worked so I installed it > > into Galileo, followed all the install instructions, restarted > > everything, but I cannot find the wizard or the icon > > > Any suggestions? >

Re: GWT Maps API not loading

2009-09-13 Thread martind
If I compile my application and run it in my system browser, it works fine. Firebug raises no issues. However, it fails in hosted mode... On Sep 12, 5:57 pm, Eric Ayers wrote: > I've not heard of problems using the Maps API with GWT 1.7.  Can you > use firebug or some other way to trace your n

Re: Installed GWT Plugin into Eclipse 3.5 Galileo and cannot find wizard

2009-09-13 Thread Paul Grenyer
Hi > Decided I wanted to see how the new plugin worked so I installed it > into Galileo, followed all the install instructions, restarted > everything, but I cannot find the wizard or the icon > > Any suggestions? I've been having a similar problem I still haven't got to the bottom off. Have you

Installed GWT Plugin into Eclipse 3.5 Galileo and cannot find wizard

2009-09-13 Thread Bob Rozelle
Hi, Decided I wanted to see how the new plugin worked so I installed it into Galileo, followed all the install instructions, restarted everything, but I cannot find the wizard or the icon Any suggestions? Thanks, Bob --~--~-~--~~~---~--~~ You received this messag

Re: rpc vs RequestBuilder

2009-09-13 Thread Thomas Broyer
On 13 sep, 07:50, ben fenster wrote: > have anyone checked what is the better way to comunicate with server > performence wize rpc or RequestBuilder(using php) It would all depend on your serialization algorithm when not using GWT- RPC; so there's no real answer to your question. --~--~

Re: Building GWT-1.7 and included jars from source

2009-09-13 Thread Thomas Sachau
Since noone seems to be able or willing to answer, can anyone tell me, where i can get answers to my questions? On Sep 5, 7:04 pm, Thomas Sachau wrote: > Hi, > > i want to try to package GWT for Gentoo and for that, i need the > sources of all included jars. > > Currently i am missing the source

getParent().getOffsetHeight() not working properly in Chrome,Safari

2009-09-13 Thread Scottish
Has anyone else encountered getParent().getOffsetHeight() not returning the correct size when making browser windows smaller in Chrome or Safari? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" gr