Servlet 3.0 async NOT working on Tomcat 7.0.27 on Windows

2012-05-14 Thread rohit patil
Hi All, I have written the below piece of code (NewServlet.java) to try the Servlet 3.0 async feature. But it is failing by throwing up the below mentioned error. Tomcat Version: 7.0.27 (32 bit) OS: Windows 7 java.lang.IllegalStateException: Not supported. at

Re: Servlet 3.0 async NOT working on Tomcat 7.0.27 on Windows

2012-05-14 Thread Konstantin Kolinko
2012/5/14 rohit patil sparkb...@gmail.com: Hi All, I have written the below piece of code (NewServlet.java) to try the Servlet 3.0 async feature. But it is failing by throwing up the below mentioned error. Tomcat Version: 7.0.27 (32 bit) OS: Windows 7 java.lang.IllegalStateException: Not

Re: Servlet 3.0 async NOT working on Tomcat 7.0.27 on Windows

2012-05-14 Thread rohit patil
Thanks for replying, 1. I do not have any filters configured. 2. Yes my web.xml does mark themselves as adhering to the Sevlet 3.0 specification 3. Yes apps under http://localhost:8080/examples/jsp/ also does NOT work, they also throw up the same exception. Here is the stack trace

Re: Servlet 3.0 async NOT working on Tomcat 7.0.27 on Windows

2012-05-14 Thread Konstantin Kolinko
2012/5/14 rohit patil sparkb...@gmail.com: Thanks for replying, 1. I do not have any filters configured. 2. Yes my web.xml does mark themselves as adhering to the Sevlet 3.0 specification 3. Yes apps under http://localhost:8080/examples/jsp/ also does NOT work, they also throw up the same

Re: Servlet 3.0 async NOT working on Tomcat 7.0.27 on Windows

2012-05-14 Thread rohit patil
Hi I undid the changes i had done in server.xml and that seems to fix the issue. Connector connectionTimeout=2 port=8084 protocol=HTTP/1.1 redirectPort=8443/ !--Connector connectionTimeout=2 port=8084 protocol=org.apache.coyote.http11.Http11NioProtocol redirectPort=8443/-- could you