I've found several problems with the tutorial at http://code.google.com/webtoolkit/tutorials/1.6/appengine.html I have posted solutions for them at http://code.google.com/p/google-web-toolkit/issues/detail?id=3626 and my blog at http://itstuff.jasonsmart.id.au/2009/05/gwt-plus-appengine-tutorial.html to summarise here... Define this instance variable in StockWatcher.java private StockServiceAsync stockService; In StockWatcher addStock(String) method change the following line stockService.addStock(symbol, new AsyncCallback() { to stockService.addStock(symbol, new AsyncCallback <Void> () { In src/META-INF/jdoconfig.xml in the Eclipse project downloaded from http://code.google.com/webtoolkit/tutorials/1.6/projects/GettingStart... you need to change transactionals-optional to transactions-optional In the section describing datastore-indexes.xml there is no mention of the autogenerate property. I had to add autogenerate = true (or you could put false) in the following line to prevent errors. <datastore-indexes xmlns="http://appengine.google.com/ns/datastore-indexes/1.0" autoGenerate="true">
Jason On May 4, 4:34 pm, Randinn <[email protected]> wrote: > Yes, I looked around the site for an answer but there is none to speak > of for my particular problem. I tried the GWT and Google App Enginetutorial, > went though the steps but found it difficult to follow some > of the steps as I do not know Java so I was asking for the source code > for the finished GAE Stockwatcher so I can see where the changes > exactly went. > > On May 3, 11:23 pm, Salvador Diaz <[email protected]> wrote: > > > Have you tried searching this group for answers to your question ? > > >http://groups.google.com/group/Google-Web-Toolkit/search?group=Google... > > > If you have a specific problem that you'd like us to help you resolve, > > feel free to ask, but your question is too general. How about > > specifying what doesn't seem clear and why ? > > > Cheers, > > > Salvador > > > On May 3, 6:20 am, Randinn <[email protected]> wrote: > > > > Anyone have the complete GWT and Google App EngineStockwatcher > > >tutorial, thetutorialfor me is a bit unclear in places. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/Google-Web-Toolkit?hl=en -~----------~----~----~----~------~----~------~--~---
