From: Matti Tahvonen Date: Thu, 10 Jan 2008 10:20:16 +0000 (+0000) Subject: fixed port typo, removed context from default TT server X-Git-Tag: 6.7.0.beta1~5169 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=0a59d645c660688498bd0f3ba40dd2409248532f;p=vaadin-framework.git fixed port typo, removed context from default TT server svn changeset:3443/svn branch:trunk --- diff --git a/src/com/itmill/toolkit/terminal/gwt/server/ApplicationServlet.java b/src/com/itmill/toolkit/terminal/gwt/server/ApplicationServlet.java index f4732d0419..b148231a18 100644 --- a/src/com/itmill/toolkit/terminal/gwt/server/ApplicationServlet.java +++ b/src/com/itmill/toolkit/terminal/gwt/server/ApplicationServlet.java @@ -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; }