Related questions
Svcutil.exe for .NET 4.0?
I was trying to use svcutil.exe to generate proxy classes for a service but when I use the /reference option to reference an assembly that is built for .NET 4.0 I get an error.
Could not load file or assembly [...] …
WCF REST Webinvoke not found
Following is the code i am using in my test app:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ServiceModel;
using System.ServiceModel.Description;
using System.IO;
namespace MyWCFServices
{
[ServiceContract]
interface IHelloWorldService
{
[OperationContract]
String …
Why is the first WCF client call slow?
I am trying to figure out why the first WCF call after client application start takes much more time comparing to second one.
What I did to test that:
Implemented simple self hosted WCF Server and console client.
Server IS …