0 Replies Latest reply on Feb 6, 2007 2:21 AM by mysl

    questions about JaxRPCHeaderContextProcessor

    mysl

      hi, I tried the JaxRPCHeaderContextProcessor in my application, but it seemed to me that it didn't work, I don't know why? Can anybody help me.
      Thanks a lot!
      My application uses WSIF which utilizes Axis as the SOAP engine. My code is as follows:

      List chain = call.getService().getHandlerRegistry().getHandlerChain(portName);
      chain.add(new HandlerInfo(JaxRPCHeaderContextProcessor.class,null,null));
      call.getService().getHandlerRegistry().setHandlerChain(portName,chain);
      
      

      but I can't see the SOAP header information inserted into the SOAP message, and I doubt whether I have configured the handler properly
      because I toggled breakpoints in the JaxRPCHeaderContextProcessor,but
      the application didn't stop there.