SoapUI wsdl wcf net.tcp缺少导入程序

SoapUI wsdl wcf net.tcp缺少导入程序,wcf,wsdl,soapui,wcf-data-services,wcftestclient,Wcf,Wsdl,Soapui,Wcf Data Services,Wcftestclient,Nn general我所有的服务都是在tcp上托管的,我不能用SoapUI解析我的wsdl,因为它可以与wcfTestClient一起工作 SoapUI给了我一个错误: 找不到。。。 缺少绑定的端口类型 不幸的是,我需要添加我听说不适用于wcfTestClient的标题 和我的服务配置 <service name=".." behaviorConfiguration="..."> <endpoint binding="netTcpBinding" binding

Nn general我所有的服务都是在tcp上托管的,我不能用SoapUI解析我的wsdl,因为它可以与wcfTestClient一起工作

SoapUI给了我一个错误: 找不到。。。 缺少绑定的端口类型

不幸的是,我需要添加我听说不适用于wcfTestClient的标题

和我的服务配置

<service name=".." behaviorConfiguration="...">
        <endpoint binding="netTcpBinding" bindingNamespace="http://.." bindingConfiguration="SecureNetTcpBinding" contract="..." address="" />
        <endpoint address="mex" bindingNamespace="http://.." binding="netTcpBinding" bindingConfiguration="SecureNetTcpBindingMex" contract="IMetadataExchange" />
        <host>
          <baseAddresses>
            <add baseAddress="net.tcp://localhost:50002...svc" />
          </baseAddresses>
        </host>
      </service>

        <binding name="SecureNetTcpBindingMex" maxConnections="400" listenBacklog="400">
          <security mode="None">
          </security>
        </binding>

是否可以使用SoapUI解析wcf net.tcp?如果没有,我有什么选择

只需添加以下端点:

<endpoint address="soap" binding="basicHttpBinding" contract="...">
    <identity>
        <dns value="localhost" />
    </identity>
</endpoint>

然后从

消费到SoapUI,只需添加以下端点:

<endpoint address="soap" binding="basicHttpBinding" contract="...">
    <identity>
        <dns value="localhost" />
    </identity>
</endpoint>
然后从