I have an interesting problem with WCF in a Windows 7 environment... it's slooooooow.
The service is self-hosted, running in a console app.
The same code running in a Vista environment runs in about 1/3 of the time.
Server config:
<system.serviceModel>
 <behaviors>
  <serviceBehaviors>
   <behavior name="Logging.Services.LoggerServiceBehavior">
    <serviceMetadata httpGetEnabled="true" />
    <serviceThrottling maxConcurrentCalls="10000" maxConcurrentSessions="1000" maxConcurrentInstances="1000" />
    <serviceDebug includeExceptionDetailInFaults="true" />
    <dataContractSerializer maxItemsInObjectGraph="2147483647" />
   </behavior>
  </serviceBehaviors>
 </behaviors>
 <bindings>
  <netTcpBinding>
   <binding name="nettcp" maxBufferSize="524288" maxConnections="1000" maxReceivedMessageSize="524288">
    <security mode="None">
     <transport clientCredentialType="None" protectionLevel="None" />
     <message clientCredentialType="None" />
    </security>
   </binding>
  </netTcpBinding>
 </bindings>
 <services>
  <service behaviorConfiguration="Logging.Services.LoggerServiceBehavior" name="Logging.Services.LoggerService">
   <endpoint address="" binding="netTcpBinding" bindingConfiguration="nettcp"
    name="tcp" contract="Logging.Services.Contracts.ILogger" />
   <host>
    <baseAddresses>
     <add baseAddress="net.tcp://localhost:8001/LoggerService" />
     <add baseAddress="http://localhost:8002/LoggerService" />
    </baseAddresses>
   </host>
  </service>
 </services>
</system.serviceModel>
Client config:
  <netTcpBinding>
   <binding name="tcp" closeTimeout="00:01:00" openTimeout="00:01:00"
    receiveTimeout="00:10:00" sendTimeout="00:01:00" transactionFlow="false"
    transferMode="Buffered" transactionProtocol="OleTransactions"
    hostNameComparisonMode="StrongWildcard" listenBacklog="10" maxBufferPoolSize="524288"
    maxBufferSize="524288" maxConnections="10" maxReceivedMessageSize="524288">
    <readerQuotas maxDepth="32" maxStringContentLength="524288" maxArrayLength="16384"
     maxBytesPerRead="4096" maxNameTableCharCount="16384" />
    <reliableSession ordered="true" inactivityTimeout="00:10:00"
     enabled="false" />
    <security mode="None">
     <transport clientCredentialType="Windows" protectionLevel="EncryptAndSign" />
     <message clientCredentialType="Windows" />
    </security>     
   </binding>    
  </netTcpBinding>
and
  <endpoint address="net.tcp://localhost:8001/LoggerService" binding="netTcpBinding"
   bindingConfiguration="tcp" contract="LoggerLogService.ILogger"
   name="tcp" />
I read somewhere that someone with a similar problem, running NOD32 had to turn HTTP Checking off, which I have done to no effect. I completely disabled NOD with no luck.
Any ideas?
Thanks in advance!