GWT-EXT and GWT 2.0

2010-01-29 Thread Roger Studner
Anyone have experience with mixing these two beasts? I have a GWT 1.5.3 based project that is using GWT-EXT (the old, free/opensource-ish versus that wrapped ExtJS). I'm not talking about GXT or EXT-GWT (yes, I know, confusing names) Roger -- You received this message because you are subscrib

Re: IncompatibleRemoteServiceException with -noserver argument in gwt 2.0

2010-01-28 Thread Rajeev Dayal
Hi, If you want to pick up changes to your server code while the development server is running, you need to deploy your application in exploded-war format to JBoss. When you run GWT in -noserver mode, you should point your -war directory over to your JBoss server's deployment directory - that way

GWT 2.0 and EclEmma code coverage

2010-01-28 Thread CVdS
Hi All, Did someone manage to correctly run EclEmma code coverage with GWT 2.0? I tried it many times with Eclipse 3.5, with both EclEmma 1.3.2 and 1.4.3, both updated (with emma.jar published on the GWT site) and not, the results are always the same: The console says something like [WARN

Re: Announcing GWT 2.0 and much, much more...

2010-01-27 Thread Sreekanth B
hi On Thu, Jan 28, 2010 at 10:30 AM, ni...@stsoftware.com.au < ni...@stsoftware.com.au> wrote: > Where is the Netbeans support ? > perhaps the following link will help http://googlewebtoolkit.blogspot.com/2007/12/developing-gwt-applications-with.html

Re: Announcing GWT 2.0 and much, much more...

2010-01-27 Thread ni...@stsoftware.com.au
Where is the Netbeans support ? -- 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, send email to google-web-toolkit+unsubscr...@googleg

Google Plugin for Eclipse with RAD 7.0??? (GWT 2.0 with RAD 7.0)

2010-01-27 Thread JohnnyGWT
or in the 'Updates' dialog box: "Google Plugin for Eclipse 3.3 (1.2.0.v200912070510) requires plug-in "org.eclipse.core.runtime (3.3.0)", or equivalent." If not, have you used another plugin with RAD & GWT 2.0? I'm currently using Cypal Studio RC 3 with RAD 7

Re: Added value of UIBinder in gwt 2.0?

2010-01-27 Thread Cristiano
ave > >> all of that anonymous class nonsense written for you. > > >> public class MyFoo extends Composite { > >>   @UiField Button button; > > >>   public MyFoo() { > >>     initWidget(button); > >>   } > > >>   @UiHandler(&qu

Re: Added value of UIBinder in gwt 2.0?

2010-01-27 Thread Mirco
>> @UiHandler("button") >> void handleClick(ClickEvent e) { >> Window.alert("Hello, AJAX"); >> }} >> >> ----------- >>

Re: Added value of UIBinder in gwt 2.0?

2010-01-27 Thread Djay
> Hope this helps. > > Cheers, >   Mirco > > On Jan 26, 2010, at 7:04 PM, Djay wrote: > > > > > Hello, > > > I've started using gwt for a couple of weeks and still face a question > > on which I couldn't find any good answer. > > What is th

Re: Loading Javascript menu with GWT 2.0

2010-01-27 Thread bond
Any suggestion about? Thanks! On 26 Gen, 09:18, bond wrote: > Hi, > I've a small application made with GWT 2.0 + UI Binder with MVP > pattern. > I'm using a css premade template with a menu that is animated by > jquery. > In order to avoid to rewrite css I&#x

Re: GWT 2.0 UI BINDER MVP

2010-01-27 Thread Dalla
If someone is interested, I solved this by injecting my child view both into their respective presenters, aswell as into the parent view, like so: CouponWidget couponWidget = new CouponWidget(); GameStatsWidget gameStatsWidget = new GameStatsWidget(); CouponPresenter coupo

Re: GWT 2.0 Serialization policy Development Mode JBoss 5

2010-01-27 Thread Alexander
metimes I refresh and it find the > serialization policy, and sometimes is not finding it. All my classes > implements Serializable and have empty constructor. I have read that > adding IsSerializable is solving the problem, but I am reading my data > classes from a Jar deployed from another p

Re: GWT 2.0 ParseException with SerializationPolicyLoader

2010-01-27 Thread Papick Garcia Taboada
n the classpath... Am 27.01.2010 um 11:15 schrieb George Georgovassilis: > Hello Papick, > > I had some of that too. You're not doing deRPC by any chance? Mind > pasting some stacktraces? > > On Jan 26, 10:22 am, "P.G.Taboada" wrote: >> Hi, >> &

Re: GWT 2.0 ParseException with SerializationPolicyLoader

2010-01-27 Thread Alexander
> > Am 27.01.2010 um 11:15 schrieb George Georgovassilis: > > > Hello Papick, > > > > I had some of that too. You're not doing deRPC by any chance? Mind > > pasting some stacktraces? > > > > On Jan 26, 10:22 am, "P.G.Taboada" wrote: > >

Re: GWT 2.0 ParseException with SerializationPolicyLoader

2010-01-27 Thread Papick Garcia Taboada
d some of that too. You're not doing deRPC by any chance? Mind > pasting some stacktraces? > > On Jan 26, 10:22 am, "P.G.Taboada" wrote: >> Hi, >> >> I am having trouble with GWT 2.0. I am trying to switch from 1.7 to >> 2.0, everything compiles f

Re: GWT 2.0 ParseException with SerializationPolicyLoader

2010-01-27 Thread George Georgovassilis
Hello Papick, I had some of that too. You're not doing deRPC by any chance? Mind pasting some stacktraces? On Jan 26, 10:22 am, "P.G.Taboada" wrote: > Hi, > > I am having trouble with GWT 2.0. I am trying to switch from 1.7 to > 2.0, everything compiles fine, but...

RE : Re: Added value of UIBinder in gwt 2.0?

2010-01-26 Thread Gerald
Thank you for those points you mentioned. Actually in my case we are developers and so would have a preferences in java code rather than in xml instructions. What I also wonder is if there are some optimisations in using one or the other method. Do you have any idea? Le 26 janv. 2010, 7:57 PM, "M

Re: GWT Incubator update for GWT 2.0?

2010-01-26 Thread WiseBoggz
ew release resolves these. > > > Thanks! > > > On Dec 27 2009, 11:43 pm, Chris Ramsdale wrote: > > > > We're currently working on this and will send out an update shortly. In > > > the > > > meantime, any feedback regarding issues that you are

Re: Added value of UIBinder in gwt 2.0?

2010-01-26 Thread Mirco
7:04 PM, Djay wrote: > Hello, > > I've started using gwt for a couple of weeks and still face a question > on which I couldn't find any good answer. > What is the added value of the UIBinder in gwt 2.0? > > For example, in my class, I can do: > VerticalPanel vertPanel = n

Added value of UIBinder in gwt 2.0?

2010-01-26 Thread Djay
Hello, I've started using gwt for a couple of weeks and still face a question on which I couldn't find any good answer. What is the added value of the UIBinder in gwt 2.0? For example, in my class, I can do: VerticalPanel vertPanel = new VerticalPanel(); vertPanel.setSize(); and

Re: GWT Incubator update for GWT 2.0?

2010-01-26 Thread Jim Douglas
send out an update shortly. In the > > meantime, any feedback regarding issues that you are are experiencing with > > the GWT Incubator and GWT 2.0 are greatly appreciated. > > > - Chris > > > On Fri, Dec 11, 2009 at 1:48 PM, Timmy G wrote: > > >

Re: GWT Incubator update for GWT 2.0?

2010-01-26 Thread WiseBoggz
wrote: > We're currently working on this and will send out an update shortly. In the > meantime, any feedback regarding issues that you are are experiencing with > the GWT Incubator and GWT 2.0 are greatly appreciated. > > - Chris > > > > On Fri, Dec 11, 2009 at 1:48 PM,

Re: GWT 2.0 Upgrade Problem

2010-01-26 Thread m.mil...@newelements.de
hi, i´m impressed about the quick reply! at first i develop the application on jboss 5.1.0. everything works fine in development mode but since i tried it on the joss i have a couple of problems. so the first "application" is the name of the application. the second "application" is the name of th

Re: GWT 2.0 UI BINDER MVP

2010-01-26 Thread Dalla
To clarify what I´m looking for, let´s assume that I´m working with Googles MVP Contacts example. Instead of having EditContactView and ContactsView as completly separate views, I want to add them to a DockLayoutPanel, showing both views at the same time. Let´s assume that I want to put the Contac

Re: GWT 2.0 Upgrade Problem

2010-01-26 Thread Chris Ramsdale
On Tue, Jan 26, 2010 at 6:21 AM, m.mil...@newelements.de < m.mil...@newelements.de> wrote: > No, i definetly mean not the XYZ.nochache.js. > > Here is a line from my firebug: > http://localhost:8080/application/64CE9F3B21EDFDB2ADBA49308C361972.cache.js > > this is what gwt tries to load, but the f

Re: GWT 2.0 Serialization policy strongName changes on refresh

2010-01-26 Thread PKolenic
The only time I have this kind of problem is when I am working in Dev mode. It seems that Eclipse caches the nocache.js file (Which tells the browser which gwt.rpc to load). Normally I don't do a rebuild unless I have changed something on the backend so I remember most of the time to stop and resta

Re: GWT 2.0 UI BINDER MVP

2010-01-26 Thread Stine Søndergaard
That is the question I felt like asking as well, Dalla. -- 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, send email to google-web-too

Re: GWT 2.0 Upgrade Problem

2010-01-26 Thread m.mil...@newelements.de
No, i definetly mean not the XYZ.nochache.js. Here is a line from my firebug: http://localhost:8080/application/64CE9F3B21EDFDB2ADBA49308C361972.cache.js this is what gwt tries to load, but the file is definetly reachable under this path: http://localhost:8080/application/application/64CE9F3B21ED

Re: GWT 2.0 Upgrade Problem

2010-01-26 Thread m.mil...@newelements.de
No, i definetly mean not the XYZ.nochache.js. Here is a line from my firebug: http://localhost:8080/application/64CE9F3B21EDFDB2ADBA49308C361972.cache.js this is what gwt tries to load, but the file is definetly reachable under this path: http://localhost:8080/application/application/64CE9F3B21ED

GWT 2.0 Serialization policy strongName changes on refresh

2010-01-26 Thread mijaelovic
I was having problems with deploying my web app in external server Jboss. I recently figured out that the strongName of the gwt.rpc changes every time I refresh the page. Can someone explains me how to avoid this?, or if this is a bug?. An output here: 10:49:52,593 INFO [STDOUT] Module base URL

GWT 2.0 ParseException with SerializationPolicyLoader

2010-01-26 Thread P.G.Taboada
Hi, I am having trouble with GWT 2.0. I am trying to switch from 1.7 to 2.0, everything compiles fine, but... When I deploy my app I (unfortunately) have my rpc servlets in a different path. Don't ask me why, I simply can't change this. So my RPC servlets are /somewhere/here and my

Re: GWT 2.0 uiBinder not completely working with DockPanelLayout (for me that is)

2010-01-26 Thread Djay
w if this helped. > > Cheers > Phil > > On Jan 25, 4:26 am, Joe Hudson wrote: > > > > > Hello, > > > I am new to GWT 2.0 and was trying out the uiBinder.  I have a simple > > test project to get my feet wet and it isn't working as expected.  I > &

Loading Javascript menu with GWT 2.0

2010-01-26 Thread bond
Hi, I've a small application made with GWT 2.0 + UI Binder with MVP pattern. I'm using a css premade template with a menu that is animated by jquery. In order to avoid to rewrite css I'd like to use the menu that is

Re: GWT 2.0 UI BINDER MVP

2010-01-25 Thread Dalla
And what would you do, if the AppController does not contain both the presenter and the view (which should be the case IMHO). How would that code look? On 25 Jan, 18:35, jarrod wrote: > The constructors in the last post should have been as follows: > >   public AppControler(ServiceAsync service,

GWT 2.0 Serialization policy Development Mode JBoss 5

2010-01-25 Thread mijaelovic
ta classes from a Jar deployed from another project. I am using GWT 2.0, Eclipse 3.4, JBoss 5.0, Java 5, my application is deployed within an EAR, with Java Beans and the War inside the Ear. Regards -- You received this message because you are subscribed to the Google Groups "Google Web To

Re: GWT 2.0 uiBinder not completely working with DockPanelLayout (for me that is)

2010-01-25 Thread Ewald Pankratz
Body West South On Jan 24, 8:26 pm, Joe Hudson wrote: > Hello, > > I am new to GWT 2.0 and was trying out the uiBinder.  I have a simple >

Re: GWT 2.0 UI BINDER MVP

2010-01-25 Thread Stine Søndergaard
... And how would the code example look if it was done the way you describe in your first paragraph? -- 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 f

Re: GWT 2.0 UI BINDER MVP

2010-01-24 Thread jarrod
>From what I've read and done with MVP, you would generally implement your View as two separate classes (HeaderView and HeaderPresenter). Were that the case, your App.ui.xml wouldn't contain the actual views, but rather placeholder slots for the children that the Presenter would get from the child

Re: GWT 2.0 uiBinder not completely working with DockPanelLayout (for me that is)

2010-01-24 Thread Sebastian
htmlpanels Best Regards Sebastian Hennebrueder On Jan 24, 8:26 pm, Joe Hudson wrote: > Hello, > > I am new to GWT 2.0 and was trying out the uiBinder.  I have a simple > test project to get my feet wet and it isn't working as expected.  I > am only seeing the north and west sections

Re: GWT 2.0 - SOP and Development Mode

2010-01-24 Thread Fabiano
On 23 Gen, 02:45, Ashish Khivesara wrote: > Actually I was able to bypass the SOP issue using a client-side solution. > > GWT Documentation provides an > Example

GWT 2.0 uiBinder not completely working with DockPanelLayout (for me that is)

2010-01-24 Thread Joe Hudson
Hello, I am new to GWT 2.0 and was trying out the uiBinder. I have a simple test project to get my feet wet and it isn't working as expected. I am only seeing the north and west sections in FireFox (not the center and south sections) and in IE I see nothing at all. Could anyone please he

Has anyone had luck using an array in a uibinding with GWT 2.0?

2010-01-23 Thread PKolenic
As an example, I would like to have an array of widgets. The advantages to this is that the code is more compact, at least with regards to event handling. If I have ten buttons, then I don't have to have ten functions, just one in which I check the source of the event. Prior to GWT 2.0 I h

No Jetty Tab GWT 2.0 Eclipse

2010-01-23 Thread Fletch
Upon upgrading to GWT 2.0 on my laptop I am able to take advantage of the new "Development Mode" and run GWT applications in my browser without any error. Unfortunately there is basically no error logging like 1.71, there is no way to debug server interactions that I can see. Can some

Re: Curiosity about GWT 2.0 - related to ClickHandler

2010-01-22 Thread Cristian Nicanor Babula
Ok. Thanks. On 01/22/2010 05:38 PM, Paul Robinson wrote: As the javadoc for Hyperlink.addClickHandler() says, you should use an Anchor instead of Hyperlink if you want to add a handler. Hyperlinks are intended as history event inducing widgets only. Paul Cristian Nicanor Babula wrote: Hi

Re: Curiosity about GWT 2.0 - related to ClickHandler

2010-01-22 Thread Paul Robinson
As the javadoc for Hyperlink.addClickHandler() says, you should use an Anchor instead of Hyperlink if you want to add a handler. Hyperlinks are intended as history event inducing widgets only. Paul Cristian Nicanor Babula wrote: > Hi everyone. > > Why Hyperlink.addClickHandler() is deprecated? >

Curiosity about GWT 2.0 - related to ClickHandler

2010-01-22 Thread Cristian Nicanor Babula
Hi everyone. Why Hyperlink.addClickHandler() is deprecated? I can't see a reason. How am I supposed to handle the onClick event of a Hyperlink? Thanks, Cristian. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, se

Re: GWT 2.0 - Eclipse Plugin - Maven: 404 running in DevMode

2010-01-22 Thread Keith Platfoot
o use a regular Java launch. However, we're planning on addressing this issue in the next release of the plugin, so stay tuned. Keith On Mon, Jan 18, 2010 at 9:35 AM, Jim Adkins wrote: > I'm receiving a "404" status code when attempting to use the GWT 2.0 > Eclipse plug-i

ClassCastException in DevMode on GWT 2.0 w/ Overlay Types

2010-01-22 Thread Roger Studner
I'm trying to do this: public interface Alert { public ArrayList getOtherAlerts(); } Client Code: public class JSAlert extends JavaScriptObject implements Alert { public final native ArrayList getOtherAlerts() /*-{ return this.alerts; }-*/; } another class: public void onModuleLoa

Re: GWT 2.0 UI BINDER MVP

2010-01-22 Thread Stine Søndergaard
Looking so much forward to read the answers to this issue :) I am totally stuck in a similar situation... -- 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 unsubscr

GWT 2.0 UI BINDER MVP

2010-01-22 Thread bond
Hi, I read several articles about the mvp model in gwt. This guide is very usefull: http://code.google.com/intl/it-IT/webtoolkit/doc/latest/tutorial/mvp-architecture.html. But is not clear to me how to manage the Presenters with UiBinder. For example if I've a tipical application with header,side

Re: Cannot debug GWT 2.0 app embedded within external iframe

2010-01-21 Thread Stevko
r is important > >   var pluginFinders = [ > >     findPluginXPCOM, > >     findPluginObject, > >     findPluginEmbed, > >   ]; > >   var topWin = window; > >   var url = topWin.location.href; > >   if (!topWin.__gwt_SessionID) { > > > On Jan 8, 10:25 pm,Ste

Re: GWT 2.0 - SOP and Development Mode

2010-01-21 Thread preacher860
Ok, nevermind. I took the brute force approach and recompiled firefox with the SOP feature disabled. In case anyone needs to do that: I just made a change in the SecurityCompareURIs() function so that it would always return PR_TRUE. Ajax works again in the debugger, ahhh! On Jan 19, 9:37 pm, p

Re: "gwt-servlet.jar" being deleted at each Eclipse startup after upgrading to gwt 2.0

2010-01-21 Thread Supercobra Thatbytes
n 18, 2010 at 4:20 PM, Erik Uzureau wrote: > > > > A colleague of mine seems to have found a solution to this: > > > >http://code.google.com/p/google-web-toolkit/issues/detail?id=4463#c7 > > > > > On Jan 18, 5:54 pm, Erik Uzureau wrote: > > > >>

Re: Problem switching to GWT 2.0 from GWT 1.6 (mysql related I think)

2010-01-21 Thread Shawn Brown
> Hello, Did you find the solution? There is none. AppEngine doesn't support using mysql and so it was throwing an error. Unless AppEngine adds mysql support I don't see anything that can be done. Use the storage api offered by AppEngine. Shawn -- You received this message because you are s

Re: "gwt-servlet.jar" being deleted at each Eclipse startup after upgrading to gwt 2.0

2010-01-20 Thread Jeff Schnitzer
lem with some of the GAE jars.  It's >> > really, really annoying but I don't have time to rebuild my eclipse >> > install from scratch... >> >> > Jeff >> >> > On Mon, Jan 18, 2010 at 4:20 PM, Erik Uzureau wrote: >> > > A colle

Re: Using Gilead with GWT 2.0 ms1

2010-01-20 Thread Trevor Skaife
ion while dispatching incoming RPC call > > > java.lang.NoSuchMethodError: > > net.sf.beanlib.hibernate.UnEnhancer.unenhanceClass(Ljava/lang/Class;)Ljava/ > > lang/Class; > > I am getting this using gilead with hibernate with GWT 2.0, and I suspect > > that I am h

Datanucleus entity serialization and GWT 2.0

2010-01-20 Thread Dan Billings
Does GWT 2.0 do anything to ease the pain of serializing datastore entities (e.g. Key) to be sent through GWT-RPC? I know Gilead is an option, but it needs an official update for 2.0. I emailed Bruno and he said he thinks GWT 2.0 addresses this, but I have not found evidence of that. Also an

Re: "gwt-servlet.jar" being deleted at each Eclipse startup after upgrading to gwt 2.0

2010-01-20 Thread Erik Uzureau
5:54 pm, Erik Uzureau wrote: > > >> The real question here is what do we all (on this thread) have in > > >> common that the rest of the world doesn't. > > > >> Surely we are more than 6 people in the world using GWT 2.0 are we > > >> th

Re: Problem switching to GWT 2.0 from GWT 1.6 (mysql related I think)

2010-01-20 Thread Acerezo
own Source) > >         at java.util.Timer.(Unknown Source) > >         at java.util.Timer.(Unknown Source) > >         at com.mysql.jdbc.ConnectionImpl.(ConnectionImpl.java:208) > > Notice the "access denied" part. I think this has nothing to do with > GWT 2.0. -- You

GWT 2.0 - SOP and Development Mode

2010-01-20 Thread preacher860
Hi there, As many people, I'm experiencing troubles while trying to debug an application in Development Mode when it tries to retrieve some JSON data from a remote server. It's obviously a Same Origin Policy problem but I can't find a satisfying solution to this issue. The setup is quite simple:

Re: FW: problem compiling gwt 2.0 using ant

2010-01-20 Thread Sergey
Make sure, that you have just one version of GWT libraries in classpath, it works for me. -- 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 gro

Re: Gilead 1.3 + Hibernate + GWT 2.0

2010-01-20 Thread Marcos Alcantara
Ivens wrote: > Thanks! > > On Wed, Jan 20, 2010 at 7:46 AM, Richard Berger > wrote: > > > > > I had Gilead 1.2.3 working with GWT 1.6 and Hibernate 3.3.2 then > > upgraded to Gilead 1.3, GWT 2.0 and Hibernate 3.3.2.  I never ran into > > the problem that you a

Re: Gilead 1.3 + Hibernate + GWT 2.0

2010-01-20 Thread John Ivens
Thanks! On Wed, Jan 20, 2010 at 7:46 AM, Richard Berger wrote: > I had Gilead 1.2.3 working with GWT 1.6 and Hibernate 3.3.2 then > upgraded to Gilead 1.3, GWT 2.0 and Hibernate 3.3.2. I never ran into > the problem that you are seeing. > My .classpath file in Eclipse has: > ..

Re: Gilead 1.3 + Hibernate + GWT 2.0

2010-01-20 Thread John Ivens
I don't strictly need Gilead 1.3... I'd be happy to get 1.2.3 working... On Wed, Jan 20, 2010 at 7:10 AM, mig wrote: > I've got Gilead 1.2.3 set up and working with Gilead and GWT 2.0 RC2 > in both stateless proxy mode and dynamic proxy mode. Although there > are so

Re: Gilead 1.3 + Hibernate + GWT 2.0

2010-01-20 Thread Richard Berger
I had Gilead 1.2.3 working with GWT 1.6 and Hibernate 3.3.2 then upgraded to Gilead 1.3, GWT 2.0 and Hibernate 3.3.2. I never ran into the problem that you are seeing. My .classpath file in Eclipse has

Re: Gilead 1.3 + Hibernate + GWT 2.0

2010-01-20 Thread mig
I've got Gilead 1.2.3 set up and working with Gilead and GWT 2.0 RC2 in both stateless proxy mode and dynamic proxy mode. Although there are some problems with dynamic proxy generators (not Gileads fault), everything works just fine. Do you strictly need Gilead 1.3 ? On 19. Jan, 23:16 h.,

Re: Problem running application GWT 2.0 with external server and DevMode, unable to find module file

2010-01-20 Thread denis56
see another post http://groups.google.com/group/google-web-toolkit/browse_thread/thread/1ac1304e312e7290 make sure that src folder is in your classpath in eclipse "In Classpath tab: under User Entries add your source folder. " On 15 Jan., 13:06, mlopez wrote: > Hello Chris, > > Firstly I start th

Re: "gwt-servlet.jar" being deleted at each Eclipse startup after upgrading to gwt 2.0

2010-01-20 Thread aliman
o this: > >http://code.google.com/p/google-web-toolkit/issues/detail?id=4463#c7 > > > On Jan 18, 5:54 pm, Erik Uzureau wrote: > >> The real question here is what do we all (on this thread) have in > >> common that the rest of the world doesn't. > > >>

Re: Cannot debug GWT 2.0 app embedded within external iframe

2010-01-20 Thread Itzik Yatom
PluginXPCOM, >     findPluginObject, >     findPluginEmbed, >   ]; >   var topWin = window; >   var url = topWin.location.href; >   if (!topWin.__gwt_SessionID) { > > On Jan 8, 10:25 pm, Stevko wrote: > > > > > Has anyone had any success with using the GWT 2.0 brow

Re: GWT 2.0 lockup

2010-01-19 Thread Joe Cole
For weird errors like that you can either use something like gwt-log and trace where you suspect it's happening, or use firebug with debugging on exceptions. On Jan 20, 5:01 am, Cliff Newton wrote: > I recently upgraded from GWT 1.5 to 2.0 and since I started running > 2.0 my app will occasionall

Gilead 1.3 + Hibernate + GWT 2.0

2010-01-19 Thread John Ivens
Has anyone gotten this to work? I have followed advice on the web and tried my darndest to set this up. I am talking to mysql in the background but that shouldn't matter. I am switching to DTOs because I have run out of time, but I will switch back at a convenient time if anyone can tell me how

Re: Using the ReCaptcha Java API with GWT 2.0

2010-01-19 Thread jfagh
Thanks. > >> James > > >> On Jan 18, 1:59 pm, Sudeep S wrote: > >> > is ReCaptcha a gwt library or a simple java library. > >> > gwt module dicatates that source code be present in the lib that > >> > is refererred. > > >> > On Tue

Problem with GWT 2.0 Chrome developer plugin

2010-01-19 Thread Isac
Hi, I have recently updated the GWT SDK from 1.5.3 to 2.0.0 on a project. I managed to fix all issues but one. I can't use the development mode with chrome. The login page of my application loads perfectly but when I try to log in (i.e. make an RPC) I get the following error: com.google.gwt.core.c

Problem with GWT 2.0 Chrome developer plugin

2010-01-19 Thread Isac
Hi, I have recently updated the GWT SDK from 1.5.3 to 2.0.0 on a project. I managed to fix all issues but one. I can't use the development mode with chrome. The login page of my application loads perfectly but when I try to log in (i.e. make an RPC) I get the following error: com.google.gwt.core

Re: Using Gilead with GWT 2.0 ms1

2010-01-19 Thread John Ivens
am getting this using gilead with hibernate with GWT 2.0, and I suspect > that I am having some library conflict... I cannot understand which > library. Could someone tell me what they have working under GWT 2.0, what > all of the jars they include in the war file are... > > This is my

Re: Using Gilead with GWT 2.0 ms1

2010-01-19 Thread John Ivens
Anyone seen this error message? [WARN] Exception while dispatching incoming RPC call java.lang.NoSuchMethodError: net.sf.beanlib.hibernate.UnEnhancer.unenhanceClass(Ljava/lang/Class;)Ljava/lang/Class; I am getting this using gilead with hibernate with GWT 2.0, and I suspect that I am having some

GWT 2.0 lockup

2010-01-19 Thread Cliff Newton
I recently upgraded from GWT 1.5 to 2.0 and since I started running 2.0 my app will occasionally lock up. When refreshing the page JBoss still serves up my login page, however when I try to actually log in it just sits there. Also, once the app freezes and you are already logged in and try to do an

Re: Using Gilead with GWT 2.0 ms1

2010-01-19 Thread Dan Billings
files in it, as long as > > > > > you have the adapter4gwt library files included (which you would have > > > > > to have to usegileadanyway). > > > > > > I, too, thought he meant to put them in the originalgilead > > > > > directo

Re: GWT 2.0 + Gogle Maps V3 using JSNI

2010-01-19 Thread Eric Ayers
Jan 17, 2010 at 3:22 PM, Ilya wrote: > Hi, > > I'm looking for an example of using GWT 2.0 + Gogle Maps V3 using > JSNI. > I've trying to do it for whole week already but failed even to display > the map :( > If somebody using this method could you please share some

Re: "gwt-servlet.jar" being deleted at each Eclipse startup after upgrading to gwt 2.0

2010-01-19 Thread Jeff Schnitzer
in >> common that the rest of the world doesn't. >> >> Surely we are more than 6 people in the world using GWT 2.0 are we >> the only people withgwt-servlet.jar >> in /WEB-INF/lib in our SVN repositories or is it something else? >> >> Also, if it

Re: GWT 2.0 - Eclipse Plugin - Maven: 404 running in DevMode

2010-01-18 Thread UJ
You can always change that HTML's location in welcome file list in the web.xml -- 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, send em

Re: Using the ReCaptcha Java API with GWT 2.0

2010-01-18 Thread Sudeep S
e code be present in the lib that >> > is refererred. >> > >> > On Tue, Jan 19, 2010 at 1:21 AM, jfagh wrote: >> > > I am trying to integrate the opensource ReCaptcha on my GWT 2.0 app. I >> > > followed the instructions given at: >> > >htt

Re: Using the ReCaptcha Java API with GWT 2.0

2010-01-18 Thread Sudeep S
> > On Tue, Jan 19, 2010 at 1:21 AM, jfagh wrote: > > > I am trying to integrate the opensource ReCaptcha on my GWT 2.0 app. I > > > followed the instructions given at: > > >http://wiki.recaptcha.net/index.php/Overview#Java.2FJSP > > > And just like any a

GWT 2.0 - Eclipse Plugin - Maven: 404 running in DevMode

2010-01-18 Thread Jim Adkins
I'm receiving a "404" status code when attempting to use the GWT 2.0 Eclipse plug-in. The project was originally created with GWT 1.7 and used an Eclipse "Run Configuration" based on a "Java Application" run type. I modified the run configuration to use &q

Re: GWT 2.0 Eclipse Breakpoint Not Working

2010-01-18 Thread Ana
problem a while back, and fixed it. This, however, > > was due to upgrading to GWT 2.0 and the switch between hosted mode and dev > > mode. > > -Nick > > > On Thu, Dec 10, 2009 at 9:29 AM, Paul Robinson wrote: > > >> Failing to stop at breakpoints was a bug i

Problems Setting and Retrieving Cookies with GWT 2.0

2010-01-18 Thread Mr. Lucky
Hello, I'm trying to write some code that will let me manage cookies from with in the GWT that will set, show, and delete cookies. However, I'm unable to create the cookie via gwt on either Firefox 3.5.6 or Opera 10.10 (both on Linux). My code is: public class CookieMonster implements EntryPoin

GWT 2.0 + Gogle Maps V3 using JSNI

2010-01-18 Thread Ilya
Hi, I'm looking for an example of using GWT 2.0 + Gogle Maps V3 using JSNI. I've trying to do it for whole week already but failed even to display the map :( If somebody using this method could you please share some simple example? Any help will be appreciated. Thanks in advance, -Ily

Re: "gwt-servlet.jar" being deleted at each Eclipse startup after upgrading to gwt 2.0

2010-01-18 Thread Erik Uzureau
> > Surely we are more than 6 people in the world using GWT 2.0 are we > the only people withgwt-servlet.jar > in /WEB-INF/lib in our SVN repositories or is it something else? > > Also, if it is patently wrong to have thegwt-servlet.jarfile in the / > WEB-INF/lib file..

Re: "gwt-servlet.jar" being deleted at each Eclipse startup after upgrading to gwt 2.0

2010-01-18 Thread Erik Uzureau
The real question here is what do we all (on this thread) have in common that the rest of the world doesn't. Surely we are more than 6 people in the world using GWT 2.0 are we the only people with gwt-servlet.jar in /WEB-INF/lib in our SVN repositories or is it something else? Als

Re: Using the ReCaptcha Java API with GWT 2.0

2010-01-18 Thread jfagh
:21 AM, jfagh wrote: > > I am trying to integrate the opensource ReCaptcha on my GWT 2.0 app. I > > followed the instructions given at: > >http://wiki.recaptcha.net/index.php/Overview#Java.2FJSP > > And just like any added module, I added its JAR file to the lib > > d

Re: Using the ReCaptcha Java API with GWT 2.0

2010-01-18 Thread Sudeep S
is ReCaptcha a gwt library or a simple java library. gwt module dicatates that source code be present in the lib that is refererred. On Tue, Jan 19, 2010 at 1:21 AM, jfagh wrote: > I am trying to integrate the opensource ReCaptcha on my GWT 2.0 app. I > followed the instructions gi

Using the ReCaptcha Java API with GWT 2.0

2010-01-18 Thread jfagh
I am trying to integrate the opensource ReCaptcha on my GWT 2.0 app. I followed the instructions given at: http://wiki.recaptcha.net/index.php/Overview#Java.2FJSP And just like any added module, I added its JAR file to the lib directory and to the classpath. When I try to run the app with a new

Re: GWT 2.0 runAsync code works fine in development mode but fails in normal mode

2010-01-15 Thread mably
> Is runAsync running synchronously in dev mode ? > > > On 14 jan, 13:29, mably wrote: > > > > Hi everybody, > > > > I have some GWT 2.0 runAsync code that works perfectly fine in dev > > > mode but fails in normal mode. > > > > Is it a GWT bug or

Re: Problem running application GWT 2.0 with GWT Eclipse plugin

2010-01-15 Thread Sorinel C
1. Can you check to clean up your environment like is explained here? http://ui-programming.blogspot.com/2009/12/update-your-application-to-gwt-20.html 2. If you still have problems after step 1, then check out the java class that you get error for (maybe you use some external unsupported classes

Re: Can I developing Gwt 2.0 apps on linux using firefox ?

2010-01-15 Thread R.Domingo
wser! > > Readhttp://code.google.com/webtoolkit/doc/latest/DevGuideCompilingAndDebu... > > 2010/1/15 R.Domingo > > > > > Hello, > > > I'm using gwt 1.5.x for some time now in combination with the hosted > > browser. > > But after switching to gwt 2

Re: Can I developing Gwt 2.0 apps on linux using firefox ?

2010-01-15 Thread Alexander
Debug in real browser instead of hosted browser! Read http://code.google.com/webtoolkit/doc/latest/DevGuideCompilingAndDebugging.html 2010/1/15 R.Domingo > Hello, > > I'm using gwt 1.5.x for some time now in combination with the hosted > browser. > But after switching t

Re: Can I developing Gwt 2.0 apps on linux using firefox ?

2010-01-15 Thread Qian Qiao
On Sat, Jan 16, 2010 at 00:47, R.Domingo wrote: > Hello, > > I'm using gwt 1.5.x for some time now in combination with the hosted > browser. > But after switching to gwt 2.0 the hosted browser is no longer used > AND I can't get the firefox gwt plugin working. > &

Can I developing Gwt 2.0 apps on linux using firefox ?

2010-01-15 Thread R.Domingo
Hello, I'm using gwt 1.5.x for some time now in combination with the hosted browser. But after switching to gwt 2.0 the hosted browser is no longer used AND I can't get the firefox gwt plugin working. Can anyone please confirm this should work ? Or explain how I can test/develop my ap

Re: Mac, GWT Hosted Mode does not work after switching to gwt 2.0 and back to 1.7.1

2010-01-15 Thread Alexander
Classloaders in webserver works different way. Maybe you could dig something up there. 2010/1/15 Bruno Unna > It worked like a charm. Thank you very much. > > The problem at stake is a cryptic one, though. How come the > classloader can make this kind of mistake? Or who is to blame? > > Regards.

Re: Mac, GWT Hosted Mode does not work after switching to gwt 2.0 and back to 1.7.1

2010-01-15 Thread Bruno Unna
It worked like a charm. Thank you very much. The problem at stake is a cryptic one, though. How come the classloader can make this kind of mistake? Or who is to blame? Regards. On Dec 14 2009, 8:52 pm, ciyer wrote: > I spent a few hours chasing down the "Invalid memory access of > location 0x8

<    1   2   3   4   5   6   7   8   9   10   >