locked
APPCRASH w3wp.exe error RRS feed

  • Question

  • Hi,

    I have an MVC application that runs absolutely fine from my local machine but when I deploy it to Windows Server 2012 R2, i receive all sorts of W3WP.EXE errors. Sometimes it works when I do iisreset, but suddenly it stops. Any idea why it might be happening. It says stackoverflow exception, but it works sometimes. Any ideas please. This is really critical.

    thanks in advance,

    Kanthi

    Faulting application name: w3wp.exe, version: 8.5.9600.16384, time stamp: 0x52157ba0
    Faulting module name: mswsock.dll, version: 6.3.9600.16384, time stamp: 0x52157d9c
    Exception code: 0xc00000fd
    Fault offset: 0x00009bbf
    Faulting process id: 0x14bc
    Faulting application start time: 0x01d451ca33d272c0
    Faulting application path: C:\Windows\SysWOW64\inetsrv\w3wp.exe
    Faulting module path: C:\Windows\System32\mswsock.dll
    Report Id: 88d8a47e-bdbd-11e8-80cd-005056a70a69
    Faulting package full name: 
    Faulting package-relative application ID: 

    


    Kanthi

    Friday, September 21, 2018 4:50 PM

All replies

  • IIS or ASP.NET Worker Process.

    https://stackify.com/w3wp-exe-iis-worker-process/

    I have an MVC application that runs absolutely fine from my local machine but when I deploy it to Windows Server 2012 R2,

    Sounds to me that you were using IIS Express on your development machine, and you never stopped using IIS Express and switched over to local IIS the real IIS. on the development machine.

    Therefore, when you deployed solution to real IIS, it blows up, since you were developing and debugging the solution against IIS Express that is not the real IIS like local IIS is the real IIS.

    You should push the Visual Studio Web project out to local IIS to see if the same problems occur like on IIS on Win 2k server and debug.  

    http://codetunnel.com/how-to-debug-your-aspnet-projects-running-under-iis/

    BTW, MVC is at the ASP.NET forums.

    http://forums.asp.net/

    Friday, September 21, 2018 7:47 PM
  • hello,

    One more possibility: Your OS is on drive C: and you hardcoded some references somewhere in the code.

    And some smart guys put server on the different drive.

    I use this to avoid viruses which targeted to C:\.


    Sincerely, Highly skilled coding monkey.

    Saturday, September 22, 2018 5:08 PM