WSO2 axis2模块中的空肥皂信封

时间:2016-08-26 20:51:33

标签: wso2 axis2

我正在为wso2 esb开发自定义axis2模块。现在我使用https://docs.wso2.com/display/ESB490/Writing+an+Axis2+Module中的代码 我有传入请求的问题。我发送的请求并不重要,因为它总是这样:

<?xml version='1.0' encoding='utf-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Body/></soapenv:Envelope>

另一方面,OutFlow或多或少地应用 - 响应看起来不错,而不是&#34; out&#34;它的方向设置为&#34; in&#34;。如果我没有错误调用方法将被调用请求并撤销响应 - 我是对的吗?在我的情况下,两者都使用invoke。我有什么想法我做错了吗?

编辑: 我的处理程序代码:

public class LogHandler extends AbstractHandler implements Handler {
    private Logger log = Logger.getLogger(LogHandler.class.toString());

    @Override
    public void init(HandlerDescription handlerDescription) {
        super.init(handlerDescription);
    }

    public InvocationResponse invoke(MessageContext msgContext) throws AxisFault {
        System.out.println("invoked: " + msgContext.getEnvelope().toString() + "\n");
        log.info("invoked: " + msgContext.getEnvelope().toString() + "\n");
        return InvocationResponse.CONTINUE;
    }

    public void revoke(MessageContext msgContext) {
        log.info("revoked: " + msgContext.getEnvelope().toString() + "\n");
    }

}

模块:

public class LoggingModule implements Module {
    private static final Log log = LogFactory.getLog(LoggingModule.class);

    // initialize the module
    public void init(ConfigurationContext configContext, AxisModule module) throws AxisFault {
    }

    public void engageNotify(AxisDescription axisDescription) throws AxisFault {
    }

    // shutdown the module
    public void shutdown(ConfigurationContext configurationContext) throws AxisFault {
    }

    public String[] getPolicyNamespaces() {
        return null;
    }

    public void applyPolicy(Policy policy, AxisDescription axisDescription) throws AxisFault {
    }

    public boolean canSupportAssertion(Assertion assertion) {
        return true;
    }
}

module.xml:

<module name="sample-logging" class="pl.wso2.logging.LoggingModule">
    <InFlow>
        <handler name="InFlowLogHandler" class="pl.wso2.logging.LogHandler">
            <order phase="loggingPhase"/>
        </handler>
    </InFlow>
    <OutFlow>
        <handler name="OutFlowLogHandler" class="pl.wso2.logging.LogHandler">
            <order phase="loggingPhase"/>
        </handler>
    </OutFlow>
</module>

在我的wso2代理中,我使用Payload Mediator创建响应,然后使用Respond Mediator返回它。 对于给定的请求:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
   <soapenv:Header/>
   <soapenv:Body>
   <aa>blahblah</aa>
   </soapenv:Body>
</soapenv:Envelope>

记录了两件事: 来自InFlow的请求

invoked: <?xml version='1.0' encoding='utf-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlso
ap.org/soap/envelope/"><soapenv:Body/></soapenv:Envelope>

来自OutFlow的回应

invoked: <?xml version='1.0' encoding='utf-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlso
ap.org/soap/envelope/"><soapenv:Body><m:checkpriceresponse xmlns:m="http://services.samples/xsd"><m:
code>dsadsa</m:code></m:checkpriceresponse></soapenv:Body></soapenv:Envelope>

2 个答案:

答案 0 :(得分:0)

根据https://axis.apache.org/axis2/java/core/docs/modules.html#Step2_:_LogHandler ...

  

“public void invoke(MessageContext ctx);”是被调用的方法   当控件传递给处理程序时,由Axis2引擎控制。 “上市   void revoke(MessageContext ctx);“处理程序时调用”   被Axis2引擎撤销。“

这意味着,因为您在InFlow和OutFlow中调用相同的处理程序,所以应该为请求和响应触发相同的invoke()方法。如果您希望为请求和响应执行不同的逻辑,您可能应该为请求和响应编写单独的处理程序。

答案 1 :(得分:0)

在调试完所有内容后,我发现在InFlow中解析请求时,而不是使用其soap消息,创建了新的(空)。值得庆幸的是,可以使用soap tracer处理程序(或只是其代码)访问正确的请求。