Dustin Moris Gorski

Results 90 comments of Dustin Moris Gorski

Thanks, I'll try to pick this up over the next couple weeks!

@TheAngryByrd Sorry for the late reply but that sounds good to me!

Unfortunately not but I think [Saturn, which is a wrapper around Giraffe](https://saturnframework.org/tutorials/how-to-start.html) has a similar experience: ``` open Saturn open Giraffe let app = application { use_router (text "Hello World...

Hi, quick question what do you want to happen when a user is not authentiated? Should your application challenge them to present a cookie or to log in via Kerberos?...

In this case you have two options how to accomplish it: - The classic ASP.NET Core way would be to create a new `MultiAuthMiddleware` where you can call multiple authentication...

Agreed I think that would be a pretty common use case to want to support multiple auth schemes.

There should be a `tryBindJson` and a `tryBindXml`, but unfortunately the current libraries which Giraffe uses for JSON and XML serialization don't easily support this use case. The `try{...}` functions...

Oh, thanks for bringing this to our attention! Have you got a pointer to an official ASP.NET Core documentation section which outlines why or when one needs this in order...

You are correct that this is not possible with endpoint routing anymore. I am not sure if there is any clever trick we could apply to make it possible again,...

> Your commit has closed the wrong issue... Ops, yes, sorry about that! > So we have basically three choices: > OOTB: composability > TokenRouter: composability and routing performance >...