GWT 2.0 RC1

2009-11-16 Thread Allahbaksh
Hi GWT Team, I noticed that Bruce has created a page GWT 2.0 RC. But I am not able to find GWT 2.0 RC1. Is is due on 17th early morning? Bruce one more request if Google guys can open Google Wave UI Source code then it would great. That is amazingly fast application with all functionality which I

Re: incubator's PagingScrollTable(pagination+Sorting)

2009-11-16 Thread shloka
Davis, thanks for the post ... In your example Are you using the pagination also? How do you maintain sorted data between the pages?? I have implemented sorting almost like what you have done but i am facing problem in maintaining the sorted data with the pagination. say i have 10 rows and i m

Re: Redistributing GWT apps in a commercial software

2009-11-16 Thread Parag Thakur
Thomas, Thanks! That's exactly what I was looking for. regards, Parag On Nov 17, 3:02 am, Thomas Broyer wrote: > On Nov 16, 8:06 am, Parag  Thakur wrote: > > > thanks for the reply. > > > No, we don't ship gwt-dev.jar. However it's not very clear if any of > > the code in gwt-dev.jar gets tran

Re: GWT History Interacts Badly With Non-History iFrame

2009-11-16 Thread Carl
Brian, I appreciate your response and apologize for not having noticed it until now. I've moved on from this issue for the moment and will probably revisit it once I get my initial deployment out the door. Your suggestion is reasonable but, as I mentioned, I have some doubts as to whether it woul

Re: Tomcat RPC Failure on Lost Client Connections.

2009-11-16 Thread t.dave
there's a bit of content on the web about this problem. if memory serves it was at least partly blamed on the RPCServletUtils.readContentAsUtf8() method - that sometimes the request doesn't make it to the server. this was blamed on the vagaries of the internet. i have it all the time in my web a

instanceof Element check fails in FF

2009-11-16 Thread bhomass
I have this statement NodeList childNodes = tdElement.getChildNodes(); for (int i=0; ihttp://groups.google.com/group/google-web-toolkit?hl=.

Re: Disabling inline images (data URIs)

2009-11-16 Thread frostw
I should add that I realise this is more of an F5 issue, but since their troubleshooting documentation boils down to "techniques to avoid when writing Firepass compatible applications (http://www.f5.com/pdf/ deployment-guides/firepass-rproxy-dg.pdf)", it's a bit out of my control as it's all GWT co

Re: Help! Displaying helpful data on a form.

2009-11-16 Thread David C. Hicks
Hi Davis, Yes, using GWT-RPC. My problem was that I "forgot" that I'm dealing with an asynchronous call. I was trying to populate the field on my form with data before the call had successfully returned. So, I was getting a Null Pointer Exception from the object I was fetching. Once I realized

Re: How to create a development/debug and production setup

2009-11-16 Thread Sripathi Krishnan
> > Can someone explains how to run this? > Read about deferred binding in the GWT documentation. It will explain the underlying concepts. Here is what you have to do - 1. Your debug class and production class must inherit from a common class. 2. Based on the property (app.config in thi

Re: Disabling inline images (data URIs)

2009-11-16 Thread frostw
Thanks for the reply Thomas. This fixed my IE tree issue. However, I now find that attempting to use a GWT application with Firefox (3.5.3) through the Firepass server fails completely. This is even with the simplest GWT application e.g. package det.networks.derboard.client; import com.google.gw

Re: Help! Displaying helpful data on a form.

2009-11-16 Thread Davis Ford
Are you using GWT-RPC? I'm not sure I understand your problem completely. So if I have a service like: public interface MyService extends RemoteService { public Entity fetchEntity(String id); } public interface MyServiceAsync { void fetchEntity(String id, AsyncCallback callback); } then

Re: ComboBox ??

2009-11-16 Thread salvador.ce
Hi Chris, When I am accessing the database, do the query ID and description, the two columns are placed in the Store (SimpleStore), after this the User can query the data, I'm stating that when the User makes the consultation brings the description and not ID. Is there any way to browse the C

Javascript onload called before Java onModuleLoad

2009-11-16 Thread Davidj2k
I am needing the onModuleLoad event to fire before the window onload event, in Firefox and Chrome it does it correctly but in Internet Explorer 7 and 8 it happens second, is there anything I can do to make the onload event of the web page happen after the onModuleLoad? -- You received this messag

Re: Help! Displaying helpful data on a form. SOLVED

2009-11-16 Thread David C. Hicks
Nevermind. I figured out that I could update my label on kind of an asyncronous basis, as well. David C. Hicks wrote: > I'm sure I must be making this harder than it needs to be, but I'm > having zero success doing it. > > Entering a new form, I'd like to display the name of an entity that was >

How to create a development/debug and production setup

2009-11-16 Thread Supercobra Thatbytes
Hello there, I recently deployed inadvertently a debug version of our game typrX (typing races at www.typrx.com - try it it's fun). It was quickly corrected but I know it may happen again. After digging on Google I found some info how to create 2 different profiles, one for development mode that

Help! Displaying helpful data on a form.

2009-11-16 Thread David C. Hicks
I'm sure I must be making this harder than it needs to be, but I'm having zero success doing it. Entering a new form, I'd like to display the name of an entity that was selected on the the calling page. The calling page is a Struts2 JSP, so I don't have the entire entity. I only have the entity'

Re: Redistributing GWT apps in a commercial software

2009-11-16 Thread Thomas Broyer
On Nov 16, 8:06 am, Parag Thakur wrote: > thanks for the reply. > > No, we don't ship gwt-dev.jar. However it's not very clear if any of > the code in gwt-dev.jar gets translated into javascript (like they > mention happens for the BrowserDetect code).. Of the libs listed here: http://code.goo

Re: GWT PCI Compliance Toolkit

2009-11-16 Thread Yozons Support on Gmail
This has gone off-topic, so I won't belabor my point, but the PCI principles clearly show it's more geared towards the server-side, as the browser itself never had to be "PCI compliant" or any such rubbish. And no GWT interface tool can ensure PCI compliance either. A server that has gone through

Re: incubator's PagingScrollTable(pagination+Sorting)

2009-11-16 Thread Davis Ford
Yes, I have done this in some cases. You can do this with the methods from AbstractColumnDefinition

Tomcat RPC Failure on Lost Client Connections.

2009-11-16 Thread Danny
I get a " Exception while dispatching incoming RPC call" exception in Tomcat after, what I believe is caused by an RPC response not finding the client that made the request. The stack print out is included below. I say that I believe this is the problem, but I have not been able to reproduce the

Re: incubator's PagingScrollTable(pagination+Sorting)

2009-11-16 Thread Dazza
On Nov 16, 3:27 pm, Davis Ford wrote: > Hi, here's a blog post I made that shows how I'm using the widget.  It may > help if you are still looking for a solution. > > http://zenoconsulting.wikidot.com/blog:17 > > Regards, > Davis > Very nice article. Ha

Re: GWT PCI Compliance Toolkit

2009-11-16 Thread Evan Ruff
Yozons, You're running into one of the most common PCI Compliance misconceptions: just because you don't store the card data does not mean you're compliant. If the application touches the card data IN ANY WAY, even just to immediately transmit to the gateway, you must have your application served

Re: ComboBox ??

2009-11-16 Thread Chris Ramsdale
Are you returning description text along with the ID? On Mon, Nov 16, 2009 at 11:20 AM, salvador.ce wrote: > Hi !! > > I created a Forms with several fields, I'm doing a query > a database, the data is being selected without problem, > some difficulties I'm having is that this a Forms ComboBox a

Re: Gwt 2.0 trunk and Eclipse

2009-11-16 Thread Chris Ramsdale
We've confirmed that this issue has been resolved in the RC bits that we are currently testing. The RC should be available very soon. In the meantime you can switch back to MS2 or use your own custom Java launch config. Let us know if you go down the custom launch config path and need some help. -

Module Creation from Eclipse

2009-11-16 Thread Kyle Hayes
I'm starting a fairly large project with GWT and would like to take advantage of the modularity of GWT. There are some grey areas for me in creating a new GWT module through Eclipse from scratch to be included in a GWT application. I was hoping someone could provide a set of steps to do so. Assume

Re: Gwt 2.0 trunk and Eclipse

2009-11-16 Thread Mark Renouf
Has there been any updates on fixing this? I confirmed I have the latest GAE plugin and still have the problem. I'm hoping once the RC comes out there will be an updated. If it was open source I would patch the Eclipse plugin instead of GWT, but oh well. On Nov 9, 10:07 am, misterln2 wrote: >

Re: GWT PCI Compliance Toolkit

2009-11-16 Thread Yozons Support on Gmail
Isn't most PCI compliance related to the server? GWT only holds the information a short time to make a payment and shouldn't normally hold on to the data after submitting it for processing. How does your GWT help with PCI compliance since this would also require your server and server code to be

Re: GWT hosted mode crashing after update

2009-11-16 Thread Jim Douglas
My MacBook Pro is my main GWT development system, so I'm dead in the water here too. Kelly mentions a possible workaround in comment #16, but I haven't seen the details: http://code.google.com/p/google-web-toolkit/issues/detail?id=4220#c15 Apparently this Apple bug will be fixed in Safari 4.0.5,

Re: GWT hosted mode crashing after update

2009-11-16 Thread Kyle Hayes
Hey Rob, A lot of us have been having issues with Safari 4.0.4 release since they updated JavaScriptCore. Check out this thread as well as the last reply in it: http://groups.google.com/group/google-web-toolkit/browse_thread/thread/386df3f9d5cab7d0/cecf81ab8c9b7fde?#cecf81ab8c9b7fde On Nov 16, 9:

GWT hosted mode crashing after update

2009-11-16 Thread Rob Tanner
Hi, I was running along last week just perfectly with the GWT Eclipse plugin v1.7.1 and Eclipse 3.5.1 on an Mac running Snow Leopard. This morning I installed an update bring Safari to v4.0.4 and the OS to 10.6.2. Now hosted mode crashes with the error: Invalid memory access of location 0010

Re: GWT: JUnit & Google App Engine Tutorial assumes intelligence

2009-11-16 Thread Angel Marquez
Fantastic. In the meantime I'm going through the GWT & AE developer guides in tandem with the fielding dissertation and a java pub on their REST api, very interesting. It would be nice to have the completed tutorial source files readily available as well. Specifically for the JUnit & AE sections o

Re: GWT Chat

2009-11-16 Thread ben fenster
how can the comet gwt lib keep a live connection On 16 נובמבר, 16:01, Roy wrote: > App Engine supports XMPP > > On Nov 16, 1:38 pm, Prempena wrote: > > > I've tried to find a solution with App Engine for weeks without any > > success. Server push is not only useful for Chat. It can be used

Re: GWT PCI Compliance Toolkit

2009-11-16 Thread Duong BaTien
We are still in development mode and have not fully committed to any yet. Please keep in touch. Duong BaTien DBGROUPS and BudhNet On Mon, 2009-11-16 at 11:17 -0500, Evan Ruff wrote: > Hey Duong, > > > We're preparing to roll out our PCI compliance solution. I was > wondering which gateway you a

Re: How to differentiate between singleClick and doubleClick on the Grid cell?

2009-11-16 Thread Lothar Kimmeringer
Taufeeq schrieb: > I am create an component where in on singleClick of the grid cell I > have to show an alert message displaying metadata of image. And, on > doubleClick have to display the image in new window. For that I had > created a class "MyHandler" which implements clickHandler and > Doubl

ComboBox ??

2009-11-16 Thread salvador.ce
Hi !! I created a Forms with several fields, I'm doing a query a database, the data is being selected without problem, some difficulties I'm having is that this a Forms ComboBox and I the value that returns is an ID database, the question is: How do I bring the description in the combobox? These d

Re: GWT: JUnit & Google App Engine Tutorial assumes intelligence

2009-11-16 Thread Chris Ramsdale
I second Rajeev's comments. We definitely value feedback, and we'll make sure the tutorial is updated to reflect that the "test" folder must be added manually as a source folder. With regards to the larger picture, we'll be looking to revamp some of the existing documentation once we get 2.0 and t

Re: GWT PCI Compliance Toolkit

2009-11-16 Thread Evan Ruff
Hey Duong, We're preparing to roll out our PCI compliance solution. I was wondering which gateway you are using to process your payments. Thanks! Evan On Fri, Oct 2, 2009 at 9:29 AM, Duong BaTien wrote: > > Please announce your release and put me duong.bat...@gmail.com in your > list. We use

Re: GWT Chat

2009-11-16 Thread Roy
App Engine supports XMPP On Nov 16, 1:38 pm, Prempena wrote: > I've tried to find a solution with App Engine for weeks without any > success. Server push is not only useful for Chat. It can be used to > inform users of some events coming from the Server. > > This is issue is referenced at a good

Re: Too much is happening (the events are crowding the bus)?

2009-11-16 Thread ArmanGal
I use Operation enum inside the action that tells my presenter how to handle the action. + I create number of constructors for this event to support every operation, while the event it self has all needed properties for all operations. ;) On Nov 15, 4:19 am, "slind...@gmail.com" wrote: > I am at

Re: GWT Chat

2009-11-16 Thread ArmanGal
Look at this project, i've used it a year ago to build chat (like skype) in gwt, very nice implementation but requires to install XMPP server (free). http://code.google.com/p/emite/ On Nov 15, 3:01 pm, Jim wrote: > hi, > > I'd like  make a chat using GWT  1.7 but gwt doesn't allow the use of >

Re: how to use a server class in client code

2009-11-16 Thread Ray
Hello, I have my model classes inside an library on the server-side which I want user for different applications (not only GWT) Copying my domain classes to the client side of the GWT-Client-App doesn't seem to be very convienient, as I have to maintain the same code in two different locations.

Re: how to use a server class in client code

2009-11-16 Thread Ray
Hello, I have my DTO (domain model) classes - which are serializeable POJOs without annotations - inside jar files on the server, as i want to use them not only in GWT applications. Is there no other solution of reusing them on my GWT-client-side without copying the source code to the client. Bec

How to differentiate between singleClick and doubleClick on the Grid cell?

2009-11-16 Thread Taufeeq
Hi, I am create an component where in on singleClick of the grid cell I have to show an alert message displaying metadata of image. And, on doubleClick have to display the image in new window. For that I had created a class "MyHandler" which implements clickHandler and DoubleClickHandler and added

Re: GWT Hosted Mode crashing after Snow Leopard 10.6.2 Update

2009-11-16 Thread Danny
Hi, Is there also a fix available for GWT 1.6+ ? My Eclipse project gives an error saying that the when using the WAR layout you must use the GWT 1.6 or later. Thkx, D. On Nov 14, 4:10 pm, hugues wrote: > On 12 nov, 18:39, hugues wrote: > > > On 12 nov, 13:35, Daniel Kurka wrote: > > > > I fo

Re: Redistributing GWT apps in a commercial software

2009-11-16 Thread Parag Thakur
thanks for the reply. No, we don't ship gwt-dev.jar. However it's not very clear if any of the code in gwt-dev.jar gets translated into javascript (like they mention happens for the BrowserDetect code).. --parag On Nov 12, 11:27 pm, Yozons Support on Gmail wrote: > I'm not an expert (or even a

Ant test

2009-11-16 Thread Andrey
Hello! Is it normal that SVN build doesn't pass tests? Every time I build GWT from SVN I get errors while executing "ant test". -- 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...@google

Re: Announcing the Google Plugin for Eclipse 1.1.0

2009-11-16 Thread Rajeev Dayal
Hi, As an FYI, we're going to release a version of the plugin that fixes this issue shortly. However, with the issue that you're experiencing, I wonder if you did not revert your version of DevMode* back far enough. What version did you revert to? Rajeev On Mon, Nov 16, 2009 at 6:08 AM, shahid

Re: GWT 1.7.1 don't show app in hosted mode (Jetty bug: FULL head)

2009-11-16 Thread Rajeev Dayal
@Stephen: What platform are you on? @Rodrigo: That sounds like a GXT-specific bug. Have you tried posting on their forum? 2009/11/15 Stephen Graham > I am getting a similar error: > Nov 15, 2009 7:24:24 PM com.google.apphosting.utils.jetty.JettyLogger > info > INFO: jetty-6.1.x > Nov 15, 2009 7

GWT 2.0 Javascript IE Crash

2009-11-16 Thread Charlie M
Hi All, I have been recently testing out GWT 2.0 currently from the 2.0 branch of the SVN although I have also tried Milestone 2. My app works fine in Chrome and Firefox in both development and hosted modes. When I try and run it in IE 6, 7 or 8 it complains of Javascript errors. It complains of

Re: ie8 and spacing....

2009-11-16 Thread Davis Ford
Try to set up as little of this as possible in GWT/Java and do as much as possible in CSS. Browsers have CSS quirks...GWT won't help with that. This tool is very helpful for working out IE css issues: http://www.my-debugbar.com/wiki/ On Sun, Nov 15, 2009 at 11:03 PM, golfdude wrote: > > GWT 1.

Re: Problems with 1.7.1 -noserver hosted mode on Linux

2009-11-16 Thread Jeff Chimene
The general trend seems to be that GWT no longer works reliably with the xulrunner (which provides hosted mode support on Linux) in recent versions ot Ubuntu. If possible, please try GWT 2.0 MS2. It's quite stable, and has lots of Shiny. Dropping xulrunner in place of OOPHM is really the way you w

Re: how large of your GWT compiled code? My one is 850K

2009-11-16 Thread Bakul
Hi, Our app, 50 -55 % done so far, for one browser is nearly 1.6 MB without gzip. And it has nearly 70 -80 RPC calls. Luis, Question for you: As you said your app is 2.1 MB of obfuscated, how is the preformance and does it has any issue? Question to all: What is the max size that of GWT one mod

Re: GWT Chat

2009-11-16 Thread Blaze(tu)
Actually you can use socket via Flash or Java Applet. try http://code.google.com/p/gwt-socket/ or the component in GWT Summer of Code http://code.google.com/p/gwt-soc/wiki/SocketsForGWT_Report On Nov 15, 9:01 pm, Jim wrote: > hi, > > I'd like  make a chat using GWT  1.7 but gwt doesn't allow th

Re: embedding into another site

2009-11-16 Thread Davidj2k
Well, embedding using an IFRAME does work for getting the site embedded into another but having access to objects to update that page is where my problem is, lets say I have a simple function that sends an alert like this import org.timepedia.exporter.client.Export; import org.timepedia.exporter.c

Re: Too much is happening (the events are crowding the bus)?

2009-11-16 Thread Ian Bambury
As Thomas says, only introduce an event when needed. Also, remember that there is no point to an event if nothing else is interested. If you only have one list of cars, then a CarAdded event is not needed since the list can deal with the server response directly. The same is true of the other eve

Re: How to create user web pages

2009-11-16 Thread Davis Ford
You can do this with the fantastic UrlRewrite filter. I set my site up this way to make RESTful style URLs. There's an example how to do this here: http://zenoconsulting.wikidot.com/blog:16 On Mon, Nov 16, 2009 at 7:52 AM, Sanjeev Kulkarni wrote: > Thanks for the answer. This solution I alrea

Comet and GWT

2009-11-16 Thread iaio81
Hi all, I need implementing comet with my GWT application and I was reading about Rocket-GWT. Can I decide when send updates to client ? And if so, how? How can Rocket GWT avoid too many connections opened at the same time? Thanks all -- You received this message because you are subscribed to th

Re: embedding into another site

2009-11-16 Thread Davis Ford
What exactly is the problem you encountered? I just embedded an app I made with GWT into another site on another domain in an IFRAME. It worked fine for me. If your app calls remote services, they have to hit the same server that served the HTML/Js/CSS. On Fri, Nov 13, 2009 at 2:45 PM, Davidj2k

Re: GWTTestCase + Spring

2009-11-16 Thread Davis Ford
Hi, I personally wouldn't write too many test cases like this unless you are just trying to ensure that everything is wired together. Even then, I'd probably use something like Selenium to record the test from the UI and play it back. Alternatively, you might consider employing the MVP pattern.

Re: GWT Chat

2009-11-16 Thread Prempena
I've tried to find a solution with App Engine for weeks without any success. Server push is not only useful for Chat. It can be used to inform users of some events coming from the Server. This is issue is referenced at a good place in the issue list: http://code.google.com/p/googleappengine/issues

Re: General question about project architecture.

2009-11-16 Thread Davis Ford
I'm doing this now. I set the project up this way several months ago and it works great for me. The only real con is double compile-time, but I don't care about that. I even have a feature where I can show a view of one application inside another, which is very cool. Here's how I set it up -- h

exception while running rpc procedure

2009-11-16 Thread HDayi
hi there, iam getting the following exception while trying to run the rpc procedure. running code is following the stack trace: The server is running at http://localhost:8080/ 16.Kas.2009 13:29:51 com.google.appengine.tools.development.ApiProxyLocalImpl log SEVERE: [1258378191128000] javax.servlet

Re: How to create user web pages

2009-11-16 Thread Sanjeev Kulkarni
Thanks for the answer. This solution I already did and is working fine, but know I want to get the user web page by explicit URL like http://example.com/sanjeev.html Any idea??? On Nov 16, 5:09 pm, gwtfanb0y wrote: > A solution - without modifying the server redirects - is to use one > url with

Re: How to create user web pages

2009-11-16 Thread gwtfanb0y
A solution - without modifying the server redirects - is to use one url with a parameter like this: http://example.com/login?user=sanjeev The servlet extracts the username, load the modeldata from the database for it and sent it back to the client. On 16 Nov., 11:40, Sanjeev Kulkarni wrote: >

Re: Problem in AsyncCallback call, returned with success

2009-11-16 Thread Ricardo Cardoso / Gmr
Hello Sri, It was a great example. I changed my code to a "real" asynchronous call and it worked. I just moved certain code lines to the success method of the asynchronous call. Before, I was trying to run that lines before the call was finished, as you must know! :) Thanks for your good help.

Re: GWT Chat

2009-11-16 Thread Lúcio Camilo
If u are using App Engine, so you can´t open sockets. Pay attention to this. 2009/11/16 Jimmy Verheecke > Thx ! Have a good day > > 2009/11/16 gwtfanb0y > > I would recommend Comet, with this technology you can push serialized >> messages from the Server to >> each registered Client. Here is an

Re: Announcing the Google Plugin for Eclipse 1.1.0

2009-11-16 Thread shahid
Thanks misterln2 @Ranjeev yes I am using the current build On Nov 13, 10:19 am, misterln2 wrote: > the changes happened from rev 6641 to 6642 > > a bunch of registerHandler(..) statements got removed > > i just tried it: copying those statements back to the current > DevModeBase.java was sufficie

Re: how large of your GWT compiled code? My one is 850K

2009-11-16 Thread luisfpg
Our app is still 60-70% complete and already has 2.1MiB of obfuscated code. Pretty code is 14+MiB. However we've developed several components and widgets, and we have a lot of RemoteServices wich several (and sometimes complex) model classes, which are transmitted over the wire. We will still furth

Re: GWT Chat

2009-11-16 Thread Jimmy Verheecke
Thx ! Have a good day 2009/11/16 gwtfanb0y > I would recommend Comet, with this technology you can push serialized > messages from the Server to > each registered Client. Here is an other fine project: > http://code.google.com/p/gwt-comet-streamhub/ > > > > On 15 Nov., 14:01, Jim wrote: > > hi,

How to create user web pages

2009-11-16 Thread Sanjeev Kulkarni
Hi all, Don't know whether my post will be appropriate to this forum! but I have become helpless so I am posting here.Please excuse me if not appropriate. I want to make a user web pages for all the users who registers into my application. The user can view his web page with a link like below: ht

Re: Does still work in GWT 1.6/7 ?

2009-11-16 Thread Thomas Broyer
On Nov 14, 6:36 pm, Steve C wrote: > I'm having trouble getting the above to work in a gwt.xml file, as in: > >   >   > > where my file structure is: > > src/com/xyz/gwt/myapp/ -- >  -- entrypoint/ -- >  -- -- MyApp.java >  -- webresources/ -- >  -- -- MyApp.css What's your problem? To answer

Re: How to handle the returned response from the server

2009-11-16 Thread gwtfanb0y
You can use a HTMLPanel to show your (HTML)result: HTMLPanel(event.getResults()) http://google-web-toolkit.googlecode.com/svn/javadoc/1.6/com/google/gwt/user/client/ui/FormSubmitCompleteEvent.html http://google-web-toolkit.googlecode.com/svn/javadoc/1.6/com/google/gwt/user/client/ui/HTMLPanel.htm

Re: GWT Chat

2009-11-16 Thread gwtfanb0y
I would recommend Comet, with this technology you can push serialized messages from the Server to each registered Client. Here is an other fine project: http://code.google.com/p/gwt-comet-streamhub/ On 15 Nov., 14:01, Jim wrote: > hi, > > I'd like  make a chat using GWT  1.7 but gwt doesn't all

Re: Too much is happening (the events are crowding the bus)?

2009-11-16 Thread Thomas Broyer
On Nov 15, 3:19 am, "slind...@gmail.com" wrote: > I am attempting to implement the EventBus pattern and I find myself > creating a LOT of Events (extending GwtEvent). I'll try to illustrate > what I mean with my Car object. I have a list of cars and a button > called "Add Car". This button has a

Re: Problems with 1.7.1 -noserver hosted mode on Linux

2009-11-16 Thread bysse
I've managed to replicate the problem in a small project. As soon as i add the richfaces filter to web.xml it stops working from the hosted mode browser. It still works in FF though... On Nov 5, 1:22 pm, bysse wrote: > Thanks for the suggestions, i didn't receive any notification mail > about the