Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using Servlet 3.0 with Weblogic 10.3

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?

like image 822
Ahmet Karakaya Avatar asked Dec 01 '22 19:12

Ahmet Karakaya


1 Answers

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 .

like image 119
AllTooSir Avatar answered Dec 12 '22 21:12

AllTooSir