Matt Connew

Results 286 comments of Matt Connew

The cause of your problem is the .NET Runtime no longer has the `[Serializable]` attribute applied to CultureInfo and transitive classes such as NumberFormatInfo. The only solution which might work...

I'll look at this when I schedule time to clean up all the pending wsdl related issues.

This is because when using Windows credentials, we need to make calls into the SSPI (on Windows)/GSSPI (on Linux) libraries to do the Negotiate authentication. There is an internal class...

That binding won't work because you are specifying security mode Message, which can't currently be supported due to missing a security dependency. We do support TransportWithMessageCredentials though. CoreWCF supports client...

CoreWCF is the server part. There is no ServiceHost any more, it doesn't make sense as ASP.NET Core is the host. [This blog post](https://corewcf.github.io/blog/2021/02/19/corewcf-ga-release) might help you understand a bit...

Can you try making this change: ```c# wcfBuilder.AddService((serviceOptions) => { serviceOptions.BaseAddresses.Add(new Uri("http://localhost:27462/VirtualFolder/"); }); ```

> We shouldn't hard code in an internal domain name here. This should have no value and be commented out --- Refers to: src/System.Private.ServiceModel/tools/scripts/SetClientEnv-Linux.sh:16 in 5954336. [](commit_id = 59543364d683a9a9d501faf334458f7da32c635f, deletion_comment...

Can you provide details how to run this if I checkout your branch? We should have some documentation explaining how to use this.

If that exception is thrown, I believe you would terminate the process, but that check should never throw. It acts more like an assert to check for a condition which...