I have implemented a simple standalone WCF service with a basicHttpBinding binding. I created a client and generated the client stub code by using Add Service Reference. The first time the client call the service it takes at least 15 seconds before the server sees the request. From reading this it seems that it is due to JIT generation of serialization code. I tried to pre-generate the code as described here using
svcutil.exe /t:xmlSerializer <assemblyPath>
on my complied client exe but code but got the following error: No service contract in the assembly has an operation with XmlSerializerOperationBehavior.
XmlSerializerOperationBehavior? – VMAtm Sep 5 '11 at 8:59