Eiríkur Haraldsson

Results 3 comments of Eiríkur Haraldsson

@mconnew, @thuannguy I followed your workaround for replacing CreateChannelWithIssuedToken in Full framework into NET 6 /* Old return ChannelFactory.CreateChannelWithIssuedToken(token); */ // New SamlProvider.SamlClientCredentials credentials = new SamlProvider.SamlClientCredentials(token); ChannelFactory.Endpoint.EndpointBehaviors.Remove(typeof(ClientCredentials)); ChannelFactory.Endpoint.EndpointBehaviors.Add(credentials); ChannelFactory.CreateChannel();...

@mconnew worked like a charm, thanks. Is there any plans of making a similar extension method for ChannelFactory for this like in the old framework?

> A setting (e.g. `maven.archetype.catalogUrl`) would work, with a default value of the maven central. > > Note that according to current implementation, metadata of archetypes are retrieved and saved...