241242243244245246247248249250
{ String myPath = "moved.txt"; String targetPath = "/base.txt"; getServerFixture().addServlet( "/" + myPath + "/*", new RedirectionServlet( HttpServletResponse.SC_MOVED_PERMANENTLY, myPath, targetPath, 6 ) ); testSuccessfulGet( myPath ); }
256257258259260261262263264265
{ String myPath = "moved.txt"; String targetPath = "/base.txt"; getServerFixture().addServlet( "/" + myPath + "/*", new RedirectionServlet( HttpServletResponse.SC_MOVED_TEMPORARILY, myPath, targetPath, 6 ) ); testSuccessfulGet( myPath ); }
272273274275276277278279280281282
String myPath = "moved.txt"; String targetPath = "/base.txt"; getServerFixture().addServlet( "/" + myPath, new RedirectionServlet( HttpServletResponse.SC_MOVED_PERMANENTLY, myPath, targetPath, -1 ) ); try { testSuccessfulGet( myPath );
296297298299300301302303304305306
String myPath = "moved.txt"; String targetPath = "/base.txt"; getServerFixture().addServlet( "/" + myPath, new RedirectionServlet( HttpServletResponse.SC_MOVED_TEMPORARILY, myPath, targetPath, -1 ) ); try { testSuccessfulGet( myPath );
324325326327328329330331332333334
352353354355356357358359360361362