System.out.println("SERVCIE: " + service);
System.out.println("URL: " + request.getRequestURL().toString());
for (SecurityFilterChain c : proxy.getFilterChains()) {
System.out.println(c.toString());
}
proxy.doFilter(request, response, chain);
} catch (ServletException e) {
throw new RuntimeException(e);
}
assertEquals(HttpServletResponse.SC_OK, response.getErrorCode());