*/
@Test
public void jsonpPollingTestClose() throws Exception {
final String serviceName = "/close";
final String sessionUrl = serviceName + "/222/" + UUID.randomUUID().toString();
final SockJsServiceFactory service = closeService();
final FullHttpResponse response = jsonpRequest(sessionUrl + "/jsonp?c=x", service);
assertThat(response.content().toString(UTF_8), equalTo("x(\"o\");\r\n"));
final FullHttpResponse firstResponse = jsonpRequest(sessionUrl + "/jsonp?c=x", service);
assertThat(firstResponse.content().toString(UTF_8), equalTo("x(\"c[3000,\\\"Go away!\\\"]\");\r\n"));