Changeset 4838
- Timestamp:
- 06/10/08 10:02:53 (4 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/5.2/src/com/itmill/toolkit/terminal/gwt/server/ApplicationServlet.java
r4728 r4838 1312 1312 if (isApplicationRunnerServlet) { 1313 1313 final String[] URIparts = getApplicationRunnerURIs(request); 1314 servletPath = URIparts[1] ;1314 servletPath = URIparts[1] + "/"; 1315 1315 } else { 1316 1316 servletPath = request.getContextPath() … … 1365 1365 final String applicationClassname = URIparts[4]; 1366 1366 applicationUrl = new URL(getApplicationUrl(request).toString() 1367 + applicationClassname );1367 + applicationClassname + "/"); 1368 1368 try { 1369 1369 applicationClass = classLoader.loadClass(applicationClassname);
