2

我是这个领域的新手,我需要通过 ESB 访问我的 Web 服务。正如这里提到的 -使用代理服务的服务中介我试图创建它。之后我运行它并得到如下响应:

<TryitProxyError xmlns:h="http://wso2.org/ns/TryitProxy"
h:status="SOAP envelope error">org.apache.axis2.AxisFault:
The input stream for an incoming message is null.</TryitProxyError>

但我尝试使用SOAPUi运行相同的 Web 方法并获得预期的输出,如下所示:

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
   <soap:Body>
      <getPatientHistoryResponse xmlns="http://tilani.lk/">
         <getPatientHistoryResult>
            <NIC>123</NIC>
            <FullName>ABC DEF</FullName>
            <FirstName>ABC</FirstName>
            <Surname>DEF</Surname>
            <Title>Mr.</Title>
            <Gender>M/Gender>
         </getPatientHistoryResult>
      </getPatientHistoryResponse>
   </soap:Body>
</soap:Envelope>

这是什么原因?我使用 .net 创建了这个

我的WSDL 地址-http://localhost:2935/PatientRegService.asmx?WSDL

然后在 将端点定义为 -http://localhost:2935/PatientRegService.asmx

编辑 我的代理配置如下:

<proxy xmlns="http://ws.apache.org/ns/synapse" name="PatientManagement" transports="https,http" statistics="disable" trace="disable" startOnLoad="true">
   <target>
      <outSequence>
         <send/>
      </outSequence>
      <endpoint>
         <address uri="http://localhost:2935/PatientRegService.asmx?WSDL"/>
      </endpoint>
   </target>
   <publishWSDL uri="http://localhost:2935/PatientRegService.asmx?WSDL"/>
   <description></description>
</proxy>
4

2 回答 2

3

如果您只想通过 ESB 访问您的 Web 服务,您需要创建一个代理服务并访问代理服务 URI 而不是原始服务 URI。只需按照Pass Through Proxy 示例

于 2013-03-04T12:04:58.540 回答
1

试试下面的代理,看看你得到了什么。通过源视图编辑器添加此代理配置。

 <proxy xmlns="http://ws.apache.org/ns/synapse"
           name="testProxy"
           transports="https http"
           startOnLoad="true"
           trace="disable">
       <description/>
       <target>
          <inSequence>

             <log level="full">
                <property name="testprop" value="incoming message"/>

             </log>

             <send>
                <endpoint>
                   <address uri="http://localhost:2935/PatientRegService.asmx"/>
                </endpoint>
             </send>
          </inSequence>
          <outSequence>
             <send/>
          </outSequence>
       </target>
    </proxy>
于 2013-03-07T08:03:12.807 回答