ChatGPT解决这个技术问题 Extra ChatGPT

OwinStartup not firing

I had the OwinStartup configuration code working perfectly and then it stopped working. Unfortunately I'm not sure exactly what I did to get it to stop working and am having a really hard time figuring it out.

To make sure I have the basics covered, I doubled checked to make sure the I have the

[assembly:OwinStartup(typeof(WebApplication.Startup))] 

attribute assigned properly and made sure that I don't have an appSetting for owin:AutomaticAppStartup that is set to false so I made one set to true to be safe as there was nothing there before.

<add key="owin:AutomaticAppStartup" value="true" />

I also tried specifically calling out the appSetting:

<add key="owin:appStartup" value="WebApplication.Startup" />

Before it stopped working I upgraded the Microsoft.Owin.Security NuGet packages to 2.0.2, so I tried reverting them to 2.0.1 (that was a pain) but it didn't change anything. I have WebActivator installed on the project and am using that to bootstrap other things but I've tested that on a fresh WebApplication template and it works there so I don't think that is the culprit.

I also tried removing my Startup class and using Visual Studio to add a new one using the OWIN Startup Class type in Add New Item and that isn't getting called either. Next I tried adding a second Startup class since I know it will throw an exception if there is more than one OwinStartup attributes defined, but it isn't throwing any exception there.

Not sure what else to try. Any thoughts?

Update

Turns out that Resharper removed the reference to Microsoft.Owin.Host.SystemWeb when I used it to remove unused references.

Do you have Microsoft.Owin.Host.Systemweb package installed in this application. Make sure this dll is also part of the bin folder?
That was it. Thanks so much. I think what happened is that I used Resharper to remove unused references at some point and it doesn't think that one is needed. If you want to put this as an answer I'll definitely mark it as the solution. Thanks for the help.
Jeff, ReSharper removed "unused" reference to Microsoft.Owin.Host.Systemweb - are you talking about "using" statement? In which file, Startup.cs?
I had exactly the same problem, resharper removed the reference to Microsoft.Owin.Host.SystemWeb. I fixed it by opening the Package Manager Console Window in Visual Studio and running the following command PM> Update-Package -reinstall Microsoft.Owin.Host.SystemWeb
As an update to @JoeKing's coment above. PM Console wouldn't update as "Not found". I had to go for a reinstall. PM> Install-Package Microsoft.Owin.Host.SystemWeb

U
Uwe Keim

Make sure you have installed Microsoft.Owin.Host.SystemWeb package in the project. This package is needed for startup detection in IIS hosted applications. For more information you can refer to this article.


How might someone kick off the Owin Startup Detection programmatically within a consumed/owin-encapsulating library, assuming we have a place to call it (PreApplicationStartMethod), without requiring these direct references of the Microsoft.Owin stuff? How do we specifically provoke Katana to call Startup.Configuration(IAppBuilder)?
Trying to create an application from scratch, without using the MVC template. This ended 2 hours despair.
Just when I was shouting resharper is the biggest productivity killer I had this problem and couldn't figure out for a week why web api stopped working. Another proof resharper is killing my productivity.
Requiring to reference a library that is not really used during compilation is a bad design by Microsoft! Resharper is doing his best but there is no weapon against such bad decisions.
Amazing. Every time I add an OWIN startup file I have this problem. And every time I forget why, and end up at this answer.
S
Simon_Weaver

If you've upgraded from an older MVC version make sure you don't have

  <add key="owin:AutomaticAppStartup" value="false" />

in your web.config. It will suppress calling the startup logic.

Instead change it to true

  <add key="owin:AutomaticAppStartup" value="true" />

I realize you already mentioned this but sometimes people (like me) don't read the whole question and just jump to the answers...

Somewhere along the line - when I upgraded to MVC 5 this got added and I never saw it until today.


Had the same issue when implementing an Owin startup class in an old mvc project. Switching the value did the trick!
A
Aaron Sherman

Alternative answer to the original problem discussed - Owin "not firing." In my case I spent hours thinking it wasn't firing due to being unable to set a breakpoint in it.

When debugging OWIN startup in visual studio

IIS Express - Running "F5" will break on the OWIN startup code

IIS - Running "F5" will not break until after OWIN (and global.asax) code is loaded. If you attach to W3P.exe you will be able to step into it.


you are right! It's just Visual Studio 2013 debugger not stopping on a break point inside Startup class - while running under local IIS. Weird.
Can you elaborate on the 'attach to W3P.exe'? I have the same issue of the breakpoint not being hit with IIS but is hit with IISExpress. I have stopped the application, attached to w3wp.exe and then browsed to my localhost but still it's not being hit. Have I missed something?
I cannot attach to a running instance of my app either, although I believe I was able to do so before. I tried to open an app in a browser, then in VS2013 to use "Debug-> Attach to Process", and then to reload a page in a browser. VS didn't stop. I know that OWIN Startup is executing: I put some logging into it for debug purposes. It's like back in a dark age of intermediate debugging prints.
a co worker just showed me that in iis if you double click on the default app pool and change the managed pipeline mode to classic the debugger will break in startup. I ran after that and got an error saying the application had to run in Integrated so I had to change it back but was at least able to see that it was breaking there.
There are a couple of things here. "w3wp.exe" is based on application pool. you should be able to debug global.asax and owin if your application is not the first application you request on that starts up that process. i.e. request a different application in the application pool, "Attach to w3wp.exe", and then request the application your attempting to debug.
R
Remotec

If you are having trouble debugging the code in the Startup class, I have also had this problem - or I thought I did. The code was firing but I believe it happens before the debugger has attached so you cannot set breakpoints on the code and see what is happening.

You can prove this by throwing an exception in the Configuration method of the Startup class.


this is exactly what's happening. Is there a solution to get Startup class to fire after debugger has attached?
May i know how to throw exception in Configuration method?
Added this line to Startup.cs to prove that it was executed : System.IO.File.WriteAllText(@"c:\temp\startup.txt", "Started");
@Karthikeyan - Add this line after of before (doesn't matter) the ConifureAuth(app); line - throw new Exception("Hello");
Make the first line System.Threading.Sleep(10_000) so it will wait long enough for the debugger to attach before continuing (adjust as needed)
R
Rasmus

DEBUGGING TIPS

If debugging does not work try using IIS Express or try the method below for local IIS

Using local IIS

For some reason this method enables debugging of this method:

Request a webpage Attach to w3wp.exe process Touch the web.config file Request a webpage

Extra tip

Maybe doing this will flush a cache:

In web.config add the optimizeCompilations attribute with a false value Run site Undo the change in web.config


toggling the setting optimizeCompilations="false" works for me
You save my day! optimizeCompilations="false" work for me.
optimizeCompilations saved my day. Thanks :)
r
randomsolutions

I had a similar issue to this and clearing Temporary ASP.NET Files fixed it. Hope this helps someone.


Just for reference, here's another answer that provides a little more detail about where these files are stored: stackoverflow.com/questions/16137457/…
I running IIS EXPRESS and window 8: delete in here: C:\Users\Your User Name\AppData\Local\Temp\Temporary ASP.NET Files\vs
Thanks, I noticed this answer because I had an error before this one, about something locking a file in the Temporary ASP.NET Files folder
I was struggling with this for 1 whole day and finally this worked for me. After clearing the Temporary ASP.NET Files folder content and Owin startup got invoked.
U
Ufuk Hacıoğulları

I had the same problem. Microsoft.Owin.Host.SystemWeb package was installed but during the installation NuGet was not able to add the dll as a reference for some reason. Make sure your project has that reference. If not you can try to reinstall:

update-package Microsoft.Owin.Host.SystemWeb -reinstall

I had an error like below on reinstall but somehow it worked:

System call failed. (Exception from HRESULT: 0x80010100 (RPC_E_SYS_CALL_FAILED))


I'd been fighting this for a while, and this is what fixed my problem. I had the nuget reference in packages.config, but my csproj didn't have the reference.
In my case, I didn't have the package installed at all. Running install-package Microsoft.Owin.Host.SystemWeb solved my issue. Thanks for the hint.
J
James Rapson

I had same problem when I added Owin to an existing web project. I eventually found the problem was due to the following in the web.config file.

<assemblies>
  <remove assembly="*" />
  <add assembly="System.Web.Mvc" />
  <add assembly="System.Web.WebPages" />

   ...

</assemblies>

The remove assembly="*" was causing the problem. When I remove this line the Owin startup code ran. I eventually change it to the following and it worked perfectly

<assemblies>
  <remove assembly="*" />
  <add assembly="Microsoft.Owin.Host.SystemWeb" />
  <add assembly="System.Web.Mvc" />
  <add assembly="System.Web.WebPages" />
  <add assembly="System.Web.Helpers" />
...
</assemblies>

I had a sitecore project and in my web.config file, there was no tag. But adding fixed my problem.
Thanks @burki, because of your comment, I forced myself to try this solution and it did worked for us too! The Owin startup class wasn't firing since the update of VS to 15.9.9.
thank you so much! this fixed it, i had to add the follwing:
A
Ashutosh B Bodake

In my case this Microsoft.Owin.Host.SystemWeb package is present in the project.

But below two tags are not present in web.config.

<add key="owin:AutomaticAppStartup" value="true" />
<add key="owin:appStartup" value="namespace.className.methodName" />

after adding them it works smoothly.


A
Adam Prescott

In my case, the IIS application pool was not set to v4. It was v2.

Changed the AppPool to v4 and everything was okay.


s
sirdank

In my case, my web.config had

<authorization>
  <allow users="?" />
</authorization>

To force it to fall back to Owin, I needed it to be

<authorization>
  <deny users="*" />
</authorization>

For me there wasn't any allow users, but setting to deny fixed the problema
S
Sean Song

In my case, my website's output path is changed by somebody, the IIS Express even not load OWIN, and the setup class will not be hit of course. After I set the output path as "bin\", it works well.


W
WWC

I found the following article to be very helpful:

https://weblog.west-wind.com/posts/2015/Apr/29/Adding-minimal-OWIN-Identity-Authentication-to-an-Existing-ASPNET-MVC-Application#MinimalCodeSummary

In my case, I had to set the following before Owin authentication would work instead of windows authentication:

<system.web>   
    <authentication mode="None" />   
<system.web>

A
Andrew Gale

This worked for me:

add authentication mode="None"

<system.web>
    <compilation debug="true" targetFramework="4.6.1" />
    <httpRuntime targetFramework="4.6.1" />
      <authentication mode="None" /><!--Use OWIN-->
  </system.web>

n
niki b

I am not sure if this will still help someone, but I've done all of the solutions above (and from some other posts) to no avail.

What fixed the issue on my end was to put a backslash to the end of RedirectUri value in the web.config (crazy, I know!). RedirectUri is a parameter in UseOpenIdConnectAuthentication.

So, instead of:

<add key="ida:RedirectUri" value="https://www.bogussite.com/home" />

Do this:

<add key="ida:RedirectUri" value="https://www.bogussite.com/home/" />

And updated the Reply URL on the Azure App Settings as well.

That somehow made the Startup to run as expected (probably cleared some cache), and the breakpoints are now firing.

FYI. I was modelling my code from here: https://github.com/microsoftgraph/aspnet-connect-sample


F
Frederik Struck-Schøning

After converting a class library to a Web Application Project, I ran into this and became stubborn. Turned out, in my .csProj file, I had this:

<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  <DebugSymbols>true</DebugSymbols>
  <DebugType>full</DebugType>
  <Optimize>false</Optimize>
  <OutputPath>bin\Debug\</OutputPath>
  <DefineConstants>DEBUG;TRACE</DefineConstants>
  <ErrorReport>prompt</ErrorReport>
  <WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  <DebugType>pdbonly</DebugType>
  <Optimize>true</Optimize>
  <OutputPath>bin\Release\</OutputPath>
  <DefineConstants>TRACE</DefineConstants>
  <ErrorReport>prompt</ErrorReport>
  <WarningLevel>4</WarningLevel>
</PropertyGroup>

thus building the various dll's into a subfolder of the bin-folder (which ifc. won't work). Solution was to change both text-contents for OutputPath to just bin\.


F
Fábio Carvalho

For me it was because they are not in the same namespace. After I remove my AppStart from "project.Startup.AppStart" and let they both Startup.cs and Startup.Auth.cs with "project.Startup" namespace, everything was back to work perfectly.

I hope it help!


p
pmb5

If you are seeing this issue with IIS hosting, but not when F5 debugging, try creating a new application in IIS.

This fixed it for me. (windows 10) In the end i deleted the "bad" IIS application and re-created an identical one with the same name.


J
JoeHz

I think what some people were trying to get to above is that if you want to programatically make your OWIN server "come to life", you'd be calling something like this:

using Microsoft.Owin.Hosting;

    IDisposable _server = WebApp.Start<StartupMethod>("http://+:5000"); 
              // Start Accepting HTTP via all interfaces on port 5000

Once you make this call, you will see the call to StartupMethod() fire in the debugger


x
xtds

In case you have multiple hosts using the same namespace in your solution, be sure to have them on a separate IISExpress port (and delete the .vs folder and restart vs).


A
Anthony De Souza

I messed around with a lot of the suggestions on this post.

I had the following but still could not land on a break point. Throwing an exception proved the code was being entered.

<appSettings>
...
  <add key="owin:AutomaticAppStartup" value="true" />
  <add key="owin:appStartup" value="SSOResource.Startup, SSOResource" />
...
</appSettings>

Finally out of desperation I looked at project->properties, and then under the WEB section I also checked the NATIVE CODE checkbox (ASP.NET should be already checked).

That finally fixed it for me.

Note : I am using Visual Studio 2017 Professional.


V
Venkatesh Prabu

First add the OWIN Auth Class and then enable OWIN:AutomaticAppStartup key in your web.config like Now it will fire


关注公众号,不定期副业成功案例分享
Follow WeChat

Success story sharing

Want to stay one step ahead of the latest teleworks?

Subscribe Now