Re: gwt 2.0 + apache + rpc pls help

2009-12-12 Thread Nicanor Cristian
Check out the urls. ben fenster wrote: i am trying to run a project that include gwt as client side and rpc + php as server side the only webserver iknow capable of running all of those together is apache but every time i try to call rpc i get an error of page not found DOCTYPE HTML

Re: Where to put server-configuration property files?

2009-12-12 Thread keyboard_samurai
should be part of the war file and incase you like to load it using classloaders make sure its within classpath. Incase you still need to know where exactly to put the file. Do let us know the directory structure of your project... Cheers! On Dec 12, 12:49 am, jbdhl jbirksd...@gmail.com wrote:

Re: gwt 2.0 + apache + rpc pls help

2009-12-12 Thread ben fenster
the urls are fine do i need any special configuration or special mods for apache i currently use standart apache in xamp On 12 דצמבר, 11:41, Nicanor Cristian nicanor.bab...@gmail.com wrote: Check out the urls. ben fenster wrote: i am trying to run a project that include gwt as client side

Not able to run UIBinder on Windows, Firefox combination

2009-12-12 Thread gopinath.in....@gmail.com
Hi, I have encountered this error, when I tried to run UiBinder helloworld logic in my GWT-GAE project. Initially, I thought it was problem with eclipse 3.5 plugin problem. The same problem is found in eclipse 3.4 plugin also. I think this is some problem in the browser plugin. I am blocked. Not

eclipse with google plugin

2009-12-12 Thread nicanor.babula
Hi all, I am a netbeans user, but I was forced to pass to eclipse in order to ease the developement of an gwt-gae application. Everything would be perfect, but eclipse doesn't do very well... Every once in a while (every ~10 minutes) eclipse cause my pc to hang for minutes. When it freezes, I

Canvas, SVG, VML, and Visualization

2009-12-12 Thread Nathan Wells
I want to draw stuff. Circles, rectangles, dodecahedrons, etc... What are people using for this? I know about the following: Incubator's GwtCanvas. gwt-visualization-api Are there others out there? What's best? Why do you prefer the one you use? Sample code is welcome. Any little problems you've

Re: Canvas, SVG, VML, and Visualization

2009-12-12 Thread Jan Ehrhardt
We're using HTML 5 Canvas for it. We created a slim JavaScript overlay wrapper, that allows us to access the Canvas methods from Java. For IE we use Excanvas r3, which is open source and supports IE 8 in standards mode. The only thing is, that we need to invoke a Excanvas 'init' method to make our

Re: Canvas, SVG, VML, and Visualization

2009-12-12 Thread Jan Ehrhardt
Oh, I forgot one thing. We use just a couple of Canvas methods in our, so our Canvas wrapper just wraps the required ones. With GWT Incubator, I had the problem, that most methods of Canvas are provided, but one I really needed, wasn't. But this can be fixed jet. Regards Jan Ehrhardt On Sat, Dec

Disable backspace

2009-12-12 Thread Andrey
Hello! My application is desktop-like, so it does not need any history support. The problem is that when I edit a form and accidentally lose focus and then press Backspace key to delete a character browser performs history.back() and the whole application is unloaded losing all the data. How can

Adding a list of items to a widget using UiBinder

2009-12-12 Thread Dave Finch
Hi, I am using the UiBinder mechanism in GWT 2.0 and have created a standard text field that includes a label, required icon etc. which all works great. The field also includes a list of validation rules which i currently add from the java code in my form class but i would like to include them

Re: Problem using UiBinder with extended DockLayoutPanel

2009-12-12 Thread Chris Lowe
Hello, I've also just run into this. I couldn't see anything in the issue tracker so I've added a new issue: http://code.google.com/p/google-web-toolkit/issues/detail?id=4342 Don't forget to vote (star) for this issue if it's important to you and let's hope that this gets fixed soon. Cheers,

Re: eclipse with google plugin

2009-12-12 Thread Bonor
The obvious solution would be to increase your memory. How much mem do you have? I had a similar problem with my previous pc which had 512MB. I had a large project and sometimes on opening the Package Explorer it freezed the system. Upgrading tot 1 GB was sufficient for me. On 12 dec, 12:11,

Re: Disable backspace

2009-12-12 Thread Ian Bambury
You could try Window.addWindowClosingHandler(handler) and put out a 'Do you really want to leave this page?' message, or you can have a look at addEventPreview Ian http://examples.roughian.com === If Global Warming is being discussed,

Re: OOPHM is slow

2009-12-12 Thread Chris Lowe
Hi guys, I too have been stung by these performance issues and, although things are not yet as good as they can be, I found the following helpful: Make sure localhost is defined in your /etc/hosts file. More info here:

how do issues get handled with new versions?

2009-12-12 Thread mwaschkowski
Hi, How do older issues that have been logged get handled as gwt moves forward with new versions? http://code.google.com/p/google-web-toolkit/issues/detail?id=2802can=5 Are they going to be addressed at some point? This one was a high priority issue for 1.6, but its still open - can anyone

i8N edge case: user change to browser language settings amidst GWT app use?

2009-12-12 Thread Grary
Hi, Anyone care to comment on the need to anticipate that a user will switch their browser's language settings mid-use in a GWT app, thereby encountering the problem that i8N constants are compile-time? Thanks, Grary -- You received this message because you are subscribed to the Google Groups

Re: Deprecated SerializableException

2009-12-12 Thread Brian Dorry
Has anyone found a solution to this? I haven't experienced any runtime problems ignoring these messages but I'd like to follow a newer standard if it exists. On Dec 10, 2:56 pm, Robert J. Carr rjc...@gmail.com wrote: Actually, I tend to *only* use Exception for my remote service methods and I

Re: GWT + Spring Security

2009-12-12 Thread sridhar vennela
Hi Jonathan, Do you have sample code, i am looking for sample app with Gwt and spring secturity. please help me... thanks, Sridhar On Fri, Dec 11, 2009 at 6:58 PM, jonathan.hollo...@gmail.com jonathan.hollo...@gmail.com wrote: Awesome, I'll take a look at it... On Dec 11, 12:41 am, olivier

Can anyone help me add jars

2009-12-12 Thread darkling
I'm just learning GWT right now, I'm actually using smartGWT and building inside Eclipse using eclipse's GWT plugin. I'm trying to build a simple application where the smartGWT front end talks to a standard smartclient servlet backend. My problem is at run time all the jars I've tried to install

Re: Why Label widget chose to use div instead of label?

2009-12-12 Thread philippe
Label tag must be used with input ID. With GWT we can't put an ID on input tag so the label tag can't be used. I think that ID aren't authorized for avoid the double ID in the DOM and bugs. HTML 4.01 or XHTML 1.1 are older. I hope that futur HTML version will provide better management of dynamic

DevMode fails binding for com.google.gwt.user.client.impl.HistoryImpl

2009-12-12 Thread Tristan
Hey, I started getting this error when launching DevMode, can anyone point me in the right direction? 10:49:16.348 [DEBUG] Rebinding com.google.gwt.user.client.impl.HistoryImpl 10:49:16.351 [DEBUG] Checking rule replace-with class='com.google.gwt.user.client.impl.HistoryImplIE6'/ Error while

Re: DevMode fails binding for com.google.gwt.user.client.impl.HistoryImpl

2009-12-12 Thread Tristan
It appears that updating my Safari GWT Plugin solved the problem. However, nothing in that error or the browser indicated that the Plugin should have been updated. On Dec 12, 10:57 am, Tristan tristan.slomin...@gmail.com wrote: Hey, I started getting this error when launching DevMode, can

Re: OOPHM is slow

2009-12-12 Thread Chris Lowe
Actually, for now, the FireFox plugin seems to be *much* quicker that Chrome's. On Dec 12, 3:20 pm, Chris Lowe chris.lowe...@gmail.com wrote: Hi guys, I too have been stung by these performance issues and, although things are not yet as good as they can be, I found the following helpful:

SV: GWT + Spring Security

2009-12-12 Thread Hermod Opstvedt
Hi You don't have to worry about the security on the client (GWT) side. This is all handled on the server side. Any sample involving Acegi (Struts security) will suffice. But anyway, heres a sample: http://code.google.com/p/gwt-ent/wiki/IntegrationGWTWithAcegi Hermod -Opprinnelig

Re: Where to put server-configuration property files?

2009-12-12 Thread jbdhl
Eh, but putting the config files in the war file makes them context- independent which was exactly what I didn't want? In that case all installations would ship with the same config file and upgrading from release N to N+1 would override the config file. I fail to see how putting the config files

Re: GWT + Spring Security

2009-12-12 Thread sridhar vennela
thanks On Sat, Dec 12, 2009 at 9:52 AM, Hermod Opstvedt hermod.opstv...@gmail.comwrote: Hi You don't have to worry about the security on the client (GWT) side. This is all handled on the server side. Any sample involving Acegi (Struts security) will suffice. But anyway, heres a sample:

Re: Compile Gin-enabled GWT application with ant

2009-12-12 Thread Chris
This is what my StepInjector looks like: package com.tyndalehouse.step.web.client.gin; import net.customware.gwt.dispatch.client.gin.ClientDispatchModule; import net.customware.gwt.presenter.client.place.PlaceManager; import com.google.gwt.inject.client.GinModules; import

Re: GWT 2.0 - com.google.gwt.user.client.rpc.IsSerializable is mandatory again?

2009-12-12 Thread John V Denley
Yup, Ive got the same problem having just upgraded to 2.0.. G On Dec 12, 12:27 am, Dop Sun dop...@gmail.com wrote: While I upgraded my project settings to 2.0 (via Google Eclipse Plugin), and have a runtime error while running in development mode:

Re: GWT 2.0 - com.google.gwt.user.client.rpc.IsSerializable is mandatory again?

2009-12-12 Thread John V Denley
Actually, sorry, not sure ive got the SAME problem, I have: com.google.gwt.user.client.rpc.SerializationException: Type 'com.ideba.net.client.LoginInfo' was not assignable to 'com.google.gwt.user.client.rpc.IsSerializable' and did not have a custom field serializer.For security purposes, this

Re: Why Label widget chose to use div instead of label?

2009-12-12 Thread philippe
I've a solution to use a label with an input. Is to use Html GWT widget to create this: lt;labelgt; Description lt;input type=text name=description /gt; lt;/labelgt; On 12 déc, 17:49, philippe vonck...@yahoo.fr wrote: Label tag must be used with input ID. With GWT we can't put an ID on

Re: UI Binder, really a good approach?

2009-12-12 Thread philippe
Using annotations to define the presentation is a bad practice, as being able to define the size of components in Java. The best way to separate the presentation logic is to give a class name to an element and define its presentation in a separate CSS file. See csszengarden as reference.

Re: Why Label widget chose to use div instead of label?

2009-12-12 Thread philippe
Ok it's the last :) I've a solution to use a label with an input. Is to use Html GWT widget to create this: label Description input type=text name=description / /label On 12 déc, 20:35, philippe vonck...@yahoo.fr wrote: I've a solution to use a label with an input. Is to use Html GWT widget

No UIBinder Event Handers in GWT 2.0?

2009-12-12 Thread Transplant
The GWT 2.0 announcement got me all excited about the UIBinder, but I can't seem to make the demo event handlers function. Is there some module XML magic required to enable this? I created a new eclipse GWT project, and added demo code from the source release, and although the demo widgets are

Re: UI Binder, really a good approach?

2009-12-12 Thread mP
In all technologies building the equivalent using the approapriate native language is a pain, it takes a lot more lines to achieve the same thing. Conciseness is always a good thing. Any complex layout involving more than a few panels and widgets becomes hard to visualize when one stares at the

GWT.log on GWT 2.0

2009-12-12 Thread Pion
I have just done the following: 1. Download the GWT 2.0 2. Call 'GWT.log(debug, null);' 3. Run it on my Eclipse-Galileo 4. Open Firefox 3.5.5 5. http://localhost:/foo.html. My page shows up as expected 6. Turn on Firebug 1.4.5 7. Enable Firebug console 8. Refresh I don't see any debug

Re: No UIBinder Event Handers in GWT 2.0?

2009-12-12 Thread Sekhar
Add it as a widget: RootPanel.get().add(demo); On Dec 12, 1:13 pm, Transplant transplant...@gmail.com wrote: The GWT 2.0 announcement got me all excited about the UIBinder, but I can't seem to make the demo event handlers function. Is there some module XML magic required to enable this? I

Re: GWT.log on GWT 2.0

2009-12-12 Thread Shawn Brown
Where did the GWT.log() output go on GWT 2.0? I see it in the Developer Mode console under the tab for my app that appears after I hit launch default browser. What did I do wrong? Not sure but to log in firebug I use: http://code.google.com/p/gwt-log/ Shawn -- You received this message

Re: Adding a list of items to a widget using UiBinder

2009-12-12 Thread Dave Finch
I have found the answer to my own question. The parser used for UIObjects is UIObjectParser which does not allow any child elements. Currently in the SDK there is no way to register a custom parser (although there is a TODO in the code to add such a mechanism). So with the SDK as it is the only

Re: gwt 2.0 + apache + rpc pls help

2009-12-12 Thread ben fenster
pls can anyone help On 12 דצמבר, 12:19, ben fenster fenster@gmail.com wrote: the urls are fine do i need any special configuration or special mods for apache i currently use standart apache in xamp On 12 דצמבר, 11:41, Nicanor Cristian nicanor.bab...@gmail.com wrote: Check out the

Re: UI Binder, really a good approach?

2009-12-12 Thread Robert Zaleski
After reading the posts, I just had to chime in. I would like to start with UIBinder wasn't on my list of reasons for making our team jump from 1.7 to 2.0 early, but when I finally had a place to use UIBinder, I became enamoured with it. The design for any website boils down to HTML/CSS. If

Re: 404 accessing servlet when Apache in front of Tomcat

2009-12-12 Thread ben fenster
i get the same error with xamp did u figure it out ? On 8 דצמבר, 05:09, jalynn2 joe.a.l...@gmail.com wrote: I developed my GWT1.7  module using Tomcat 5.5, and everything works fine. When I deployed to my production site, I get a 404 when the form tries to call the servlet. The production

Re: Why Label widget chose to use div instead of label?

2009-12-12 Thread Yozons Support on Gmail
The use of LABEL tags is useful for accessibility. Just like TH is useful for tables, though a TD will suffice, this is less the case when attempting to be accessible. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Re: GWT 2.0 - com.google.gwt.user.client.rpc.IsSerializable is mandatory again?

2009-12-12 Thread Dop Sun
Thx John: The way I fixed it is a little bit different: I deleted all files generated by old compiler, and then, the problem disappeared. I guess, the problem is because the new compiler is different from the new compiler. Cheers. Dop On Dec 13, 4:47 am, John V Denley johnvden...@googlemail.com

Re: i8N edge case: user change to browser language settings amidst GWT app use?

2009-12-12 Thread Shawn Brown
Anyone care to comment on the need to anticipate that a user will switch their browser's language settings mid-use in a GWT app, thereby encountering the problem that i8N constants are compile-time? That only seems to reload the application which could be dealt with by using history to get you

Re: GWT 2.0 - com.google.gwt.user.client.rpc.IsSerializable is mandatory again?

2009-12-12 Thread tekgrunt
I am losing my mind... I just upgraded to GWT 2.0 on OSX 10.5 using Eclipse 3.5 App Engine SDK 1.2.8 and previously working server calls are now not working. When the application starts it grabs some data from the server and this is still working. When I try to have a user login I get the

Re: GWT 2.0 - com.google.gwt.user.client.rpc.IsSerializable is mandatory again?

2009-12-12 Thread tekgrunt
@Dop Sun Could you tell me which files were/are created by the old compiler? I have tried cleanign and refreshing a bunch of stuff but maybe I am missing something. Thanx. On Dec 12, 5:12 pm, Dop Sun dop...@gmail.com wrote: Thx John: The way I fixed it is a little bit different: I deleted

Re: Development mode crashes Safari 4.0.4 in OS X 10.4

2009-12-12 Thread PaulG
On Dec 11, 1:48 am, Jan Ehrhardt jan.ehrha...@googlemail.com wrote: This is a Safari issue not a GWT one. Safari crashes will always crash, when you do a refresh with open Inseptoctor window. It's NOT just a Safari issue. I am also running OS X 10.4 I downloaded GWT 2.0 for the first time

Re: GWT 2.0 - com.google.gwt.user.client.rpc.IsSerializable is mandatory again?

2009-12-12 Thread John
I have the same error in Hosted Mode. Production is fine. Making all my types implement IsSerializable fixes the problem, but I'd really rather not have to tie all my objects to GWT like that. P.S: Maybe unrelated, I get this warning with the IsSerializable fix. I'm getting multiple .rpc files in

Re: Problem with JSON in Stockwatcher Sample

2009-12-12 Thread David
I ran into this problem too. It looks like there is some caching going on so that repeated requests with the same list of stocks will return cached results. I was able to fix this by adding the following code to the top of the doGet method in JsonStockData: if

plugin does not show up

2009-12-12 Thread r a f t
hi, i've just installed gwt plugin to eclipse-jee-galileo-SR1 64 bit on ubuntu 9.1. installation went smooth and i've restarted eclipse but plugin is missing. i cant see it in preferences, in launch configurations dialog, in new categories. it's just missing. error logs says nothing about it. i

UIBinder rejects empty attributes on upgrading from RC to 2.0 release

2009-12-12 Thread Sean Stephenson
I've been developing an app with UIBinder using GWT 2.0 RC. Today, I tried dropping in the final release jar, and got all sorts of build errors. It seems that anywhere I have an element like this: g:TextBox ui:field=firstname text= name=firstName/ The compiler complains about the text

Parsing hash variables in the querystring?

2009-12-12 Thread Dan
Howdy, I am storing variables in the querystring after the hash mark ( using History.newItem() ) to avoid a page refresh. Is there an easy way to parse those variables similar to Window.Location.getParameter ? Window.Location.getHash returns the whole string. Thanks. -- You received this

Google Maps API - catching key pressed inside MarkerClickHandler

2009-12-12 Thread Marco Visonà
Hello I'm developing a custom map, using GWT and the Google Map API library for GWT. I would like to verify if the user holds down the Alt key when he click on a marker in a Google Map. My idea was the following: Marker m = ... m.addMarkerClickHandler(new MarkerClickHandler() { @Override

GWT Incubator update for GWT 2.0?

2009-12-12 Thread Timmy G
Anyone know when we can expect to see the incubator project get refreshed for GWT 2.0? -- 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 this group,

Unable to mirror Eclipse 3.5 update site

2009-12-12 Thread Robert Munteanu
Hi, I'm not able to update using the Eclipse update manager ( No repository found containing: ... ) , and I've tried to mirror the update site, using java -jar /opt/eclipse/plugins/ org.eclipse.equinox.launcher_1.0.201.R35x_v20090715.jar -application org.eclipse.update.core.standaloneUpdate

code splitting: interpreting the result

2009-12-12 Thread chris
Hi, if have a GWT application using the GXT library (http:// www.extjs.com). My Application has on the top a toolbar with a lot of menu-entries. every menu-entry opens a Window (from GXT) with serveral UI-elements on it. i want to prevent loading all the Windows from my app at startup. so i built

[gwt-contrib] Re: Comment on UiBinderI18n in google-web-toolkit

2009-12-12 Thread codesite-noreply
Comment by chris.lowe.uk: Like benzheren, and despite rjrjr's advice, I also cannot locate the generated property files. Is the aux folder supposed to be generated automatically? If so, where? My source folder, temp or part of output files? Also, I'm not sure where files should live after

[gwt-contrib] Re: Comment on UiBinderI18n in google-web-toolkit

2009-12-12 Thread codesite-noreply
Comment by sami.jaber: Ray, Don't know if you remember but when UIBinder/i18n feature was initially designed I warn you that asking to users to -aux the generator to guess for the right file properties name doesn't make sense. Those comments confirms my fear (and my day to day experience

[gwt-contrib] Problems with UiBinder Internals

2009-12-12 Thread jarrod
I created a widget to embed a Java applet in my web page. Since IE requires an object tag while other browsers need a embed tag, I used deferred binding to get the correct implementation and used UiBinder to setup the HTML. However, in IE, when the Widget is inserted into the page, the HTML is way

[gwt-contrib] Re: Problems with UiBinder Internals

2009-12-12 Thread jarrod
The last two lines of the entry point code should read: GWT.log(impl.getElement().getInnerHTML(), null); RootPanel.get(uploader).add(impl); That was a copy/paste problem on the post and not in my code. So the problem isn't that... ;-) On Dec 12, 5:55 pm, jarrod