Re: Running Hupa in Hosted Mode

2009-09-14 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:

Re: Running Apache Hupa sample of GWT MVP

2009-09-14 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 nor...@apache.org 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

Re: Running Apache Hupa sample of GWT MVP

2009-09-14 Thread Norman Maurer
No Problem, hope it helps :) Bye, Norman 2009/9/14 Daniel Jue teamp...@gmail.com: You are correct, I totally ignored the readme.txt.  Thanks for the pointer! On Mon, Sep 14, 2009 at 1:57 AM, Norman Maurer nor...@apache.org wrote: Hi Daniel, you must have missed the README.txt file

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

2009-09-14 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 johncurtisgunt...@yahoo.com wrote: Thanks, when I added the following doctype at the top of the host page: !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01//EN

Re: Running Apache Hupa sample of GWT MVP

2009-09-14 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.

Re: Running Apache Hupa sample of GWT MVP

2009-09-14 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 daniel.simo...@gmail.com: Could you describe the steps necessary to create the Maven2 hupa project in Eclipse more explicitly?  I am

Re: Wait for server call

2009-09-14 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-14 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 nor...@apache.org: Hi Daniel, I added a jira issue to keep

Re: Cookies not available in Hosted Mode

2009-09-14 Thread Anca
Hi, 10x for the reply. I don't use Google App. The problem appears when I run my application in Hosted Mode. I have a page that stores the usernamepassword in cookies and I expect to retrieve them from cookies at next login (Hosted Mode is open during repeated login/logouts). On client side I

Using RequestBuilder in static methods...

2009-09-14 Thread Tim N
Static RequestBuilder methods I have searched for answers and had no luck. I am a newb with both Java gwt so please forgive what could be a stupid question. I am trying to create a static method to make a http request using the RequestBuilder object. I have nested onResponseRecieved() and

Re: Using RequestBuilder in static methods...

2009-09-14 Thread Sandman
Hi Tim, Seems like your RBDemo class is implementing the RequestCallback interface. Hence you need to add those methods to your class in order to complete the implementation. In such a case, you can move your onError and onResponseReceived logic to the 2 methods at the bottom and just pass a

Re: Wait for server call

2009-09-14 Thread Angel
Sorry, I will relaunch the question [CODE] // At this point I built the user interface. // I have a combo and others elements... MapString,String comboValues = new MapString,String() BDServiceAsync service = GWT.create(BDService.class); service.fillCombo(text, new

Poll: unit tests source code layout / GWTTestCase vs. EasyMock

2009-09-14 Thread Thomas Broyer
[Ray, I'm CC'ing you because I believe you have an opinion/answer on the matter] Hi all, Here's dilemma I believe many of us are facing, namely how to organize the source code of unit tests when you have both GWTTestCase and pure java JUnit tests using EasyMock (or any other mocking lib). The

Re: Wait for server call

2009-09-14 Thread Norman Maurer
You should do it like this: BDServiceAsync service = GWT.create(BDService.class); service.fillCombo(text, new AsyncCallbackMapString,String(){ public void onFailure(Throwable caught) { } public void onSuccess(MapString,String result) {

How to Access the application Root path from the RemoteServiceServlet class..?

2009-09-14 Thread Raul
Hello GWTians I am having a trouble in accessing a local folder inside my application from the RemoteServiceServlet. At client side it is OK with GWT.getHostPageBaseURL()+images But i am not yet find a solution to access the same folder in my server code i.e. from a RemoteServiceServlet. I

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

2009-09-14 Thread Tamás Gömbös
Hi, For example, if you'd like to do something on the right side when you click on an item of the tree, you should do this: You create a widget which extends HorizontalSplitPanel and implements the SelectionHandler interface. You override the onSelection(SelectionEventi event) method of the

radiobutton.setValue not working?

2009-09-14 Thread TomJanssens
Hello, I am trying to include a radiobutton in a menuitem. When the menuItem is clicked, the checked state of the radiobutton (and other radiobuttons in the same group) should be updated. My design roughly lookes like this. public class RadioMenuItem extends MenuItem { public RadioMenuItem {

Re: Double click on textField.

2009-09-14 Thread Yogesh Bhave
Hi Twiz, You can create your own class by extending TextBox class. And can add double click event by using sinkEvents() method. And In same class you can write code you want to write to execute on double click of text box in onBrowseEvent(). On Sat, Sep 12, 2009 at 10:24 PM, dubes01

Re: Best ways to avoid unwelcome CSS cascade side effects?

2009-09-14 Thread Alexander Cherednichenko
From what I got here, GWT styling style :) means that you do not heavily use 'global' CSS selectors; most of the styling work is done with classes. we're working on large application, and only 'global' styles we use are related to quirks, not to styling. I'm using some more complex selectors

Re: rpc vs RequestBuilder

2009-09-14 Thread Bob Rozelle
In my open source application gwt-commerce http://code.google.com/p/gwt-commerce/ I am using RequestBuilder and sending compressed JSON back from the server. My server is Apache/PHP and I find the low volume performance to be quite good for the limited testing that I've done. I would love to

Re: Repeating http requests

2009-09-14 Thread Ittai
I actually did what you suggested but oddly enough it did not work. I still had to add a dummy data to fool the IE into thinking it's a different URL. Anyone has any ideas? Because I would sure love to get rid of this ugly hack TIA Ittai On Sep 2, 12:17 am, Thomas Broyer t.bro...@gmail.com

Re: Chrome like tab behaviour possible using GWT?

2009-09-14 Thread Isaac Truett
That really isn't behavior so much as appearance, is it? You just need a few images for the overlapping edges. Without having tried it myself, I'm anticipating that you'll need a little bit of logic to apply special style names to handle cases where the selected tab is the first or last, but

Re: Newbie question

2009-09-14 Thread Jason Parekh
Hey John, You can try to add the GWT 1.4 SDK: Go to your Eclipse preferences, then Google - GWT on the side bar, and then add another entry to the list box pointed to your GWT 1.4 SDK. After that, you'll want to create a new GWT project pointed at your existing source code. Please let us know

Re: access to domain external feeds

2009-09-14 Thread dao
nobody wants to help me? On 9 sep, 23:28, dao dao.ho...@gmail.com wrote: hello, A very easy question for you web policy expert guys: I want to make an application that uses data from an external URL. It is an atom feed (could be an RSS one) from flickr. I just want to fetch some photos

Deployment with Tomcat without nasty 404 Not Found error?

2009-09-14 Thread alex.d
The problem is: while undeploying old/deploying new version of application it's unavailable for severall minutes. Which is of course pretty annoying for the users. Is there any way to avoid this? I mean besides switching servers - i just have one :(

Re: Newbie question

2009-09-14 Thread Jason Parekh
No problem. Unfortunately, the issue you're now seeing will be harder to tackle. See http://code.google.com/p/google-web-toolkit/issues/detail?id=1792 for a long discussion. It looks like it was fixed in GWT 1.5, but I think there are some workarounds for older versions interspersed in that

Re: Newbie question

2009-09-14 Thread John Restrepo
It worked! thanks a lot Jason, new thing learned :P But now, I got this error when try to compile: 2009-09-14 11:10:12.494 java[6097:80f] [Java CocoaComponent compatibility mode]: Enabled 2009-09-14 11:10:12.497 java[6097:80f] [Java CocoaComponent compatibility mode]: Setting timeout for SWT to

rpc ok in host mode, not on a server

2009-09-14 Thread bdx
Hello, I wrote a program in Gwt1.7 + smartGwt1.2. It works ok in host mode. But when deploy in tomcat, screen and events are ok but rpc don't work. I think it 's a configuration problem, i give some code. web.xml [CODE] ?xml version=1.0 encoding=UTF-8? web-app id=WebApp_ID version=2.4

Re: Deployment with Tomcat without nasty 404 Not Found error?

2009-09-14 Thread Diego Lovison
example.. when user type in url http://localhost:8080/youraplication/.html .html dont exist in server.. will return 404 not fount you would like change for this page dont exist in the server.. please .? On 14 set, 11:29, alex.d alex.dukhov...@googlemail.com wrote: The problem

Disabling SOP in GWTs built-in browser?

2009-09-14 Thread ReubenH
Hi, As far as I can tell, the Single Origin Policy (SOP) cannot presently be disabled in GWTs built-in browser... if so, I would like to ask the Googlers to reconsider this choice. My hosting provider does not let me run java servlets of any kind, so for my app I am stuck with using a JSON

GWT project dependencies in Eclipse - managing class files in war.

2009-09-14 Thread AndrewG
I have quite a large project - developed in eclipse Ganymede - into which I am incorporating gwt. I want to organise this as follows: 1) A 'low level' GWT component library (mostly containing custom widgets). 2) A GWT library containing complex UI web pages (with test harness facilities). 3) A

Re: rpc vs RequestBuilder

2009-09-14 Thread lord.luki
Hi, maybe it wont be helpfull, but there si some response time testing whitch i did. I was testing gwt-rpc from client to gwt embedet server (Jetty). I was sending pojo object which contained 10 strings each with average length 10 chars. In table below is time in miliseconds for difrent lengths

possible DatePicker issue with October

2009-09-14 Thread Diego Lovison
open http://gwt.google.com/samples/Showcase/Showcase.html#CwDatePicker go to the month October you will see two 17 October.. you cant test using all browser the problem its the same.. in hosted mode work fine.. but in google calendar this problem dont appears...

Re: Using RequestBuilder in static methods...

2009-09-14 Thread Tim N
Sandman - Thanks so much for the quick response - This board has been nothing shy of a amazing. Have a great day, Tim. On Sep 14, 3:53 am, Sandman sandman10...@gmail.com wrote: Hi Tim, Seems like your RBDemo class is implementing the RequestCallback interface. Hence you need to add those

Re: Running Apache Hupa sample of GWT MVP

2009-09-14 Thread Daniel Simons
Moving the JRE System Library to the bottom resolved the Access Restriction errors, but now I receive a new problem. When I right-click on the hupa-parent project, then select run configuration, with -Dhupa.config.file=${project_loc}/server/src/main/webapp/WEB-INF/conf/config.properties included

Re: Best ways to avoid unwelcome CSS cascade side effects?

2009-09-14 Thread Zak
One approach is to write and apply your stylenames in an object- oriented way. The idea is to use multiple classes per element, each adding on a bit more style definition (kind of like super/subclass relationships in Java). If you define these styles in a location- independent way (this style is

Re: rpc ok in host mode, not on a server

2009-09-14 Thread Sripathi Krishnan
Are you getting any error messages? If you have firebug, can you see if the requests are actually being fired? If you can see the requests, what is the status code returned by the server? --Sri 2009/9/14 bdx bertrand.dach...@sgcib.com Hello, I wrote a program in Gwt1.7 + smartGwt1.2. It

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

2009-09-14 Thread PJ
Thank you for the page!!! and I'll try that method, thank you... On Sep 14, 5:30 am, Tamás Gömbös gomb...@gmail.com wrote: Hi, For example, if you'd like to do something on the right side when you click on an item of the tree, you should do this: You create a widget which extends

Re: Running Apache Hupa sample of GWT MVP

2009-09-14 Thread Daniel Jue
FWIW, I only have jdk1.6.0_16 and it works. I made sure Eclipse was using this specific version, and all other JREs were removed. Compiler compatibility is set to 1.6, and I didn't change any of the defaults in the Deprecated and restricted API section -- specifically the forbidden reference

Re: Disabling SOP in GWTs built-in browser?

2009-09-14 Thread Thomas Broyer
On 14 sep, 16:01, ReubenH reuben.har...@gmail.com wrote: Hi, As far as I can tell, the Single Origin Policy (SOP) cannot presently be disabled in GWTs built-in browser... if so, I would like to ask the Googlers to reconsider this choice. My hosting provider does not let me run java

Re: possible DatePicker issue with October

2009-09-14 Thread Jim Douglas
I don't see that problem here (Mac OS X Leopard, Pacific time zone (North America), Firefox 3.5.3; Opera 10.0; Safari 4.0.3). What's your environment, Diego? That sounds like a daylight saving time anomaly; are you in Argentina, Brazil, or Paraguay? http://www.timeanddate.com/time/dst2009.html

Re: Google Plugin - No Module Found for Compilation

2009-09-14 Thread Rajeev Dayal
Hey Nikolay, I think that you may have an exclusion filter which is too aggressive on your target/base-resources directory. It seems that you have an exclusion filter of **. Won't that match everything? Rajeev On Fri, Sep 11, 2009 at 4:17 PM, Nikolay erdtekw...@googlemail.com wrote: Hi

Re: Running Apache Hupa sample of GWT MVP

2009-09-14 Thread Norman Maurer
Hi Daniel, the compiler settings just tell maven to compile the src to be usable in java5 enviroments too. Bye, Norman 2009/9/14 Daniel Jue teamp...@gmail.com: FWIW, I only have jdk1.6.0_16 and it works. I made sure Eclipse was using this specific version, and all other JREs were removed.

Re: possible DatePicker issue with October

2009-09-14 Thread Jim Douglas
Confirmed; I should have done the obvious test. I just changed my time zone to Buenos Aires and rechecked that page, and I see exactly what you reported. It looks like you're seeing one of the effects of this GWT issue: http://code.google.com/p/google-web-toolkit/issues/detail?id=3132 On Sep

GWT-RPC and using my own Servlet

2009-09-14 Thread Ittai
Hi, I'm new to GWT so I'm still trying to learn the ropes. I went through the StackWatcher tutorial and used the GWT-RPC mechanism and I think I have a basic understanding of it. I currently have a GWT application which uses the RequestBuilder to send messages to a servlet I have (using POST and

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

2009-09-14 Thread PJ
Any advices about the styles? --~--~-~--~~~---~--~~ 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

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

2009-09-14 Thread Jason Parekh
Thanks guys for digging into this issue. I tried installing Eclipse Java EE and Subclipse, followed by GPE, but was unable to repro the original issue. If anyone can still has access to an Eclipse where GPE was installed but isn't appearing, could you check: - The perspective you're currently in?

Re: possible DatePicker issue with October

2009-09-14 Thread Diego Lovison
TimeZone Brazil - GMT -03:00 other way.. I donwload the last version of the trunk GWT 2.0 and see that this problem will parsial correct.. but only in DatePicker.. in DateBox if you select 18/10/2009 the problem appears... On 14 set, 14:19, Jim Douglas jdoug...@basis.com wrote: Confirmed; I

oophm plugin issues (firefox 3/3.5 on linux)

2009-09-14 Thread rocha.po...@gmail.com
Hi. I've just upgraded my oophm plugin to the most recent one at: http://code.google.com/p/google-web-toolkit/wiki/UsingOOPHM for firefox 3.0. I had some small issues from time to time and was hoping it would get better. But with this new one it doesn't seem to work. I get a message in the

TabPanel IE vs. FF

2009-09-14 Thread davis
Hi, I am having a strange discrepancy in the use of TabPanel in Firefox (3.5.1) vs. IE (8). The TabPanel in question is a smaller part of a larger UI made up of several widgets. In Firefox, everything appears as expected. In IE, the Tabs themselves show up but the content (i.e. widget for the

Re: Best practice for several html pages

2009-09-14 Thread El Mentecato Mayor
In my case, the login page needs functionality shared with the regular app, so it is better to have a single module with two entry points. Anoher option is to divide it in three modules, login, app, shared- stuff and the first two inherit the shared-stuff. On Aug 5, 6:42 am, Insano

Re: TabPanel IE vs. FF

2009-09-14 Thread Ian Bambury
It's always very difficult to answer a question along the lines of 'my program doesn't look right in one browser but it's OK in another - what is wrong?' if there is absolutely no code to go on If anyone had seen something like this, there would probably be a bug report (I'm assuming you checked).

Re: rpc vs RequestBuilder

2009-09-14 Thread John Ivens
Hey, this is scary... Firefox, Netscape and Safari all error out at high data rates? On Mon, Sep 14, 2009 at 5:03 AM, lord.luki lord.l...@gmail.com wrote: Hi, maybe it wont be helpfull, but there si some response time testing whitch i did. I was testing gwt-rpc from client to gwt embedet

Re: rpc vs RequestBuilder

2009-09-14 Thread John Ivens
Could you show the code that you used to test this with? On Mon, Sep 14, 2009 at 11:25 AM, John Ivens john.wagner.iv...@gmail.comwrote: Hey, this is scary... Firefox, Netscape and Safari all error out at high data rates? On Mon, Sep 14, 2009 at 5:03 AM, lord.luki lord.l...@gmail.com wrote:

Re: Running Apache Hupa sample of GWT MVP

2009-09-14 Thread Daniel Simons
Still haven't discovered the source of the classNotFoundExceptionWhen I perform 'maven package' the build fails with the following error: [INFO] hupa-parent ... SUCCESS [0.672s] [INFO] hupa-shared ... SUCCESS

Re: GWT RPC Hibernate - again and again

2009-09-14 Thread David Durham
On Fri, Sep 11, 2009 at 6:29 AM, Ed post2edb...@hotmail.com wrote: He David, Gilead.  I just used the underlying beanlib replicators to undo the cglib or javassist stuff before serializing to client. Which beanlib replicators are you using? Believe it was called Hibernate3BeanReplicator ..

Re: TabPanel IE vs. FF

2009-09-14 Thread Davis Ford
On Mon, Sep 14, 2009 at 2:22 PM, Ian Bambury ianbamb...@gmail.com wrote: It's always very difficult to answer a question along the lines of 'my program doesn't look right in one browser but it's OK in another - what is wrong?' if there is absolutely no code to go on If anyone had seen 

Re: TabPanel IE vs. FF

2009-09-14 Thread Jim Douglas
The other thing to check with IE8 is to compare how it renders the page in standards mode versus quirks mode. We fixed a whole host of IE8 formatting issues by generating our HTML to request standards mode. On Sep 14, 11:51 am, Davis Ford davisf...@zenoconsulting.biz wrote: On Mon, Sep 14,

Re: Running Apache Hupa sample of GWT MVP

2009-09-14 Thread Daniel Simons
I sincerely apologize for the newb issues...The ClassNotFoundException was due to the fact that ${project_loc} was undefined. On Mon, Sep 14, 2009 at 1:46 PM, Daniel Simons daniel.simo...@gmail.comwrote: Still haven't discovered the source of the classNotFoundExceptionWhen I perform 'maven

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

2009-09-14 Thread PJ
Hey, I changed the HorizontalSplitPanel, now I have 2 vertical panels, but I need the right one to show an external web page, how I do that? ah, and I still need the Style for the tree... help please!!! --~--~-~--~~~---~--~~ You received this message because you

Re: TabPanel IE vs. FF

2009-09-14 Thread Ian Bambury
You need to supply code which allows others to reproduce this behaviour. The HTML that has been produced is no use. You could quite easily get display:none by the simple method of not selecting the first tab. How is anyone to know unless you supply the GWT code? Give people something they can

Re: Newbie question

2009-09-14 Thread John Restrepo
Ok, thanks again, due to short time I'll omit this part :( At least I can work in web mode… thanks for everything ;) On Sep 14, 11:27 am, Jason Parekh jasonpar...@gmail.com wrote: No problem. Unfortunately, the issue you're now seeing will be harder to tackle.  

Re: GWT project dependencies in Eclipse - managing class files in war.

2009-09-14 Thread Jason Parekh
Hey Andrew, There's an alternative to the JAR approach: In your (3)'s project properties, set up (1) and (2) as linked source folders, and in (2)'s project properties, set up (1) as a linked source folder. This is ugly, but it should work until we get proper support dependent projects in the

Re: Running Hupa in Hosted Mode

2009-09-14 Thread Daniel Simons
Now the properties file is loading correctly, however, the following error occurs when running in hosted mode: [ERROR] Unable to load module entry point class org.apache.hupa.client.Hupa (see associated exception for details) com.google.gwt.core.client.JavaScriptException: (Error): Invalid

Re: GWT RPC Hibernate - again and again

2009-09-14 Thread Alexandros Papadakis
The latest I guess (depending on the version of GWT you use???). There is a forum (there was at least one for h4gwt) where the author can help you... You should be carefull though which version of the gwt-servlet.jar you use. I spend a whole day trying to figure out why an older version of this

Re: TabPanel IE vs. FF

2009-09-14 Thread Davis Ford
Hi, I'm not moaning that it doesn't work. It's a community -- and my question is more along the lines of querying the group to see if someone else may have had a similar problem and if they care to share that information, great. If not, I'll solve it eventually. Sometimes providing a simple,

javax.servlet.ServletException: Client did not send 347 bytes as expected

2009-09-14 Thread Bela
Our client software is using GWT and randomly getting the error message --javax.servlet.ServletException: Client did not send 347 bytes as expected. This occurs when our users are using VPN. Is there a solution for this error message? What steps do I have to take to resolve this issue?

How to generate a request in server side?

2009-09-14 Thread Tiago Mesquita
Hi, i got my request in client side normal when i call something like: ServiceBOIF.Util.getInstance().getUserInSession(new AsyncCallbackUser(){ public void onSuccess(User user){ ... ... } public void onFailure(Throwable caught) { ... ... } }); Ok, but supose that i'm in Server Side in a method

Re: Running Hupa in Hosted Mode

2009-09-14 Thread Daniel Simons
Interestingly...I modified EnableHyperlink.java line 57 from: html.getElement().getStyle().setProperty(color, grey); to html.getElement().getStyle().setProperty(color, blue); and the error did not occur On Mon, Sep 14, 2009 at 3:35 PM, Daniel Simons daniel.simo...@gmail.comwrote: Now the

Re: Wait for server call

2009-09-14 Thread Angel
If I do it, the user interface shows in browser before the combo fill values... :( The user interface show a empty combo. On Sep 14, 11:38 am, Norman Maurer nor...@apache.org wrote: You should do it like this: BDServiceAsync service = GWT.create(BDService.class);        

Re: Running Hupa in Hosted Mode

2009-09-14 Thread Daniel Jue
Your edit probably triggered a rebuild. You also get this same stack trace when the config.properties file is not found. This is because the class that the properties file maps to ends up being null, and then Hupa is trying to read the IMAP folder name. What you need to do in the future is

Re: javax.servlet.ServletException: Client did not send 347 bytes as expected

2009-09-14 Thread Paul Robinson
If you search this forum for that message, you should find at least one long thread discussing it and attempting to identify the problem. IIRC, it was only fixed by the person suffering from it by retrying the operation when it occurred. Bela wrote: Our client software is using GWT and randomly

Problem With Styling Elements

2009-09-14 Thread David Rickard
We're building a widget, using (primarily) a menu and a vertical panel for display of data. The menu part is built of 9 MenuItem elements, a vertical MenuBar holding the MenuItems, and a horizontal MenuBar holding the vertical MenuBar: MenuItem reserves; reserves = new

Re: Does GWT work in Snow Leopard?

2009-09-14 Thread Sumit Chandel
Hi All, For those of you who have been running into problems using GWT 1.7 with Snow Leopard, please accept our humble apologies. We are working on getting a GWT 1.7 point release out that will fix this issue so that you may use Snow Leopard with the JDK 1.6 32-bit libraries without having to

Re: TabPanel IE vs. FF

2009-09-14 Thread davis
Nevermind -- appears to be CSS related. Commenting out the use of a particular CSS file makes the problem go away. On Sep 14, 8:03 pm, davis davisf...@zenoconsulting.biz wrote: Hi Ian, here's a simple example that demonstrates the problem.  The expected result is that I would see the

Re: rpc vs RequestBuilder

2009-09-14 Thread Jason A. Beranek
As Thomas Boyer said, there is no way to answer the question of which is better performance wise. Assuming serialization technologies are equivalent for both performance and message size, all other performance costs (e.g., latency, throughput) depend on the server environment, including the

Re: TabPanel IE vs. FF

2009-09-14 Thread Ian Bambury
I was just about to tell you I couldn't reproduce it - glad you got it pinned down. Ian http://examples.roughian.com 2009/9/15 davis davisf...@zenoconsulting.biz Nevermind -- appears to be CSS related. Commenting out the use of a particular CSS file makes the problem go away. On Sep 14,

GWT and Shindig

2009-09-14 Thread JaM
I am trying to build a GWT application that access the shingdig API for publications and subscriptions. I have successfully created a class that allows a java application to implement an interface and subscribe to a channel and publish to a channel. The issue I am having is when receiving a

sample async GWTTestCase with real server-side code

2009-09-14 Thread Azad Bolour
Can anyone point me to a complete Eclipse sample project that works out of the box with a sample GWTTestCase that includes a call to real server-side code. I am unsure as to how to configure the servlet, the module, and the annotations to all be consistent with each other, and to allow the test

Callback function implemented in Java

2009-09-14 Thread JaM
I previously posted about Shindig, when probably more appropriately I should have posted this question (sorry for the dup). I have successfully implemented a callback in Java (using an interface) which is called from Javascript appropriately, but after doing so it seems something is not quite

How to communicate with internal JavaScript in a Frame ?

2009-09-14 Thread Saeed Zarinfam
Hi I add a Frame widget to my GWT application. I want to call a JavaScript method that located in Frame. how can i do it ? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

[gwt-contrib] [google-web-toolkit] r6138 committed - Soyc dashboard: Adds permutation info to index page for each permutati...

2009-09-14 Thread codesite-noreply
Revision: 6138 Author: kpro...@google.com Date: Mon Sep 14 10:17:51 2009 Log: Soyc dashboard: Adds permutation info to index page for each permutation http://code.google.com/p/google-web-toolkit/source/detail?r=6138 Modified:

[gwt-contrib] Re: Add permutation info to index page for each permutation

2009-09-14 Thread kprobst
On 2009/09/10 15:42:26, Lex wrote: LGTM Thanks, committed at r6138. http://gwt-code-reviews.appspot.com/64808 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] Flattener/UnFlattener/Dataflow patch

2009-09-14 Thread cromwellian
Reviewers: Lex, scottb, Description: Introduces new work-list/dataflow optimizations, with the following methodology: 1) Flatten AST 2) Construct basic blocks and approximate flow control for each method 3) Process dataflow info to do intra-procedural propagation of constants, temps, or

[gwt-contrib] [google-web-toolkit] r6139 committed - Initialize the timer before adding the script in case it gets run sync...

2009-09-14 Thread codesite-noreply
Revision: 6139 Author: j...@google.com Date: Mon Sep 14 13:00:41 2009 Log: Initialize the timer before adding the script in case it gets run synchronously from cache. Patch by: abrodersen Review by: dwolf, jat http://code.google.com/p/google-web-toolkit/source/detail?r=6139 Modified:

[gwt-contrib] Re: Wrap onLoad/Unload in a try block if UncaughtExceptionHandler is present

2009-09-14 Thread rjrjr
On 2009/09/14 20:23:31, jlabanca wrote: So the UncaughtExceptionHandler violates finally? Isn't that a pretty fundamental problem? http://gwt-code-reviews.appspot.com/64815 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Wrap onLoad/Unload in a try block if UncaughtExceptionHandler is present

2009-09-14 Thread John LaBanca
What do you mean? Thanks, John LaBanca jlaba...@google.com On Mon, Sep 14, 2009 at 4:33 PM, rj...@google.com wrote: On 2009/09/14 20:23:31, jlabanca wrote: So the UncaughtExceptionHandler violates finally? Isn't that a pretty fundamental problem?

[gwt-contrib] Re: Wrap onLoad/Unload in a try block if UncaughtExceptionHandler is present

2009-09-14 Thread John LaBanca
The uncaughtexceptionhandler is in an inner try/catch block. The outer try/finally still runs, so we always reach the finally block. Thanks, John LaBanca jlaba...@google.com On Mon, Sep 14, 2009 at 4:34 PM, John LaBanca jlaba...@google.com wrote: What do you mean? Thanks, John LaBanca

[gwt-contrib] Re: Wrap onLoad/Unload in a try block if UncaughtExceptionHandler is present

2009-09-14 Thread Ray Ryan
NM, brainfart. But I'm confused just why you're tying this to UncaughtExceptionHandler. The invariant will still go straight to hell if none has been provided, right? Also, why not fix this in a single spot rather than several scattered places? Also, it's kind of weird to catch Throwable rather

[gwt-contrib] Re: Wrap onLoad/Unload in a try block if UncaughtExceptionHandler is present

2009-09-14 Thread John LaBanca
It wouldn't necessarily need a refresh, and at least the attach state would be valid. I have two major concerns about leaving it out: 1. It could lead to memory leaks, because widgets are physically attached and cannot be detached. 2. adwords is running into this, and I can't isolate the real