Matt Connew

Results 286 comments of Matt Connew

The problem is with the WS-Trust request going to the STS? Can you provide the request that this code is generating and an example correct request? Redact anything sensitive. The...

@brentschmaltz, can you take a look? This has hit the limits of my understanding of WS-Trust.

@tibor19, can you redirect this to somewhere sensible?

This is a known limitation as that support hasn't been added yet.

Does your service type have a default constructor? The automatically provided ServiceBehaviorAttribute has an `IInstanceProvider` configured which can pull the instance from DI when it doesn't have a default constructor....

I think I found the bug. The if statement around the code at https://github.com/CoreWCF/CoreWCF/blob/main/src/CoreWCF.Primitives/src/CoreWCF/Dispatcher/InstanceBehavior.cs#L45-L52 is inverted. It's saying if there isn't a default constructor, then create a delegate which constructs...

@oruchreis, would you be able to submit a test which validates this scenario and make the code change? It's okay if you can't, it will get fixed at some point.

@randomnoise, you are definitely welcome to help. The connection value does actually depend on the request. If the service is configured with KeepAliveEnabled, but the client request has a `Connection:...

The reason for this is that all the code ported over from WCF was written with the expectation that the base address is known at startup and we can append...