I am starting to learn GWT and created a first very simple project. But when I run the project in Super-Dev Mode and load my first page from the browser, the console in Eclipse displays errors:
NoSuchMethodError: javax.servlet.http.HttpServletResponse.getHeader(String) NoSuchMethodError: javax.servlet.http.HttpServletResponse.isAsyncStarted(String)
From other posts, I understand that I need to check my servlet-api version and that I am likely using an old version.
How do I check which servlet-api version I have and how to change it? From what I have read from other posts I don't understand what I have to do.
I am using the Google App Engine SDK 1.9.58. In the SDK > servlet-api.jar > META-INF folder there is a MANIFEST.MF file , whose content is :
Manifest-Version: 1.0 Created-By: blaze-singlejar Build-GPlatform: gcc-4.X.Y-crosstool-v18-llvm-grtev4-k8
So it does not tell me which Servlet API version I have.
In the same package , there is the HttpServletResponse class, obviously it does not have these two methods.
Thank you