12 years ago
No methods are generated for net.tcp WCF Services
Hi,
I'm trying to write some automated tests for our WCF services and thought I could use SoapUI for this task. When I create a new project and add the WSDL definition URL to it, no request stubs are generated.
I switched the bindings in the WCF service to "basicHttpBinding" and it seems to work.
My problem is that we need to use tcp.net bindings here and I am not able to change that. The tcp.net transferMode is set to "Streamed", maybe this is the problem?
The configuration of the binding:
Am I doing something wrong or is SoapUI not capable of handling tcp.net stream transfer mode?
I'm trying to write some automated tests for our WCF services and thought I could use SoapUI for this task. When I create a new project and add the WSDL definition URL to it, no request stubs are generated.
I switched the bindings in the WCF service to "basicHttpBinding" and it seems to work.
My problem is that we need to use tcp.net bindings here and I am not able to change that. The tcp.net transferMode is set to "Streamed", maybe this is the problem?
The configuration of the binding:
<netTcpBinding>
<binding name="customTCP" closeTimeout="01:01:10" openTimeout="01:01:10"
receiveTimeout="01:05:00" sendTimeout="01:05:00" transactionFlow="false"
transferMode="Streamed" maxBufferSize="52428800" maxReceivedMessageSize="52428800"
portSharingEnabled="true">
<readerQuotas maxDepth="52428800" maxStringContentLength="52428800"
maxArrayLength="52428800" maxBytesPerRead="52428800" maxNameTableCharCount="52428800" />
<reliableSession inactivityTimeout="01:10:00" enabled="false" />
<security mode="None">
<transport clientCredentialType="None" protectionLevel="None" />
<message clientCredentialType="None" />
</security>
</binding>
</netTcpBinding>
Am I doing something wrong or is SoapUI not capable of handling tcp.net stream transfer mode?