Matt Connew
Matt Connew
Add the following as the first statement in your code: ```c# ServiceSoapClient.CacheSetting = CacheSetting.AlwaysOn; ``` Because WCF doesn't use config based configuration for .NET, it can't be presumed safe to...
Try using netstat to see how many sockets are open.
Looking at the logs, it looks like there's a test not completing. ``` 2023-07-07T19:16:37.6780906Z Request starting HTTP/1.1 POST http://localhost:57214/BasicWcfService/basichttp.svc application/soap+xml; charset=utf-8 2023-07-07T19:33:54.0990545Z Attempting to cancel the build... ``` The last...
The client generated by dotnet-svcutil (which is the implementation for WCF Connected Services) generates a class which derives from `ClientBase`. In earlier versions of the WCF Client, the api was...
Just an FYI/small tip, I usually do the conditional referencing like this as it works for multiple .NET Framework versions and isn't fragile to .NET version updates, e.g. when .NET...
FYI, this was a breaking change for CoreWCF as we have tests which depended on a non-null sync context to be set (we're validating whether we propagate it through to...
@davidfowl, do you have a suggestion on how to overcome the IIS problem? I'm still in the situation where I can't use Kestrel and IIS together and I'm about to...
> @mconnew that's not a case where you need multiple transports, but rather multiple servers. We've dabbled with this a bit, making an IServer that activates both instances. Supporting multiple...