Wso2 Esb错误地将其上下文添加到端点URL

Wso2 Esb错误地将其上下文添加到端点URL,wso2,wso2esb,endpoint,Wso2,Wso2esb,Endpoint,我目前正在使用ESB开发一个代理服务。该服务首先使用调出中介调用DSS中的服务,然后调用最终端点。DSS端点定义为WSDL端点 代理服务URL是,例如,/esb/services/exampleService,当我向服务发送帖子时,它尝试将此上下文添加到DSS端点的URL,在DSS中给出一个异常,即: 找不到端点引用(EPR)/services/dssservice的服务。SOAP11Endpoint/esb/services/exampleService 有没有办法阻止ESB添加到URL上 标

我目前正在使用ESB开发一个代理服务。该服务首先使用调出中介调用DSS中的服务,然后调用最终端点。DSS端点定义为WSDL端点

代理服务URL是,例如,
/esb/services/exampleService
,当我向服务发送帖子时,它尝试将此上下文添加到DSS端点的URL,在DSS中给出一个异常,即:

找不到端点引用(EPR)/services/dssservice的服务。SOAP11Endpoint/esb/services/exampleService

有没有办法阻止ESB添加到URL上

标注配置:

    <callout action="urn:exampleservice" endpointKey="DSSEndpoint"initAxis2ClientOptions="false">
        <source type="envelope"/>
        <target
          xmlns:s11="http://schemas.xmlsoap.org/soap/envelope/"
          xmlns:s12="http://www.w3.org/2003/05/soap-envelope" 
          xpath="s11:Body/child::*[fn:position()=1] | s12:Body/child::*[fn:position()=1]"/>
      </callout>


如果需要更多信息,请询问。

在调用中介之前尝试定义此属性:

<property name="REST_URL_POSTFIX" scope="axis2" action="remove"/>