SoapUI wsdl wcf net.tcp 缺少进口商
SoapUI wsdl wcf net.tcp missing importer
Nn generall 我在 tcp 上提供托管服务,我无法使用 SoapUI 解析我的 wsdl,而它与 wcfTestClient 一起工作。
SoapUI 给我错误:
缺少进口商...
缺少用于绑定的端口类型..
不幸的是,我需要添加 headers,我听说这对于 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
Nn generall 我在 tcp 上提供托管服务,我无法使用 SoapUI 解析我的 wsdl,而它与 wcfTestClient 一起工作。
SoapUI 给我错误: 缺少进口商... 缺少用于绑定的端口类型..
不幸的是,我需要添加 headers,我听说这对于 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