1 Reply Latest reply on Apr 8, 2009 6:00 PM by davestanley

    PhaseInterceptorChain doIntercept while invoking servicemix-cxf-bc

      Hi,

       

      I have a service-assembly that contains servicemix-cxf-bc (version 3.3.x)consumer and servicemix-bean (version 3.3.x). I have deployed the assembly in Fuse 4.

      I am able to access wsdl of the service through ?wsdl. However when I send a message through my client (Eclipse webservice tester), I get the following error

       

      org.apache.cxf.phase.PhaseInterceptorChain doIntercept

      INFO: Interceptor has thrown exception, unwinding now null

       

      Nothing informative is logged in fuse-esb-4.0.0.4\data\log\servicemix.log file even after setting log level to DEBUG or TRACE.

       

      I have attached service units for reference.

       

      Please Help!!

       

      -Harshit

        • 1. Re: PhaseInterceptorChain doIntercept while invoking servicemix-cxf-bc
          davestanley

          Can you try and enable the logging interceptors and see if that gives you any extra info.

           

          <cxfbc:consumer wsdl="classpath:service.wsdl"
                                targetEndpoint="endpoint"
                                targetService="replaceMe:service">
          
                    
                      <cxfbc:inInterceptors>
                      <bean class="org.apache.cxf.interceptor.LoggingInInterceptor"></bean>
                    </cxfbc:inInterceptors>
                    <cxfbc:outInterceptors>
                      <bean class="org.apache.cxf.interceptor.LoggingOutInterceptor"></bean>
                    </cxfbc:outInterceptors>
                    <cxfbc:inFaultInterceptors>
                      <bean class="org.apache.cxf.interceptor.LoggingInInterceptor"></bean>
                    </cxfbc:inFaultInterceptors>
                    <cxfbc:outFaultInterceptors>
                      <bean class="org.apache.cxf.interceptor.LoggingOutInterceptor"></bean>
                    </cxfbc:outFaultInterceptors>
                    
            </cxfbc:consumer>     
          
          

           

          Regards

          /Dave