Download of GWT 1.7 keeps failing

2009-09-30 Thread R
Anyone else suffering this? My ISP is fine - I've downloaded Sun Java SDK just fine, and Apache ANT, but I've had three attempts downloading GWT and the download breaks and the zip file is corrupted. First and third times, it broke at 1.7mb, second time it went to 8mb... What gives? I'm curious t

Re: Building GWT-1.7 and included jars from source

2009-09-13 Thread Thomas Sachau
Since noone seems to be able or willing to answer, can anyone tell me, where i can get answers to my questions? On Sep 5, 7:04 pm, Thomas Sachau wrote: > Hi, > > i want to try to package GWT for Gentoo and for that, i need the > sources of all included jars. > > Currently i am missing the source

Re: Newbie to GWT 1.7 - again

2009-09-09 Thread Christian Goudreau
Here's some piece of advice. First, If you're using the default GWT-RPC pattern, wich use the same object type on the client side and on the server side. I think it's normal that it doesn't work, since you're using two different object to represent the same thing. Second, I'll tell you what I'm u

Re: Newbie to GWT 1.7 - again

2009-09-09 Thread Thomas Holmes
Well ... there is another thread with this message/issue, but I can tell you exactly what I need. So, I've got a working Spring 2.5.6 application, we use an applicationContext.xml file. We have working and unit tested Hibernate POJO's with Annotations, and we have DAO's ... all defined in the Spr

Re: Newbie to GWT 1.7 - again

2009-09-09 Thread Sumit Chandel
Hi Thomas, Indeed the StockWatcher tutorial includes a section on using GWT RPC which should help as an example in your case. The webAppCreator also generates a starter sample application that includes a GWT RPC component as well, so you may want to use that as a reference. For more specific help

Re: Plugin GWT 1.7 SDK "missing"

2009-09-08 Thread Gary S
Hi Jason, I don't see anything in .log. In Properties->Google->Web Toolkit I changed from "Use default SDK(1.7.0) to Use specific SDK 1.7.0 and the problem hasn't been back. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Gr

Re: Plugin GWT 1.7 SDK "missing"

2009-09-08 Thread Jason Parekh
reference to GWT classes. Java Buildpath says "missing" for the SDK. > When I go to Web Application and click through configure SDK the > problem goes away for a while. > > OS X 10.5 > Java 1.5 > GWT 1.7 > gwt-mvp (included gin) > > > --~--~-~--~---

Re: List Box Issue with GWT 1.7

2009-09-07 Thread Robnauticus-
Hey Erik, I must have missed the method. Sorry I will try that one out. Thanks! Should be what I am looking for. Thanks! Rob On Sep 7, 12:11 am, Erik wrote: > Maybe you should use : > > setItemSelected(int index, boolean selected) > >           Sets whether an individual list item is sele

Re: List Box Issue with GWT 1.7

2009-09-07 Thread Robnauticus-
Thanks again Erik, It is working! Rob On Sep 7, 12:11 am, Erik wrote: > Maybe you should use : > > setItemSelected(int index, boolean selected) > >           Sets whether an individual list item is selected. --~--~-~--~~~---~--~~ You received this message becaus

Re: List Box Issue with GWT 1.7

2009-09-07 Thread Erik
Maybe you should use : setItemSelected(int index, boolean selected) Sets whether an individual list item is selected. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to

Re: Newbie to GWT 1.7 - again

2009-09-06 Thread Jim Douglas
Hi Thomas, The tutorials are very helpful; I worked through implementing the StockWatcher sample to get my head around GWT concepts (including RPC): http://code.google.com/webtoolkit/tutorials/1.6/index.html On Sep 6, 1:50 pm, Thomas Holmes wrote: > I posted this before, and I was waiting for

Newbie to GWT 1.7 - again

2009-09-06 Thread Thomas Holmes
I posted this before, and I was waiting for the moderators to put this online. I am desperate, and need a working GWT-RPC working ASAP.I've got 6 new books on GWT and some refer to older 1.5 versions and not the new versions. We have Spring 2.5.6, some MVC, using Spring Beans, and Hibernate P

Plugin GWT 1.7 SDK "missing"

2009-09-06 Thread Gary S
Sometimes, I think after running hosted mode, Eclipse loses its reference to GWT classes. Java Buildpath says "missing" for the SDK. When I go to Web Application and click through configure SDK the problem goes away for a while. OS X 10.5 Java 1.5 GWT 1.7 gwt-mvp (in

Building GWT-1.7 and included jars from source

2009-09-05 Thread Thomas Sachau
Hi, i want to try to package GWT for Gentoo and for that, i need the sources of all included jars. Currently i am missing the sources for the following jars: -naming-common-1.0.jar -naiming-java-1.0.jar -naming-resources-1.0.jar -servlets-common-1.0.jar -tomcat-jk2-2.1.jar those seem to have be

Newbie to GWT 1.7

2009-09-05 Thread Thomas Holmes
looks like it uses GWT 1.5, when I know I have GWT 1.7. I do have the GWT 1.7 Eclipse Plugin being used and I am going to try and play with that as well. So, ultimately what I am trying to do is create a GWT-RPC Service. I need to be able to get an invoice header and details record from the datab

List Box Issue with GWT 1.7

2009-09-04 Thread Robnauticus-
Hello everybody! Just a quick question about the best way to perform something. I have an extended Listbox that I am populating from a java.util.List. My Listbox takes 2 List parameters, the complete list and the list of selections . I am looping through my lists one inside the other and telli

Re: RAD 7.5 with GWT 1.7

2009-09-02 Thread dinesh shivram
wrote: > > Hi All, > Currently we are designing a web application using GWT 1.7 with RAD > 7.5. > > I am very new to GWT > > I want to know if you can please help me with following: > how to deploy the project to WAS server 7.0 > how to make webservice call > In

RAD 7.5 with GWT 1.7

2009-09-01 Thread Deepa
Hi All, Currently we are designing a web application using GWT 1.7 with RAD 7.5. I am very new to GWT I want to know if you can please help me with following: how to deploy the project to WAS server 7.0 how to make webservice call Intially we were able to deploy the project through tomcat

Re: GWT 1.7 "Crash" while Compiling HistoryImplTimer.java

2009-08-25 Thread Lucas Neves Martins
Yeah, you're right. I don't know how this happened, but I had duplicates of my gwt libs on the classpath. Probably because I was importing the 1.6 jars individually, and the 1.7 was being imported as a User Library. Just removed the old ones and it worked. Thanks Chandel! On 31 jul, 14:54, Su

Re: GWT 1.7 Now Available

2009-08-24 Thread श्री
hi Ganesh On Aug 24, 12:25 pm, Ganesh wrote: > Hi, > I migrated from GWT 1.5.0 to GWT 1.7 and I am facing a lot of issues > in serialized objects being passed via RPC. Support to java.util.List > seems to have been withdrawn and my existing code fails. Please do let > me know if

Re: EXPECTED_GWT_ONLOAD_VERSION on GWT 1.7

2009-08-24 Thread Eric Ayers
Hi Luca, I'm pretty sure this is a bug. I created an issue for it: http://code.google.com/p/gwt-google-apis/issues/detail?id=300 On Mon, Aug 24, 2009 at 3:29 AM, Luca Masini wrote: > > Hi guys, a simple question. > > In the BrowserWidget class of GWT 1.7  we have

Re: When run jsp in GWT 1.7, error occurred "Syntax error, parameterized types are only available if source level is 1.5"

2009-08-24 Thread Rajeev Dayal
ent setting that governs the > java-version compatibility of the GWT java-to-js compiler > > On Aug 23, 10:45 am, betterdanielding > wrote: > > When I'am running jsp in GWT 1.7, the error occurred: > > > > "Syntax error, parameterized types are only available i

Re: When run jsp in GWT 1.7, error occurred "Syntax error, parameterized types are only available if source level is 1.5"

2009-08-24 Thread Sri
ching Websphere forums for this.. On Aug 23, 5:45 am, betterdanielding wrote: > When I'am running jsp in GWT 1.7, the error occurred: > > "Syntax error, parameterized types are only available if source level > is 1.5" > > I have set the servlet parameters in "web.x

Re: Is GWT 1.7 compatible with JSPs using Java 1.5 features?

2009-08-24 Thread Rajeev Dayal
I believe this is the issue that you're running into. http://code.google.com/p/google-web-toolkit/issues/detail?id=3557 We're trying to see what happened with this issue. If the patch never got committed, we'll schedule the patch for the next release of GWT. A workaround is provided in the issue

Re: GWT 1.7 Now Available

2009-08-24 Thread Ganesh
Hi, I migrated from GWT 1.5.0 to GWT 1.7 and I am facing a lot of issues in serialized objects being passed via RPC. Support to java.util.List seems to have been withdrawn and my existing code fails. Please do let me know if this is a know are and how to take care of the same?? My code compiles

Re: GWT 1.7 Now Available

2009-08-24 Thread leo loong
t;> Use "File -> Import... -> Existing Projects into Workspace" >> I can't import GWT1.7 /samples project. ! "No projects are found to >> import." >> >> help help!! >> >> On Jul 23, 6:54 am, Bruce Johnson wrote: >> > Hi everyo

EXPECTED_GWT_ONLOAD_VERSION on GWT 1.7

2009-08-24 Thread Luca Masini
Hi guys, a simple question. In the BrowserWidget class of GWT 1.7 we have this declaration: private static final String EXPECTED_GWT_ONLOAD_VERSION = "1.6"; When I use Google Gadget, its linker generate the control code that then fail because it checks 1.7 against 1.6. It&#

Re: GWT 1.7 Now Available

2009-08-23 Thread 李静
" > I can't import GWT1.7 /samples project. ! "No projects are found to > import." > > help help!! > > On Jul 23, 6:54 am, Bruce Johnson wrote: > > Hi everyone, > > > > (Most people are probably already quite aware of the new GWT 1.7 release, &

Re: GWT 1.7 Now Available

2009-08-23 Thread holeo
; > (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.

Re: When run jsp in GWT 1.7, error occurred "Syntax error, parameterized types are only available if source level is 1.5"

2009-08-23 Thread DaveS
 am, betterdanielding wrote: > When I'am running jsp in GWT 1.7, the error occurred: > > "Syntax error, parameterized types are only available if source level > is 1.5" > > I have set the servlet parameters in "web.xml" and set the Eclipse > project J

When run jsp in GWT 1.7, error occurred "Syntax error, parameterized types are only available if source level is 1.5"

2009-08-23 Thread betterdanielding
When I'am running jsp in GWT 1.7, the error occurred: "Syntax error, parameterized types are only available if source level is 1.5" I have set the servlet parameters in "web.xml" and set the Eclipse project JRE level, but it doesn't wo

Is GWT 1.7 compatible with JSPs using Java 1.5 features?

2009-08-21 Thread Steve Nies
Please forgive this newbie post but I am under extreme schedule pressure and cant find an answer anywhere on the web. Can anyone tell me if JSPs using Java 1.5 features can now run under hosted mode within Eclipse 3.4? If so would someone please post a how-to? Any help would be greatly apprecia

Re: GALGWT, Eclipse 3.5 / Galileo, and GWT 1.7 -- how to add this or any other GWT library to projects?

2009-08-21 Thread Sumit Chandel
gt; > > that were included in the default project but they are not presented > > > > through the GUI as available to add. > > > > 2. Adding them as 'external jars' solves the IDE syntax checking > > > > issues but then unsurprisingly crashes in hosted mod

Re: GWT 1.7 installation problem with Eclipse 1.4.2

2009-08-20 Thread Miguel Méndez
The plugin requires Java 1.5. On Thu, Aug 20, 2009 at 7:34 AM, ornello wrote: > > Hi Manuel, > > > Try: > > File -> New -> Project ... -> Google -> Web Application Project > > Does not appear in the menu. > > > Try: > > Help -> About -> Plug-in Details -> Sort by Provider -> Google, Inc -> > > G

Re: GWT 1.7 installation problem with Eclipse 1.4.2

2009-08-20 Thread ornello
Hi Manuel, > Try: > File -> New -> Project ... -> Google -> Web Application Project Does not appear in the menu. > Try: >  Help -> About -> Plug-in Details -> Sort by Provider -> Google, Inc -> > Google Web Toolkit Does not appear in the table. In the meantime, I have successfully installed G

Re: GWT 1.7 installation problem with Eclipse 1.4.2

2009-08-20 Thread Manuel Carrasco Moñino
On Thu, Aug 20, 2009 at 8:56 AM, ornello wrote: > > Hi, > > I have the following problem: > > - I am using Eclipse Ganymede 1.4.2 for Windows from eclipse.org > - Installation of GWT plugin from Google Update site showed no errors > or warnings > > > After restart of Eclipse, nor a "New Web Applic

GWT 1.7 - Problems with compile/browse from hosted mode

2009-08-20 Thread Daniel
Hello everybody, I am developing an enterprise application with GWT. A few days ago we updated to GWT 1.7. Since then, starting the web mode with the compile/ browse button in the hosted mode does not work any more. After the compilation succeeds and the browser is opened, the following error

Problem with RPC call - GWT 1.7 and IE6

2009-08-20 Thread Naga
Hi I am using GWT 1.7, SmartGWT 1.1 and IE 6 When I try to do a RPC call, I get a script error and page is not rendered. This is the error -'Exception thrown and not caught' Same code works fine IE7 and Firefox. When the page is loaded, control does not reach the servlet

GWT 1.7 installation problem with Eclipse 1.4.2

2009-08-20 Thread ornello
Hi, I have the following problem: - I am using Eclipse Ganymede 1.4.2 for Windows from eclipse.org - Installation of GWT plugin from Google Update site showed no errors or warnings > After restart of Eclipse, nor a "New Web Application Project" button is > displayed neither creation of web app

Re: Where/how download gwt 1.7 source code

2009-08-19 Thread James
Hi, SVN: http://google-web-toolkit.googlecode.com/svn/trunk/ Donwload List: http://code.google.com/p/google-web-toolkit/downloads/list The source code in jar files as well. On Aug 20, 8:36 am, irc1258 wrote: > I'd like to have access to gwt 1.7 source code. I saw somewhere on > thi

Where/how download gwt 1.7 source code

2009-08-19 Thread irc1258
I'd like to have access to gwt 1.7 source code. I saw somewhere on this site that it should be included with the std gwt download. This apparently is not the case as it is not in my download of 1.7. Do I need to download it from svn? If so, can someone say were exactly it is in svn? T

Re: GWT 1.7 compiles null.nullMethod() into javascript for HTMLTable sub-class

2009-08-18 Thread Bob The Cheese
aah, ok. thanks for that. I'll try that out, and see if I can get it to work. Cheers, Bob. On Aug 18, 11:13 pm, Thomas Broyer wrote: > On 18 août, 01:30, Bob The Cheese wrote: > > > > > OK, so I'm making a custom type of table which manages a datastore, > > has expandable sections, etc. > > >

Re: GALGWT, Eclipse 3.5 / Galileo, and GWT 1.7 -- how to add this or any other GWT library to projects?

2009-08-18 Thread philipmac
t but they are not presented > > > through the GUI as available to add. > > > 2. Adding them as 'external jars' solves the IDE syntax checking > > > issues but then unsurprisingly crashes in hosted mode. > > > > I'm missing something basic I&#x

Re: GWT 1.7 compiles null.nullMethod() into javascript for HTMLTable sub-class

2009-08-18 Thread Thomas Broyer
On 18 août, 01:30, Bob The Cheese wrote: > OK, so I'm making a custom type of table which manages a datastore, > has expandable sections, etc. > > I've borrowed a couple of things off FlexTable, but modified/ > simplified them. > > When I run the project, I get this: > == > [ERROR] Fail

GWT 1.7 shell ActiveX/applet problem

2009-08-18 Thread snorbi
ernet options/Security) but it doesn't have any effect. Do you have any idea why doesn't it work? Thanks for your help in advance! Best regards: Norbi Environment: Windows XP, IE7/IE8, GWT 1.7, JDK 6; the problem is only in hosted mode --~--~-~--~~~---~--~~ Yo

Re: GALGWT, Eclipse 3.5 / Galileo, and GWT 1.7 -- how to add this or any other GWT library to projects?

2009-08-18 Thread Julian Harris
ted mode. > > > > I'm missing something basic I'm sure about how to add GWT libraries -- > > anyone have any suggestions? > > > > thanks! > > (This is for GALGWT, Eclipse 3.5 / Galileo, and GWT 1.7) > > > --~--~-~--~~~-

Re: GALGWT, Eclipse 3.5 / Galileo, and GWT 1.7 -- how to add this or any other GWT library to projects?

2009-08-17 Thread philipmac
prisingly crashes in hosted mode. > > I'm missing something basic I'm sure about how to add GWT libraries -- > anyone have any suggestions? > > thanks! > (This is for GALGWT, Eclipse 3.5 / Galileo, and GWT 1.7) --~--~-~--~~~---~--~~ You rece

Re: GWT 1.7

2009-08-17 Thread Farrukh Najmi
; 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 trying to > > build with gwt-log. I already posted on the gwt-log discussion but > > wanted to put in the main GWT list f

GWT 1.7 compiles null.nullMethod() into javascript for HTMLTable sub-class

2009-08-17 Thread Bob The Cheese
OK, so I'm making a custom type of table which manages a datastore, has expandable sections, etc. I've borrowed a couple of things off FlexTable, but modified/ simplified them. When I run the project, I get this: == [ERROR] Failed to create an instance of 'vdc.module.billing.Billing' via

GALGWT, Eclipse 3.5 / Galileo, and GWT 1.7 -- how to add this or any other GWT library to projects?

2009-08-17 Thread Julian
king issues but then unsurprisingly crashes in hosted mode. I'm missing something basic I'm sure about how to add GWT libraries -- anyone have any suggestions? thanks! (This is for GALGWT, Eclipse 3.5 / Galileo, and GWT 1.7) --~--~-~--~~~---~--~~ You receive

Re: IE8 and GWT 1.7

2009-08-17 Thread Sumit Chandel
Hi Karim, I wasn't able to reproduce this problem using GWT 1.7.0 / WinXP / IE 8. The starter application generated by the Google Plugin for Eclipse works as expected in hosted mode and all supported browsers. Are there any other symptoms of the problem you're experiencing that you could tell us th

Re: rebuilding gwt 1.7

2009-08-17 Thread denis56
r with the one I' ve changed Tried also recompiling the whole gwt 1.7, but seeing another message: compile: [mkdir] Created dir: /home/gwt_1.7_svn/build/out/user/bin [gwt.javac] Compiling 802 source files to /home/gwt_1.7_svn/build/out/ user/bin [gwt.javac] /home/gwt_1.7_svn/user/src/com/google/

Re: rebuilding gwt 1.7

2009-08-17 Thread Thomas Broyer
On 17 août, 10:53, denis56 wrote: > has anybody tried recompiling gwt 1.7? [...] > I would like to recompile it to resolve > http://code.google.com/p/google-web-toolkit/issues/detail?id=3608 for > IE 6, Chrome and Safari. You do not have to recompile GWT if you only touch

Re: rebuilding gwt 1.7

2009-08-17 Thread Paul Robinson
http://google-web-toolkit.googlecode.com/svn/releases/1.7 http://code.google.com/webtoolkit/makinggwtbetter.html#workingoncode denis56 wrote: > has anybody tried recompiling gwt 1.7? > > under what location current gwt 1.7 distribution is stored, > http://code.google.com/p/google

rebuilding gwt 1.7

2009-08-17 Thread denis56
has anybody tried recompiling gwt 1.7? under what location current gwt 1.7 distribution is stored, http://code.google.com/p/google-web-toolkit/source/browse/#svn/releases/1.7 ? I would like to recompile it to resolve http://code.google.com/p/google-web-toolkit/issues/detail?id=3608 for IE 6

Async or server push api calls on Gwt 1.7

2009-08-14 Thread code dude
Hi List , I have an application where i need to push some information to each web user ..(rather than broadcast it) I have been trying to use jetty continuations but have unsuccessful in doing so ...i am following rather simple tutorial at jetty wiki docs ->> http://docs.codehaus.org/display/JET

Re: GWT 1.7 Now Available

2009-08-14 Thread Steve Nies
Please forgive this newbie post but I am under extreme schedule pressure and cant find an answer anywhere on the web. Can anyone tell me if JSPs using Java 1.5 features can now run under hosted mode within Eclipse 3.4? If so would someone please post a how-to? Any help would be greatly apprecia

IE8 and GWT 1.7

2009-08-13 Thread karim
I am having problem with IE8. I just used "create a new Web Application Project" as part of GWT plugin for Eclipse and then compile it and run it. In hosted mode everything seems fine but when I click "compile/browse" it starts the default browser which is set to IE8 and then the page never comple

gwt 1.7 IE8 Problem iframe.contentWindow.location.replace(base + strongName)

2009-08-12 Thread bk13
Hello, there is a Problem with our gwt Project and IE8. We switched from gwt 1.5 to gwt 1.7. We get an error window with the title "web site error" and the message "unknown error" when we log in in our app. When using the "pretty" compiler style we found out tha

Re: gwt 1.7 app - blank page in ie7, safari

2009-08-08 Thread kelvin.huang
Hi Sam, Please check your web.xml , I fixed a similar issue as you mentioned by changing the servlet context path. hope it helps. Thanks Kelvin --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" g

Re: gwt 1.7 app - blank page in ie7, safari

2009-08-08 Thread denis56
I had similar issues as my app code embedded in new environment stopped working. Some general recommendations I could make are: * try using oophm (http://code.google.com/p/google-web-toolkit/wiki/ UsingOOPHM), it is much easier to track down problems in oophm, albeit getting oophm to work may tur

Re: update to Eclipse 3.5 and GWT 1.7 -> problem

2009-08-08 Thread Tony Rah
Lumo, My team uses instantiations and that 'Run as...' is part of that plugin. Isaac is correct. X On Aug 7, 9:20 am, lumo wrote: > eh?! > i'm using it now for more than half a year and never saw that Run As! > > GWT != GWT :) > > shame on me - sorry for the hassle! > > 2009/8/7 Isaac Truett > >

Re: update to Eclipse 3.5 and GWT 1.7 -> problem

2009-08-07 Thread lumo
eh?! i'm using it now for more than half a year and never saw that Run As! GWT != GWT :) shame on me - sorry for the hassle! 2009/8/7 Isaac Truett > > > the Instantiations plugin does not support any Run As features > > > http://download.instantiations.com/DesignerDoc/continuous/latest/docs/ht

Re: update to Eclipse 3.5 and GWT 1.7 -> problem

2009-08-07 Thread Isaac Truett
> the Instantiations plugin does not support any Run As features http://download.instantiations.com/DesignerDoc/continuous/latest/docs/html/gwt/application_launching.html I beg to differ. :-) On Fri, Aug 7, 2009 at 11:00 AM, lumo wrote: > the Instantiations plugin does not support any Run As

Re: update to Eclipse 3.5 and GWT 1.7 -> problem

2009-08-07 Thread lumo
hmm ok. i'm off for weekend -> check back on monday! --~--~-~--~~~---~--~~ 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

Re: update to Eclipse 3.5 and GWT 1.7 -> problem

2009-08-07 Thread Miguel Méndez
That's part of our plugin as well, its not there since it is App Engine specific. On Fri, Aug 7, 2009 at 11:09 AM, lumo wrote: > probably from > com.google.appengine.eclipse.core_1.1.0.v200907291526.jar > > ? > > > > -- Miguel --~--~-~--~~~---~--~~ You receive

Re: update to Eclipse 3.5 and GWT 1.7 -> problem

2009-08-07 Thread lumo
probably from com.google.appengine.eclipse.core_1.1.0.v200907291526.jar ? --~--~-~--~~~---~--~~ 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@googlegroup

Re: update to Eclipse 3.5 and GWT 1.7 -> problem

2009-08-07 Thread Miguel Méndez
I'm not sure what to tell you at this point. Run as GWT application is not coming from our plugin. On Fri, Aug 7, 2009 at 11:00 AM, lumo wrote: > the Instantiations plugin does not support any Run As features, > it creates a UI and generates Java native code, nothing else. > > > > > -- Migue

Re: update to Eclipse 3.5 and GWT 1.7 -> problem

2009-08-07 Thread lumo
the Instantiations plugin does not support any Run As features, it creates a UI and generates Java native code, nothing else. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this

Re: update to Eclipse 3.5 and GWT 1.7 -> problem

2009-08-07 Thread Isaac Truett
If I may, I would guess that's coming from the Instantiations plugin, not the Google plugin. I do not use the Instatiations plugin, but I do use the Google plugin and I've never seen that option. On Fri, Aug 7, 2009 at 10:42 AM, lumo wrote: > you can find the screenshot at: > http://www.biooffic

Re: update to Eclipse 3.5 and GWT 1.7 -> problem

2009-08-07 Thread lumo
you can find the screenshot at: http://www.biooffice.at/biomap/proof.png greets --~--~-~--~~~---~--~~ 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@goog

Re: update to Eclipse 3.5 and GWT 1.7 -> problem

2009-08-07 Thread Miguel Méndez
On Fri, Aug 7, 2009 at 10:30 AM, lumo wrote: > > The Google Plugin for Eclipse does not support run as -> GWT Application. >> It supports run as -> Web Application. Is that what you meant? >> > > aye caramba; > well two points > 1) yes, it works if i click run as -> web application > 2) you say

Re: update to Eclipse 3.5 and GWT 1.7 -> problem

2009-08-07 Thread lumo
> The Google Plugin for Eclipse does not support run as -> GWT Application. > It supports run as -> Web Application. Is that what you meant? > aye caramba; well two points 1) yes, it works if i click run as -> web application 2) you say it does not support it, but its available and enabled...? (

Re: update to Eclipse 3.5 and GWT 1.7 -> problem

2009-08-07 Thread Miguel Méndez
On Fri, Aug 7, 2009 at 10:18 AM, lumo wrote: > i got my Map.java open, > when i click run as -> Compile GWT Application it starts to compile the > map; > when i click run as -> GWT Application it pops up a window where i can edit > configuration and launch, underneath this it says project Map is

Re: update to Eclipse 3.5 and GWT 1.7 -> problem

2009-08-07 Thread lumo
i got my Map.java open, when i click run as -> Compile GWT Application it starts to compile the map; when i click run as -> GWT Application it pops up a window where i can edit configuration and launch, underneath this it says project Map is not GWT project. --~--~-~--~~~--

Re: update to Eclipse 3.5 and GWT 1.7 -> problem

2009-08-07 Thread Miguel Méndez
On Fri, Aug 7, 2009 at 9:55 AM, lumo wrote: > 2009/8/7 Miguel Méndez > >> It would help to know what plugins you have installed or are trying to >> use. >> > > i do not have loads of plugins installed: > > Instantiations Designer > Hibernate > Google GWT, GDT > And you say that you are trying t

Re: update to Eclipse 3.5 and GWT 1.7 -> problem

2009-08-07 Thread lumo
2009/8/7 Miguel Méndez > It would help to know what plugins you have installed or are trying to use. > i do not have loads of plugins installed: Instantiations Designer Hibernate Google GWT, GDT in this projects i do only use gwt (and hibernate) PS: funny part is in eclipse help it says you c

Re: update to Eclipse 3.5 and GWT 1.7 -> problem

2009-08-07 Thread Miguel Méndez
It would help to know what plugins you have installed or are trying to use. On Fri, Aug 7, 2009 at 5:59 AM, lumo wrote: > > hello NG, > > i updated my ide and gwt and moved my project to the new ide. > now i can still compile the project after fixing some errors. > but when i come to execution i

update to Eclipse 3.5 and GWT 1.7 -> problem

2009-08-07 Thread lumo
hello NG, i updated my ide and gwt and moved my project to the new ide. now i can still compile the project after fixing some errors. but when i come to execution i get the following error: Project XXX is not GWT project ?? i can build the map but its no gwt project? --~--~-~--~~--

Re: logging/debugging issue with oophm and gwt 1.7

2009-08-05 Thread denis56
opying gwt-sertlet.jar from trunk to WEB-INF/ lib as opposed to gwt-servlet.jar of GWT .17. So I practically develop and test with a trunk version and will be deploying to productive server with stable GWT 1.7. Hope I have got all right. Best wishes, Denis On 3 Aug., 15:35, Jason Parekh wrote: > Hi

GWT 1.7 - Avoid serializable objects

2009-08-05 Thread Algian
Hi, Does anyone know how I can avoid serializable objects being compiled in GWT 1.7. I don't have any RPC calls that use serializable objects so I'm wondering if anything gets compiled as serializable - if the answer is no then I guess there is no need to avoid building serializable o

Re: gwt 1.7 app - blank page in ie7, safari

2009-08-04 Thread sam
I am having similar kinda problem. I am creating a Google Map Application that has a draggable marker with search option. I am using GWT and eclipse. My search button works fine in the hosted mode, but when I compile and run it off the browser, my search button does not work. My button seems to b

Re: gwt 1.7 app - blank page in ie7, safari

2009-08-03 Thread otismo
It wasn't a syntax issue. It was a coding problem. I'm using various client-side datastores (i.e. localstorage, userdata, whatwg, etc.). The datastores behave differently on store and load and were triggering different code paths. I've got it fixed. Thanks for your help! On Aug 3, 11:11 am, J

Re: gwt 1.7 app - blank page in ie7, safari

2009-08-03 Thread Jason Parekh
Hey Peter, Could you try changing your tag to include the attribute: type="text/javascript":