4

I am working on a form-based authentication and using following statements. I have realized on the way of implementation that HttpServletRequest->login method comes with servlet 3.0.(with help of stackoverflow users)

HttpServletRequest request = getHttpServletRequest();
request.login() 

So I am using weblogic as an AppServer, I have prepared a war file without any compilation error and it works at glassfish 3.1 appserver. But since weblogic 10.3 has implicit support 2.5 it overwrites Servlet 3.0.1.jar so having following error.

java.lang.NoSuchMethodError: javax.servlet.http.HttpServletRequest.login(Ljava/lang/String;Ljava/lang/String;)V

How I can run my war file with servlet 3.0 api on weblogic 10.3 , in other words how I can stop weblogic overwriting servlet 3.0 api?

Ahmet Karakaya
  • 9,899
  • 23
  • 86
  • 141
  • 1
    Simple answer - you cannot. The servlet API is just the API, not an implementation. You must migrate to a newer WebLogic version... it might be possible to integrate another container, but I'd rather not try that. – home Jun 21 '13 at 07:44

1 Answers1

18

Weblogic 10.3.x is a Servlet 2.5 container.You have to use Weblogic 12c and above . It provides support for Servlet 3.0 .

AllTooSir
  • 48,828
  • 16
  • 130
  • 164