繁体   English   中英

在WSO2 ESB中还原任务类

[英]Restore task class in WSO2 ESB

当我在WSO2 ESB中使用任务时,每个Web服务始终会返回相同的错误:

“无法处理请求。未识别到动作'(mySoapAction)'”

其中(mySoapAction)是用于任务实现的每个SOAP操作,每个操作,每个代理服务。 为了解决此错误,我该怎么办? 我认为org.apache.synapse.startup.tasks.MessageInjector中出现任务类错误。 显然,任务实现是正确的,因为一天前的相同任务运行良好。 有什么建议吗?

以下是天气网络服务的示例( http://wsf.cdyne.com/WeatherWS/Weather.asmx?WSDL

代理服务:

<?xml version="1.0" encoding="UTF-8"?>
<proxy xmlns="http://ws.apache.org/ns/synapse"
       name="TestSOF"
       transports="https http"
       startOnLoad="true"
       trace="disable">
   <target>
      <endpoint>
         <wsdl service="Weather"
               port="WeatherSoap12"
               uri="http://wsf.cdyne.com/WeatherWS/Weather.asmx?WSDL"/>
      </endpoint>
      <outSequence>
          <log level="full"/>
          <property name="OUT_ONLY" value="true"/>
          <property name="transport.vfs.ReplyFileName" value="weather.xml" scope="transport"/>
          <send>
            <endpoint>
                <address uri="vfs:file:///E:/temp"/>
            </endpoint>
          </send>
      </outSequence>
   </target>
   <publishWSDL uri="http://wsf.cdyne.com/WeatherWS/Weather.asmx?WSDL"/>
</proxy>

任务:

<?xml version="1.0" encoding="UTF-8"?>
<task xmlns="http://ws.apache.org/ns/synapse"
      name="TestSOFTask"
      class="org.apache.synapse.startup.tasks.MessageInjector"
      group="synapse.simple.quartz">
   <trigger count="1" interval="1"/>
   <property xmlns:task="http://www.wso2.org/products/wso2commons/tasks"
             name="proxyName"
             value="TestSOF"/>
   <property xmlns:task="http://www.wso2.org/products/wso2commons/tasks"
             name="soapAction"
             value="http://ws.cdyne.com/WeatherWS/GetCityWeatherByZIP"/>
   <property xmlns:task="http://www.wso2.org/products/wso2commons/tasks" name="message">
      <weat:GetCityWeatherByZIP xmlns:weat="http://ws.cdyne.com/WeatherWS/">
         <weat:ZIP>11010</weat:ZIP>
      </weat:GetCityWeatherByZIP>
   </property>
   <property xmlns:task="http://www.wso2.org/products/wso2commons/tasks"
             name="format"
             value="soap12"/>
   <property xmlns:task="http://www.wso2.org/products/wso2commons/tasks"
             name="injectTo"
             value="proxy"/>
</task>

计划任务,您将在文件名weather.xml中找到服务响应

如果要从soap12更改为soap11:

  • 将任务def中的属性“格式”的值更改为: soap11
  • 使用端口“ WeatherSoap ”而不是“ WeatherSoap12”在代理服务中更改端点def

希望它可以帮助您找到配置文件出了什么问题。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM