]> source.dussan.org Git - vaadin-framework.git/commitdiff
fixed port typo, removed context from default TT server
authorMatti Tahvonen <matti.tahvonen@itmill.com>
Thu, 10 Jan 2008 10:20:16 +0000 (10:20 +0000)
committerMatti Tahvonen <matti.tahvonen@itmill.com>
Thu, 10 Jan 2008 10:20:16 +0000 (10:20 +0000)
svn changeset:3443/svn branch:trunk

src/com/itmill/toolkit/terminal/gwt/server/ApplicationServlet.java

index f4732d0419c5845f5f174e949ddc1ef4df475993..b148231a18eae053086092b52c5c3ed8c421dd9c 100644 (file)
@@ -731,9 +731,9 @@ public class ApplicationServlet extends HttpServlet {
     private String getTestingToolsUri(HttpServletRequest request) {
         if (testingToolsServerUri == null) {
             // Default behavior is that Testing Tools Server application exists
-            // on same host as current application does in port 8089.
+            // on same host as current application does in port 8099.
             testingToolsServerUri = "http" + "://" + request.getServerName()
-                    + ":8089" + "/TestingTools/TestingToolsServer";
+                    + ":8099" + "/TestingToolsServer";
         }
         return testingToolsServerUri;
     }