Dan schrieb: > Would anyone mind If I asked a couple of generic servlet / war file > questions?
There are other groups that are more focused to this topic, e.g. the Usenet newsgroups comp.lang.java.* > If I go to > http://www.pimtext.co.uk/gwtTest/build/gwtOutput/pimtext.Start/Start.html > it is not possible to add a new user because something is wrong with > the set-up - the client side does not appear to be able to talk to the > server side. > > I hope it would not be to ambiguous to ask where you think I might be > going wrong? My eclipse plugin (cypal) for the GWT also has the > ability to build a WAR file for me. What is a war file and is it > appropriate to me. You should have a look into the logfiles of the tomcat-server, in the first place into the request-log. You should find a request for the RemoteServiceServlet and the response-code the server was returning. If it was a 404, the servlet is not installed or the path is different from the one you build in your application. If it was 500, the servlet is choking and you should find a log-entry in the catalina-log together with a stacktrace showing you where exactly the choking did happen. > The site is for a university project. I am hosting at eukhost and not > on my university servers as they do not have tomcat servers for > student use - are tomcat servers the only real way to carry on using > JDBC? No, you need to start a virtual machine, but that would be possible even by initiating a bash-based CGI-script doing the java-call ;-) Tomcat contains a servlet-handler allowing you to deploy java-based web-applications but there are others like Jetty as well. Regards, Lothar --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
