soapUI - 使用Websphere Message Broker中的WSDL

时间:2013-02-06 15:32:56

标签: soap wsdl soapui messagebroker

我正在使用WebSphere Message Broker创建一个项目,该项目会产生2个BAR文件。一个是客户端,另一个是服务器。两者都部署在远程位置的代理中(楼上的服务器)。服务器流使用的WSDL位于消息集项目中。这是wsdl结构:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.1.3.1-hudson-749-SNAPSHOT. -->
<definitions targetNamespace="http://ws.interact.bytesw.com/" name="TvPagaInteractWebService" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="http://ws.interact.bytesw.com/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
  <types> 
    <xsd:schema>
      <xsd:import namespace="http://ws.interact.bytesw.com/" schemaLocation="TvPagaInteractWebServiceService.xsd"/>
    </xsd:schema>
  </types>
  <message name="ejecutarTransaccion">
    <part name="parameters" element="tns:ejecutarTransaccion"/>
  </message>
  <message name="ejecutarTransaccionResponse">
    <part name="parameters" element="tns:ejecutarTransaccionResponse"/>
  </message>
  <message name="consultarOperacion">
    <part name="parameters" element="tns:consultarOperacion"/>
  </message>
  <message name="consultarOperacionResponse">
    <part name="parameters" element="tns:consultarOperacionResponse"/>
  </message>
  <message name="consultarServicio">
    <part name="parameters" element="tns:consultarServicio"/>
  </message>
  <message name="consultarServicioResponse">
    <part name="parameters" element="tns:consultarServicioResponse"/>
  </message>
  <portType name="TvPagaInteractWebService">
    <operation name="ejecutarTransaccion">
      <input message="tns:ejecutarTransaccion"/>
      <output message="tns:ejecutarTransaccionResponse"/>
    </operation>
    <operation name="consultarOperacion">
      <input message="tns:consultarOperacion"/>
      <output message="tns:consultarOperacionResponse"/>
    </operation>
    <operation name="consultarServicio">
      <input message="tns:consultarServicio"/>
      <output message="tns:consultarServicioResponse"/>
    </operation>
  </portType>
  <binding name="TvPagaInteractWebServicePortBinding" type="tns:TvPagaInteractWebService">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
    <operation name="ejecutarTransaccion">
      <soap:operation soapAction=""/>
      <input>
        <soap:body use="literal"/>
      </input>
      <output>
        <soap:body use="literal"/>
      </output>
    </operation>
    <operation name="consultarOperacion">
      <soap:operation soapAction=""/>
      <input>
        <soap:body use="literal"/>
      </input>
      <output>
        <soap:body use="literal"/>
      </output>
    </operation>
    <operation name="consultarServicio">
      <soap:operation soapAction=""/>
      <input>
        <soap:body use="literal"/>
      </input>
      <output>
        <soap:body use="literal"/>
      </output>
    </operation>
  </binding>
  <service name="TvPagaInteractWebService">
    <port name="TvPagaInteractWebServicePort" binding="tns:TvPagaInteractWebServicePortBinding">
      <soap:address location="REPLACE_WITH_ACTUAL_URL"/>
    </port>
  </service>
</definitions>

部署后,我想从soapUI中使用它。但我不知道哪个端点配置它。我一直在尝试一些组合,包括代理连接的IP和端口。但是不起作用,有人可以帮助我吗?

2 个答案:

答案 0 :(得分:0)

在WSDL的底部,你有这个

<service name="TvPagaInteractWebService">
    <port name="TvPagaInteractWebServicePort" binding="tns:TvPagaInteractWebServicePortBinding">
      <soap:address location="REPLACE_WITH_ACTUAL_URL"/>
    </port>
</service>

在REPLACE_WITH_ACTUAL_URL中,WMB应绑定此特定服务的地址,以便从外部访问

答案 1 :(得分:0)

代理正在侦听的端口是侦听器的属性。默认情况下,SOAP节点使用EG级嵌入式侦听器,因此您可以通过执行以下命令找到它:

mqsireportproperties -e -o HTTPConnector -r

此信息可在此信息中找到,但也会显示当前的URL注册。

服务绑定的路径由SOAP节点本身的URL属性定义,您可以从工具箱中找到该属性。