Owen, Everyone is responding with, yes you can use GAE as your datastore and you can. But you don't have to. Every app I've developed with GWT is a database driven application and I've not used GAE for any of them. I've used SQL Server for some and MySQL for others and Tomcat for all of them. All of your database communication happens on the server side. Once there, you simply use whatever server side language you want to communicate to the database however you want. I suspect you will be using Java on the server (which is what I use). You can run your app locally launching the embedded server from Eclipse. You run the app in a browser of your choice. You will be prompted to download and install a browser plug-in for the debugging. When you want to deploy, simply compile, war the war folder and copy it to your Tomcat webapps folder. Done.
HTH, Chad Bourque www.milamade.com On Nov 3, 12:20 pm, OS <[email protected]> wrote: > Hello, > > This is my first posting here so I'm sorry if all this has been > covered before. > > I've come to GWT from a J2EE background. I though GWT would be a great > way of combining data mining at the backend with a nice UI at the > front. However, I've fallen over at the first hurdle. Apparently GWT > will not permit database connections with the Google App Engine. Ok, > that's pants, but I'll move over to TomCat. But this is not as easy as > it sounds either. There is no Deploy action available and I'm not a > server admin. The instructions I've found on the web appear complex > and to top it all it seems I'm going to loose debugging features. > > Have I missed the point about GWT? is it not really intended for > database driven applications?! What exactly is it for? After all, the > database and server root are on the same Intranet server and security > is pretty tight. Is it that the GAE is just not up to the job right > now but it will be coming. > > Is there an easy way of using TomCat and keeping the debugging > ability? I can deploy the application / WAR to TomCat but I can't even > figure out how to get the GWT Eclipse plugin to launch it from the new > server, let alone debug the application! > > If Eclipse won't do this then I might as well go back to doing this > long hand in NetBeans!! > > Help!!!! > > Thanks, > Owen -- 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.
