Using Servlet 3.0 with Weblogic 10.3

10,893

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 .

Share:
10,893
Ahmet Karakaya
Author by

Ahmet Karakaya

IMPossible also says I'M Possible

Updated on June 23, 2022

Comments

  • Ahmet Karakaya
    Ahmet Karakaya almost 2 years

    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?