Search code examples
javaweblogicjax-wsweblogic12cejb-3.2

weblogic 12cR2 annoying log when using EJB and JAXWS at the same bean


I have a Java EE project (MyProject) which contains an EJB project (MyEJB) I created a session bean (Stateless) that is my web service class as well (ServiceAddTEST). The container is weblogic 12.2.1. Everything goes well but when I call the web service in the console of weblogic below message shown:

<Mar 6, 2016 6:30:35 PM IRST> <Error> <Kernel> <BEA-000802> <ExecuteRequest failed
 java.lang.IllegalStateException: Context pushed was [(pId = 0, pName = DOMAIN, appId = MyProject, appName = MyProject, appVersion = null, mId = /ServiceAddTEST, compName = /ServiceAddTEST)], but context being popped is [(pId = 0, pName = DOMAIN, appId = MyProject, appName = MyProject, appVersion = null, mId = MyEJB, compName = ServiceAddTEST)].
java.lang.IllegalStateException: Context pushed was [(pId = 0, pName = DOMAIN, appId = MyProject, appName = MyProject, appVersion = null, mId = /ServiceAddTEST, compName = /ServiceAddTEST)], but context being popped is [(pId = 0, pName = DOMAIN, appId = MyProject, appName = MyProject, appVersion = null, mId = MyEJB, compName = ServiceAddTEST)]
        at weblogic.application.ComponentInvocationContextManagerImpl$4.validate(ComponentInvocationContextManagerImpl.java:256)
        at weblogic.application.ComponentInvocationContextManagerImpl$4.close(ComponentInvocationContextManagerImpl.java:231)
        at weblogic.invocation.ComponentInvocationContextManager._runAs(ComponentInvocationContextManager.java:352)
        at weblogic.invocation.ComponentInvocationContextManager.runAs(ComponentInvocationContextManager.java:333)
        at weblogic.work.LivePartitionUtility.doRunWorkUnderContext(LivePartitionUtility.java:54)
        Truncated. see log file for complete stacktrace
>

However, the web service works fine. I want to solve the problem to get rid of this log, i think it can cause some problems later. Additionally, there is no any extra information in the log file. Below is the code of the class:

@Stateless
@WebService
public class ServiceAddTEST {


    @WebMethod
    public int getCount(){
        return 20;
    }

About environment:

  • Eclipse Mars
  • Java 1.8.0_71
  • Weblogic 12.2.1
  • EJB 3.2

Solution

  • The issue will be fixed in Version release 12.2.2.1.0 as claimed here

    Edit

    Fixed by application of the patch 22648025 (you need an Oracle support account to get it)