Newbie Question. Windows 7 + Eclispe 3.4 + GWT 1.7 + Debug + Getting Started Tutorial.

2009-07-24 Thread Howard Tan
Hi, I've been combing through the Getting Started guide, and I got everything to work except this page. http://code.google.com/webtoolkit/tutorials/1.6/debug.html I've followed the directions and it doesn't work. The tutorial runs normally and it doesn't break at the breakpoints. Anybody got an

GWT 1.7 "Crash" while Compiling HistoryImplTimer.java

2009-07-24 Thread Lucas Neves Martins
Well well, I was just getting excited about the new release, and then I've got busted. I've updated from the 1.6.4 to the new 1.7 gwt release, and now I'm getting an error when trying to compile the application. Here is my GWT Development Shell Output: [code] [INFO] Starting HTTP on port 8080

Re: GWT 1.7 Now Available

2009-07-23 Thread Sumit Chandel
Thanks for the correction, Gert. The correct download link to get GWT 1.7.0 is either (as Gert mentioned) is either: 1) From the official download site: http://code.google.com/download.html 2) From the list of proper search results on the GWT project page: http://code.google.com/p/google-web-tool

Re: GWT 1.7 Now Available

2009-07-23 Thread Gert Scholten
On Jul 23, 12:54 am, Bruce Johnson wrote: > Download > here:http://code.google.com/p/google-web-toolkit/downloads/list?can=1&q=GW... This link only lists the linux version (the search doesn't seem to work properly, or at least I can't figure out what it is searching in). Official download site

Re: GWT 1.7 Now Available

2009-07-23 Thread Gert Scholten
On Jul 23, 12:54 am, Bruce Johnson wrote: > Download > here:http://code.google.com/p/google-web-toolkit/downloads/list?can=1&q=GW... This link only lists the linux version (the search doesn't seem to work properly, or at least I can't figure out what it is searching in). Official download site

GWT 1.7 Now Available

2009-07-22 Thread Bruce Johnson
Hi everyone, (Most people are probably already quite aware of the new GWT 1.7 release, but we wanted to send out an "official" announcement we could pin to the top of the message list.) GWT 1.7 is a minor update that adds better support for Internet Explorer 8, Firefox 3.5, and Safari

Re: Dose GWT 1.7 support debug on java 6?

2009-07-20 Thread Rajeev Dayal
Hi, Downgrade to JDK 1.6.0_13. As Paul mentioned, there is a known issue with debugging when using JDK 1.6.0_14. Also, the issue does not have to do with the JDK that you use to compile GWT_TRUNK with - it has to do with the JDK that you're using when you're debugging your application. So, make su

Re: Dose GWT 1.7 support debug on java 6?

2009-07-18 Thread AndOrNot
It seems it dosen't work in windows 2003 sp1, I recomiled GWT_TRUNK with 1.6.0_14, the UI debuging can still not work. On Jul 18, 5:02 am, tfreitas wrote: > Hi, > > I was using a version of java6 (I do not remember the version) and > worked with the debugging eclipse Trunk / OOPHM in ubuntu 9.0

Re: Dose GWT 1.7 support debug on java 6?

2009-07-18 Thread AndOrNot
What I want is just your said, My jdk is 1.6.0_14-b08 (hostspot b16), os is windows 2003 sp1. Do you have any clues to work it around? On Jul 18, 3:42 am, Rajeev Dayal wrote: > Hi, > Are you talking about debugging your GWT Application in Eclipse when it's > running in hosted mode? > > What is t

Re: Dose GWT 1.7 support debug on java 6?

2009-07-18 Thread Paul Robinson
There's a bug in java 1.6.0_14 - you need to downgrade to 1.6.0_13 to make debugging work properly. tfreitas wrote: > Hi, > > I was using a version of java6 (I do not remember the version) and > worked with the debugging eclipse Trunk / OOPHM in ubuntu 9.04 and > firefox 3.0. > > After an auto-up

Re: Dose GWT 1.7 support debug on java 6?

2009-07-17 Thread tfreitas
Hi, I was using a version of java6 (I do not remember the version) and worked with the debugging eclipse Trunk / OOPHM in ubuntu 9.04 and firefox 3.0. After an auto-update, install java 1.6.0_14, the debugging not work (not breakpoint, nothing) I recompile my GWT_TRUNK, with the new java versi

Re: Dose GWT 1.7 support debug on java 6?

2009-07-17 Thread Rajeev Dayal
Hi, Are you talking about debugging your GWT Application in Eclipse when it's running in hosted mode? What is the problem that you're experiencing. We've heard reports of people running into problems with debugging when using JDK 1.6.0_14. What JDK are you using? Rajeev On Fri, Jul 17, 2009 at

Dose GWT 1.7 support debug on java 6?

2009-07-17 Thread AndOrNot
if support, how? --~--~-~--~~~---~--~~ 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 email to go

Re: Does GWT 1.7 support Class.getSimpleName()?

2009-07-16 Thread Pandaman
Apparently not. http://stackoverflow.com/questions/1132692/does-gwt-1-7-have-support-for-class-getsimplename On Jul 15, 1:00 pm, Pandaman wrote: > Does GWT 1.7 support Class.getSimpleName()? --~--~-~--~~~---~--~~ You received this message because you

Re: Does GWT 1.7 support Class.getSimpleName()?

2009-07-16 Thread Pandaman
    public String getSimpleClassName() { >         String className = this.getClass().getName(); >         return className.substring( >                 className.lastIndexOf(".") + 1, className.length()); >     } > [/code] > > 2009/7/15 Pandaman &g

Re: Does GWT 1.7 support Class.getSimpleName()?

2009-07-16 Thread Pandaman
But that is for GWT 1.6, I already know what this supports. On Jul 16, 1:38 am, Adam T wrote: > GWT supports the > following:http://code.google.com/webtoolkit/doc/1.6/RefJreEmulation.html > > //Adam > > On 15 Juli, 19:00, Pandaman wrote: > > > Does GWT 1.7

Re: Does GWT 1.7 support Class.getSimpleName()?

2009-07-15 Thread lumo
if not [code] public String getSimpleClassName() { String className = this.getClass().getName(); return className.substring( className.lastIndexOf(".") + 1, className.length()); } [/code] 2009/7/15 Pandaman > > Does GWT 1.7 support Cla

GWT 1.7 on Maven central repo

2009-07-15 Thread buzo
Hi there: my apologies if this is the wrong place to ask for this: can somebody from the GWT team publish the GWT 1.7 jar files to the central maven repository at http://mirrors.ibiblio.org/pub/mirrors/maven2/com/google/gwt/ ? I found that the latest set of available jars are for 1.6.4. Thanks

Re: Does GWT 1.7 support Class.getSimpleName()?

2009-07-15 Thread Adam T
GWT supports the following: http://code.google.com/webtoolkit/doc/1.6/RefJreEmulation.html //Adam On 15 Juli, 19:00, Pandaman wrote: > Does GWT 1.7 support Class.getSimpleName()? --~--~-~--~~~---~--~~ You received this message because you are subscribed to

Re: New features of GWT 1.7 compared to 1.6 version

2009-07-15 Thread Thomas Broyer
On 15 juil, 12:58, vijay wrote: > HI, > > Can any one please let us know the new features in 1.7 version Read the release notes: http://code.google.com/webtoolkit/releases/release-notes-1.7.0.html "This release adds explicit support for Internet Explorer 8, Firefox 3.5, and Safari 4 as well a

GWT 1.7 available

2009-07-15 Thread Leszek Gruchała
Hi, I'm glad to see new GWT version, but why it isn't automagically moved to Maven public repo? Could anyone responsible do it for many impatient people? :) Thanks, Leszek --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Gr

GWT 1.7 & Maven

2009-07-15 Thread buzo
Not sure if this is the right place to ask this, but... Can someone publish the gwt 1.7 jars to the central Maven repository? I see under http://mirrors.ibiblio.org/pub/mirrors/maven2/com/google/gwt/ that the latest version is 1.6.4 Thanks

New features of GWT 1.7 compared to 1.6 version

2009-07-15 Thread vijay
HI, Can any one please let us know the new features in 1.7 version --~--~-~--~~~---~--~~ 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

Re: GWT 1.7

2009-07-15 Thread Fred Sauer
GWT 1.7.0 adds a new user agent value for ie8 which causes this. Please try that latest gwt-log-2.6.2.jar from http://code.google.com/p/gwt-log/downloads/list Thanks Fred On Wed, Jul 15, 2009 at 10:47 AM, Scooter wrote: > > Just upgraded to GWT 1.7 and ran into the following when try

GWT 1.7

2009-07-15 Thread Scooter
Just upgraded to GWT 1.7 and ran into the following when trying to build with gwt-log. I already posted on the gwt-log discussion but wanted to put in the main GWT list for others using gwt-log. Thanks Scooter Compiling module edu.scripps.hddesktop.Main [ERROR] Errors in 'jar:file:/

Does GWT 1.7 support Class.getSimpleName()?

2009-07-15 Thread Pandaman
Does GWT 1.7 support Class.getSimpleName()? --~--~-~--~~~---~--~~ 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 unsubs

<    1   2   3