1

我正在努力使我的消息流在 wso2 esb 中工作,所以我需要一些帮助来实现基本的通信:

Service1 想要接收一个整数 Service2 生成随机数

Service1 有 InSequence: log, send(到指定的地址点)。OutSequence:记录,发送

这看起来像:

 <proxy name="ClientAskNumber" transports="https http" startOnLoad="true"
        trace="disable">
        <target faultSequence="fault">
            <inSequence>
                <log level="full">
                    <property name="Insequence" value="***" />
                </log>
                <send>
                    <endpoint>
                        <address uri="http://localhost:8280/services/RandomNumbers" />
                    </endpoint>
                </send>
            </inSequence>
            <outSequence>
                <log level="full">
                    <property name="Outsequence" value="***" />
                </log>
                <send />
            </outSequence>
        </target>
    </proxy>

我有这样的回应:<faultstring>System.Web.Services.Protocols.SoapException: Server did not recognize the value of HTTP Header SOAPAction: urn:mediate. at System.Web.Services.Protocols.Soap11ServerProtocolHelper.RouteRequest()....etc

这是什么意思?我还缺少其他东西吗?请帮忙。谢谢

编辑:

我正在研究 Wso2 ESB,我只需要了解如何使工作成为消息通信,之后我将尝试添加不同类型的中介。我只是在解决这个问题,因为我是这项技术的新手,正如你所看到的,我真的很难让它发挥作用......

编辑2:*

<proxy xmlns="http://ws.apache.org/ns/synapse" name="ClientAskNumber" transports="https,http" statistics="disable" trace="disable" startOnLoad="true">
   <target endpoint="RandomNumbers">
      <inSequence>
         <log>
            <property name="CLIENTASKS" value="******C_ASKS" />
         </log>
         <send>
            <endpoint key="RandomNumbers" />
         </send>
      </inSequence>
      <outSequence>
         <log>
            <property name="CLIENTRECEIVES" value="*******C_RECEIVES" />
         </log>
      </outSequence>
   </target>
</proxy>
4

2 回答 2

3

在这种情况下,这对其他人有帮助:问题"Server did not recognize the value of HTTP Header SOAPAction: urn:mediate..."是我需要添加一个 Header 调解器以便将我的 web 服务方法“getNumbers”调用到我的 InSequence 中,如下所示:

 <inSequence>
         <log>
            <property name="CLIENTASKS" value="******C_ASKS" />
         </log>
         <header name="Action" value="http://tempuri.org/getNumbers" />
         <send>
            <endpoint key="RandomNumbers" />
         </send>
      </inSequence>

并通过soapUI发送这个请求:

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <Numbers xmlns="http://tempuri.org/" />
  </soap:Body>
</soap:Envelope>

我希望这对其他使用带有 WSO2ESB 的 .Net 解决方案的人有用(不幸的是,没有太多示例......)

PS感谢Ratha的帮助

于 2012-08-13T14:24:31.433 回答
1

这是我可以告诉你的流程。你必须将你的第二个服务指向你的第一个服务的端点。在上面的配置中

http://localhost:8280/services/RandomNumbers --->2nd service url
ClientAskNumber -->1st service..

现在您可以发送执行第二个服务所需的请求(即:检索随机数)因此代理将转发到该端点并将响应返回到外序列。您应该在控制台/日志中看到它,因为您使用了日志调解器。

在您收到的错误响应中,我希望您从第二次服务中得到它。检查您是否向端点发送正确的请求

于 2012-08-13T10:05:31.297 回答