-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update the tutorial for using OWIN middleware #337
Comments
I agree with you that piping all request through .NET may be problematic... |
I have tested the settings I've wrote above and they work. Of course, you have to register SwaggerUI on "/swagger" address like this: RouteTable.Routes.MapOwinPath(
"swagger",
app =>
{
app.UseSwaggerUi(
typeof(Global).Assembly,
new SwaggerUiOwinSettings
{
MiddlewareBasePath = "/swagger" |
Perfect. Thank you. |
Thank you for helping here. Btw: You can also create a PR to change the wiki with your suggestions :-)... |
Hi @RSuter, @cosmin-ciuc , |
Would it be possible to change the tutorial for usage of OWIN middleware so that instead of recommending to route all the requests through ASP.NET pipeline
it would recommend to add the following three lines in web.config file:
?
The text was updated successfully, but these errors were encountered: