0

我正在使用 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 和端口。但是不起作用,请有人帮助我吗?

4

2 回答 2

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 应该绑定此特定服务的地址,以便可以从外部访问它

于 2013-02-06T15:39:15.397 回答
0

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

mqsireportproperties -e -o HTTPConnector -r

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

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

于 2013-03-21T11:53:05.800 回答